-
Notifications
You must be signed in to change notification settings - Fork 12.4k
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
[Fuchsia] Remove linker flags from stage2 pass through #99722
Conversation
This patch removes CMAKE_XXX_LINKER_FLAGS from list of flags that passed through to stage2 build.
@llvm/pr-subscribers-clang Author: Haowei (zeroomega) ChangesThis patch removes CMAKE_XXX_LINKER_FLAGS from list of flags that passed through to stage2 build. Full diff: https://github.com/llvm/llvm-project/pull/99722.diff 1 Files Affected:
diff --git a/clang/cmake/caches/Fuchsia.cmake b/clang/cmake/caches/Fuchsia.cmake
index 4d3af3ad3f403..2d2dcb9ae6798 100644
--- a/clang/cmake/caches/Fuchsia.cmake
+++ b/clang/cmake/caches/Fuchsia.cmake
@@ -67,9 +67,6 @@ set(_FUCHSIA_BOOTSTRAP_PASSTHROUGH
SWIG_EXECUTABLE
CMAKE_FIND_PACKAGE_PREFER_CONFIG
CMAKE_SYSROOT
- CMAKE_MODULE_LINKER_FLAGS
- CMAKE_SHARED_LINKER_FLAGS
- CMAKE_EXE_LINKER_FLAGS
LLVM_WINSYSROOT
LLVM_VFSOVERLAY
)
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/123/builds/2203 Here is the relevant piece of the build log for the reference:
|
This patch removes CMAKE_XXX_LINKER_FLAGS from list of flags that passed through to stage2 build.
Summary: This patch removes CMAKE_XXX_LINKER_FLAGS from list of flags that passed through to stage2 build. Test Plan: Reviewers: Subscribers: Tasks: Tags: Differential Revision: https://phabricator.intern.facebook.com/D60251282
This patch removes CMAKE_XXX_LINKER_FLAGS from list of flags that passed through to stage2 build.