diff options
author | Rafael Auler <rafaelauler@fb.com> | 2021-12-23 05:59:35 -0800 |
---|---|---|
committer | Maksim Panchenko <maks@fb.com> | 2021-12-23 05:59:35 -0800 |
commit | b392ec696b6add15c72181569c2591652d936c40 (patch) | |
tree | 5e921d4394da2bc369e31f6172c03bfd3a825c4c /bolt/tools/driver | |
parent | 3652483c8ea7ec20e8d0cb4aef0630688011cc08 (diff) | |
download | llvm-b392ec696b6add15c72181569c2591652d936c40.zip llvm-b392ec696b6add15c72181569c2591652d936c40.tar.gz llvm-b392ec696b6add15c72181569c2591652d936c40.tar.bz2 |
Re-enable Windows build and fix issues
Summary:
Fix missing string header file inclusion and link_fdata find
problem in lit tests. Change root-level tests to require
linux. Re-enable Windows in our root CMakeLists.txt.
(cherry picked from FBD33296290)
Diffstat (limited to 'bolt/tools/driver')
-rw-r--r-- | bolt/tools/driver/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bolt/tools/driver/CMakeLists.txt b/bolt/tools/driver/CMakeLists.txt index 264a89f..c802719 100644 --- a/bolt/tools/driver/CMakeLists.txt +++ b/bolt/tools/driver/CMakeLists.txt @@ -42,5 +42,7 @@ install(PROGRAMS COMPONENT bolt ) add_llvm_install_targets(install-bolt DEPENDS bolt COMPONENT bolt) +set_target_properties(bolt PROPERTIES FOLDER "BOLT") +set_target_properties(install-bolt PROPERTIES FOLDER "BOLT") include_directories( ${BOLT_SOURCE_DIR}/lib ) |