diff options
author | Alp Toker <alp@nuanti.com> | 2014-07-14 23:30:31 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2014-07-14 23:30:31 +0000 |
commit | 6be46b8ae56b7c20db9d46496940b678eef22771 (patch) | |
tree | eb66a5b0219fa733c9a68204cb9f37a97ae6bd22 /llvm/cmake/modules/AddLLVM.cmake | |
parent | 207c49897813d4271a1475f7191f13b1a51d262c (diff) | |
download | bcm5719-llvm-6be46b8ae56b7c20db9d46496940b678eef22771.tar.gz bcm5719-llvm-6be46b8ae56b7c20db9d46496940b678eef22771.zip |
Revert "Revert "Move clang feature flags settings out of LLVM core and into cfe""
It turns out this commit was fine. The problem was in the legacy build system (fixed r213010).
This reverts commit r213005.
llvm-svn: 213015
Diffstat (limited to 'llvm/cmake/modules/AddLLVM.cmake')
-rw-r--r-- | llvm/cmake/modules/AddLLVM.cmake | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/llvm/cmake/modules/AddLLVM.cmake b/llvm/cmake/modules/AddLLVM.cmake index 0276bf6ffe4..81efae62e79 100644 --- a/llvm/cmake/modules/AddLLVM.cmake +++ b/llvm/cmake/modules/AddLLVM.cmake @@ -632,22 +632,6 @@ function(configure_lit_site_cfg input output) set(HOST_OS ${CMAKE_SYSTEM_NAME}) set(HOST_ARCH ${CMAKE_SYSTEM_PROCESSOR}) - if (CLANG_ENABLE_ARCMT) - set(ENABLE_CLANG_ARCMT "1") - else() - set(ENABLE_CLANG_ARCMT "0") - endif() - if (CLANG_ENABLE_REWRITER) - set(ENABLE_CLANG_REWRITER "1") - else() - set(ENABLE_CLANG_REWRITER "0") - endif() - if (CLANG_ENABLE_STATIC_ANALYZER) - set(ENABLE_CLANG_STATIC_ANALYZER "1") - else() - set(ENABLE_CLANG_STATIC_ANALYZER "0") - endif() - configure_file(${input} ${output} @ONLY) endfunction() |