authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-11-28 22:06:46+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-12-05 07:32:43+01:00
log4724774433dd7b1a80b572933556b7452c867b08
tree167a9776bf7729934804d73133d033a971fdcfe5
parent78cba869289c66be875a72850437f95fe7541e92
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

ci: apply workaround for #22213 to x86_64-linux scripts

This should be reverted on the next CI tarballs update.

3 files changed, 16 insertions(+), 4 deletions(-)

ci/x86_64-linux-debug-llvm.sh+4-1
......@@ -34,7 +34,10 @@ cmake .. \
3434 -DZIG_STATIC=ON \
3535 -DZIG_NO_LIB=ON \
3636 -DZIG_EXTRA_BUILD_ARGS="-Duse-llvm=true" \
37 -GNinja
37 -GNinja \
38 -DCMAKE_C_LINKER_DEPFILE_SUPPORTED=FALSE \
39 -DCMAKE_CXX_LINKER_DEPFILE_SUPPORTED=FALSE
40# https://github.com/ziglang/zig/issues/22213
3841
3942# Now cmake will use zig as the C/C++ compiler. We reset the environment variables
4043# so that installation and testing do not get affected by them.
ci/x86_64-linux-debug.sh+4-1
......@@ -33,7 +33,10 @@ cmake .. \
3333 -DZIG_TARGET_MCPU="$MCPU" \
3434 -DZIG_STATIC=ON \
3535 -DZIG_NO_LIB=ON \
36 -GNinja
36 -GNinja \
37 -DCMAKE_C_LINKER_DEPFILE_SUPPORTED=FALSE \
38 -DCMAKE_CXX_LINKER_DEPFILE_SUPPORTED=FALSE
39# https://github.com/ziglang/zig/issues/22213
3740
3841# Now cmake will use zig as the C/C++ compiler. We reset the environment variables
3942# so that installation and testing do not get affected by them.
ci/x86_64-linux-release.sh+8-2
......@@ -39,7 +39,10 @@ cmake .. \
3939 -DZIG_TARGET_MCPU="$MCPU" \
4040 -DZIG_STATIC=ON \
4141 -DZIG_NO_LIB=ON \
42 -GNinja
42 -GNinja \
43 -DCMAKE_C_LINKER_DEPFILE_SUPPORTED=FALSE \
44 -DCMAKE_CXX_LINKER_DEPFILE_SUPPORTED=FALSE
45# https://github.com/ziglang/zig/issues/22213
4346
4447# Now cmake will use zig as the C/C++ compiler. We reset the environment variables
4548# so that installation and testing do not get affected by them.
......@@ -97,7 +100,10 @@ cmake .. \
97100 -DZIG_TARGET_MCPU="$MCPU" \
98101 -DZIG_STATIC=ON \
99102 -DZIG_NO_LIB=ON \
100 -GNinja
103 -GNinja \
104 -DCMAKE_C_LINKER_DEPFILE_SUPPORTED=FALSE \
105 -DCMAKE_CXX_LINKER_DEPFILE_SUPPORTED=FALSE
106# https://github.com/ziglang/zig/issues/22213
101107
102108unset CC
103109unset CXX