diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-07-22 03:04:52 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-07-22 03:04:52 +0000 |
commit | 2864de7c2d764a4be44bed073afadb663fdbb2dd (patch) | |
tree | 4580679fc734a206afc53f6a5d2528ca75242e13 /cmake | |
parent | c7088c9a9cc37a5dce54def94f8c347922e0631c (diff) |
autoconf: Re-introduce LLVM_HOSTTRIPLE since r143500, as rework of PR11060.
cmake: Add LLVM_HOSTTRIPLE. For now, it is same as TARGET_TRIPLE.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160609 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rwxr-xr-x | cmake/config-ix.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmake/config-ix.cmake b/cmake/config-ix.cmake index 51b64ac8bb..25d6211ac6 100755 --- a/cmake/config-ix.cmake +++ b/cmake/config-ix.cmake @@ -295,6 +295,7 @@ get_host_triple(LLVM_HOST_TRIPLE) # By default, we target the host, but this can be overridden at CMake # invocation time. set(LLVM_DEFAULT_TARGET_TRIPLE "${LLVM_HOST_TRIPLE}") +set(LLVM_HOSTTRIPLE "${LLVM_HOST_TRIPLE}") set(TARGET_TRIPLE "${LLVM_DEFAULT_TARGET_TRIPLE}") # Determine the native architecture. |