From db819dcaf280be050941f4dee1a2fecb897464be Mon Sep 17 00:00:00 2001 From: Yue Ni Date: Mon, 18 Dec 2023 14:52:02 +0800 Subject: [PATCH] Remove WIN64 macro since WIN32 could be enough to skip Windows. --- cpp/src/gandiva/engine.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/gandiva/engine.cc b/cpp/src/gandiva/engine.cc index 048a54c2e721c..28ab15d1e6e85 100644 --- a/cpp/src/gandiva/engine.cc +++ b/cpp/src/gandiva/engine.cc @@ -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 #endif