Re: LLVM Question

2021-06-24 Thread Weber, Eugene
Thanks Wes. From: Wes McKinney Sent: Thursday, June 24, 2021 10:46:01 AM To: user@arrow.apache.org Subject: Re: LLVM Question clang-format is only used in development for formatting the codebase (and checking that it's been formatted). Clang tools (forma

Re: LLVM Question

2021-06-24 Thread Wes McKinney
clang-format is only used in development for formatting the codebase (and checking that it's been formatted). Clang tools (format and tidy) aren't necessary for building the library (Gandiva) that requires LLVM On Thu, Jun 24, 2021 at 9:43 AM Weber, Eugene wrote: > Hi, > > &

Re: LLVM

2021-03-30 Thread Matt Youill
Yes, that's the one, not the compiler I'm compiling with. An option to override would be good. Maybe I'll just do a sneaky patch for the time being :D On 31/3/21 4:12 pm, Sutou Kouhei wrote: Hi, In <205432f7-fda5-ce5f-beba-bfe3424af...@airmettle.com> "LLVM&quo

Re: LLVM

2021-03-30 Thread Sutou Kouhei
Hi, In <205432f7-fda5-ce5f-beba-bfe3424af...@airmettle.com> "LLVM" on Wed, 31 Mar 2021 12:21:17 +1100, Matt Youill wrote: > Is it possible to override the version of LLVM that arrow uses during > a build? Seems to always pick the latest version it finds. You want t

Re: LLVM

2021-03-30 Thread Yibo Cai
before running CMake?  This has worked in the past for me (at least for switching between GCC and LLVM, I don't recall if I ever had more than one version of either installed on the system). On Tue, Mar 30, 2021 at 6:21 PM Matt Youill mailto:matt.you...@airmettle.com>> wrote: Hi,

Re: LLVM

2021-03-30 Thread Micah Kornfield
Have you tried setting the CC and CXX environment variables to point the compiler you want before running CMake? This has worked in the past for me (at least for switching between GCC and LLVM, I don't recall if I ever had more than one version of either installed on the system). On Tue, M

LLVM

2021-03-30 Thread Matt Youill
Hi, Is it possible to override the version of LLVM that arrow uses during a build? Seems to always pick the latest version it finds. Thanks, Matt