[Git][ghc/ghc][wip/supersven/correctly_propagate_host-build-target] Unset CFLAGS for install phase
Sven Tennie pushed to branch wip/supersven/correctly_propagate_host-build-target at Glasgow Haskell Compiler / GHC Commits: 38a28bd0 by Sven Tennie at 2026-04-06T11:46:06+02:00 Unset CFLAGS for install phase - - - - - 1 changed file: - .gitlab/ci.sh Changes: ===================================== .gitlab/ci.sh ===================================== @@ -628,6 +628,10 @@ function install_bindist() { *) read -r -a args <<< "${INSTALL_CONFIGURE_ARGS:-}" + # These are meant for the ./configure script of the build phase + unset CFLAGS + unset CONF_CC_OPTS_STAGE2 + run ${CONFIGURE_WRAPPER:-} ./configure \ --prefix="$instdir" \ "${args[@]+"${args[@]}"}" || fail "bindist configure failed" View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/38a28bd0e82f3463372ea9f960d35509... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/38a28bd0e82f3463372ea9f960d35509... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Sven Tennie (@supersven)