diff options
author | Stefan Granitz <stefan.graenitz@gmail.com> | 2019-02-01 15:35:25 +0000 |
---|---|---|
committer | Stefan Granitz <stefan.graenitz@gmail.com> | 2019-02-01 15:35:25 +0000 |
commit | f8699965eca3dcc15cadd341e4201a9d44aeaa04 (patch) | |
tree | 93e23e35db32f7254131c9cc020c917d1067185c /llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp | |
parent | 0279b5b0b87f8e8e0e919e55eb8f4db9443c39e9 (diff) | |
download | llvm-f8699965eca3dcc15cadd341e4201a9d44aeaa04.zip llvm-f8699965eca3dcc15cadd341e4201a9d44aeaa04.tar.gz llvm-f8699965eca3dcc15cadd341e4201a9d44aeaa04.tar.bz2 |
[CMake] External compiler-rt-configure requires LLVMTestingSupport when including tests
Summary:
Apparently `LLVMTestingSupport` must be built before `llvm-config` can be asked for it. Symptom with `LLVM_INCLUDE_TESTS=ON` is:
```
$ ./path/to/llvm-build/bin/llvm-config --ldflags --libs testingsupport
-L/path/to/llvm-build/lib -Wl,-search_paths_first -Wl,-headerpad_max_install_names
llvm-config: error: component libraries and shared library
llvm-config: error: missing: /path/to/llvm-build/lib/libLLVMTestingSupport.a
```
With `LLVMTestingSupport` as dependency of `compiler-rt-configure` we get the expected behavior:
```
$ ./path/to/llvm-build/bin/llvm-config --ldflags --libs testingsupport
-L/path/to/llvm-build/lib -Wl,-search_paths_first -Wl,-headerpad_max_install_names
-lLLVMTestingSupport -lLLVMSupport -lLLVMDemangle
```
Reviewers: ab, beanz
Subscribers: dberris, mgorny, erik.pilkington, llvm-commits, cfe-commits
Differential Revision: https://reviews.llvm.org/D57521
llvm-svn: 352881
Diffstat (limited to 'llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp')
0 files changed, 0 insertions, 0 deletions