diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2011-03-13 03:06:59 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2011-03-13 03:06:59 +0000 |
commit | 98f6ddc3c5f16e52f6d0bfd56258abc545093807 (patch) | |
tree | 7eab6e6877eb6bfe1c54ef280bd0af08cd89956f /tools | |
parent | 5522e8a936d8735f3366b33901e2d582bedd48dc (diff) | |
download | external_llvm-98f6ddc3c5f16e52f6d0bfd56258abc545093807.zip external_llvm-98f6ddc3c5f16e52f6d0bfd56258abc545093807.tar.gz external_llvm-98f6ddc3c5f16e52f6d0bfd56258abc545093807.tar.bz2 |
LTO is not ready for Windows.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127562 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 4d9e32d..2aceeb3 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -46,7 +46,10 @@ add_subdirectory(llvm-stub) add_subdirectory(edis) add_subdirectory(llvmc) -add_subdirectory(lto) +if( NOT WIN32 ) + add_subdirectory(lto) +endif() + if( LLVM_ENABLE_PIC ) # TODO: support other systems: if( CMAKE_SYSTEM_NAME STREQUAL "Linux" ) |