Displaying 1 result from an estimated 1 matches for "tools_llvm_new".
2014 Feb 27
2
[LLVMdev] llvm-config --system-libs has newlines in output
...197664). If run this then llvm-config outputs a
blank line before the system libraries, for example on Linux I get:
$ llvm-config --system-libs
-lz -ltinfo -lrt -ldl -lm
If I use --system-libs together with --libs the LLVM libraries and the
system libraries are separated by a newline:
$ ../../tools_llvm_new/obj/Debug+Asserts/bin/llvm-config --libs
--system-libs
-lLLVMLTO -lLLVMObjCARCOpts -lLLVMLinker -lLLVMipo -lLLVMVectorize
-lLLVMBitWriter ...
-lz -ltinfo -lrt -ldl -lm
Is there any reason for this? It just seems to make it harder to parse
the output of llvm-config, but I wanted to check that it...