1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 03:02:36 +01:00

[llvm][NFC] Use llvm_canonicalize_cmake_booleans for LLVM_HAVE_TF_AOT

Reviewers: thakis

Subscribers: mgorny, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D82776
This commit is contained in:
Mircea Trofin 2020-06-29 08:44:38 -07:00
parent 6f8488c29f
commit 3bd9230b2f
2 changed files with 2 additions and 1 deletions

View File

@ -15,6 +15,7 @@ llvm_canonicalize_cmake_booleans(
LLVM_BUILD_EXAMPLES
LLVM_ENABLE_PLUGINS
LLVM_BYE_LINK_INTO_TOOLS
LLVM_HAVE_TF_AOT
)
configure_lit_site_cfg(

View File

@ -48,7 +48,7 @@ config.have_opt_viewer_modules = @LLVM_HAVE_OPT_VIEWER_MODULES@
config.libcxx_used = @LLVM_LIBCXX_USED@
config.has_plugins = @LLVM_ENABLE_PLUGINS@
config.linked_bye_extension = @LLVM_BYE_LINK_INTO_TOOLS@
config.have_tf_aot = ("@LLVM_HAVE_TF_AOT@" == "ON")
config.have_tf_aot = @LLVM_HAVE_TF_AOT@
# Support substitution of the tools_dir with user parameters. This is
# used when we can't determine the tool dir at configuration time.