Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Dionne <ldionne.2@gmail.com>2021-07-14 22:13:19 +0300
committerLouis Dionne <ldionne.2@gmail.com>2021-07-14 22:15:22 +0300
commit850b57c5fbe7b44d18c9667bb31adfbe307453a6 (patch)
tree2fdaa89f2c3d3b066cd52ca57a6e97bf10bb5b39 /libunwind/test
parentdfbfc277b2a45d2cec21763fb1a8be58cd538df8 (diff)
[runtimes] Bring back TARGET_TRIPLE
This commit reverts 5099e01568 and 77396bbc98, which broke the build in various ways. I'm reverting until I can investigate, since that change appears to be way more subtle than it seemed.
Diffstat (limited to 'libunwind/test')
-rw-r--r--libunwind/test/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/libunwind/test/CMakeLists.txt b/libunwind/test/CMakeLists.txt
index b2cc95d14167..5be44e566b6c 100644
--- a/libunwind/test/CMakeLists.txt
+++ b/libunwind/test/CMakeLists.txt
@@ -36,8 +36,8 @@ if (LLVM_USE_SANITIZER)
serialize_lit_param(use_sanitizer "\"${LLVM_USE_SANITIZER}\"")
endif()
-if (LIBUNWIND_TARGET_TRIPLE)
- serialize_lit_param(target_triple "\"${LIBUNWIND_TARGET_TRIPLE}\"")
+if (TARGET_TRIPLE)
+ serialize_lit_param(target_triple "\"${TARGET_TRIPLE}\"")
endif()
if (LIBUNWIND_BUILD_32_BITS)