Displaying 2 results from an estimated 2 matches for "svn_head".
2016 Jan 14
2
Building SVN head with CMake - shared libraries?
Now that autoconf is going away soon, I figured I'd try building using
CMake.
I checked out llvm, cfe and lldb from the SVN server, and followed the
basic build instructions.
cmake -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX=/tools/llvm/svn_head
-DLLVM_TARGETS_TO_BUILD="X86;CppBackend" -DCMAKE_BUILD_TYPE=Release
-DLLVM_ENABLE_ASSERTIONS=ON ../llvm
Everything worked well, and in the end I got the following shared libraries:
/tools/llvm/svn_head/lib/BugpointPasses.so
/tools/llvm/svn_head/lib/libclang.so
/tools/llvm/svn_head/lib/l...
2016 Jan 14
4
Building SVN head with CMake - shared libraries?
...; Now that autoconf is going away soon, I figured I'd try building using
>> CMake.
>>
>> I checked out llvm, cfe and lldb from the SVN server, and followed the
>> basic build instructions.
>>
>> cmake -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX=/tools/llvm/svn_head
>> -DLLVM_TARGETS_TO_BUILD="X86;CppBackend" -DCMAKE_BUILD_TYPE=Release
>> -DLLVM_ENABLE_ASSERTIONS=ON ../llvm
>>
>> Everything worked well, and in the end I got the following shared
>> libraries:
>>
>> /tools/llvm/svn_head/lib/BugpointPasses.so
&g...