-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[CMake][Fuchsia] Revert back to using normalized triples #98189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
We switched to denormalized triples in llvm#89425 but that introduced a lot of downstream issues so switch back to normalized triples.
@llvm/pr-subscribers-clang Author: Petr Hosek (petrhosek) ChangesWe switched to denormalized triples in #89425 but that introduced a lot of downstream issues so switch back to normalized triples. Full diff: https://github.com/llvm/llvm-project/pull/98189.diff 1 Files Affected:
diff --git a/clang/cmake/caches/Fuchsia-stage2.cmake b/clang/cmake/caches/Fuchsia-stage2.cmake
index 52687a2cf8ea9..9892b5d58e719 100644
--- a/clang/cmake/caches/Fuchsia-stage2.cmake
+++ b/clang/cmake/caches/Fuchsia-stage2.cmake
@@ -141,7 +141,7 @@ if(WIN32 OR LLVM_WINSYSROOT)
set(RUNTIMES_${target}_CMAKE_MODULE_LINKER_FLAGS ${WINDOWS_LINK_FLAGS} CACHE STRING "")
endif()
-foreach(target aarch64-linux-gnu;armv7-linux-gnueabihf;i386-linux-gnu;riscv64-linux-gnu;x86_64-linux-gnu)
+foreach(target aarch64-unknown-linux-gnu;armv7-unknown-linux-gnueabihf;i386-unknown-linux-gnu;riscv64-unknown-linux-gnu;x86_64-unknown-linux-gnu)
if(LINUX_${target}_SYSROOT)
# Set the per-target builtins options.
list(APPEND BUILTIN_TARGETS "${target}")
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/59/builds/1261 Here is the relevant piece of the build log for the reference:
|
We switched to denormalized triples in llvm#89425 but that introduced a lot of downstream issues so switch back to normalized triples.
We switched to denormalized triples in #89425 but that introduced a lot of downstream issues so switch back to normalized triples.