Skip to content

Commit

Permalink
Remove WIN64 macro since WIN32 could be enough to skip Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
niyue committed Dec 20, 2023
1 parent 7177d7f commit db819dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/gandiva/engine.cc
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@

// JITLink is available in LLVM 9+
// but the `InProcessMemoryManager::Create` API was added since LLVM 14
#if LLVM_VERSION_MAJOR >= 14 && !defined(_WIN32) && !defined(_WIN64)
#if LLVM_VERSION_MAJOR >= 14 && !defined(_WIN32)
#define JIT_LINK_SUPPORTED
#include <llvm/ExecutionEngine/Orc/ObjectLinkingLayer.h>
#endif
Expand Down

0 comments on commit db819dc

Please sign in to comment.