search for: getlibcxxandabibuilder

Displaying 2 results from an estimated 2 matches for "getlibcxxandabibuilder".

2014 Oct 20
2
[LLVMdev] Lib C++ buildbot problem
...the CMake on libc++abi and found this: option(LIBCXXABI_USE_LLVM_UNWINDER "Build and use the LLVM unwinder." OFF) ... if (LIBCXXABI_USE_LLVM_UNWINDER) add_subdirectory(src/Unwind) endif() But on the Libc++AndAbiBuilder, there's no way to set the CMake argument (or is there?): def getLibcxxAndAbiBuilder(f=None, env={}, additional_features=set()): "additional_features" seem to imply only lit test args, not anything else. Ideas? cheers, --renato
2014 Oct 20
2
[LLVMdev] Lib C++ buildbot problem
...t; > But on the Libc++AndAbiBuilder, there's no way to set the CMake > > argument (or is there?): > I *think* you can add "-DLIBCXXABI_USE_LLVM_UNWINDER" to the env argument > and > get what you want, but Dan will have to correct me on that... > > > > def getLibcxxAndAbiBuilder(f=None, env={}, additional_features=set()): > > > > "additional_features" seem to imply only lit test args, not anything > else. > They are lit test args, and triggers for -D defines for various weird > configurations (e.g. single threaded). I don't think there is...