Commit 477798b37e

Andrew Kelley <andrew@ziglang.org>
2020-10-15 02:59:29
ci: macos: unset ZIG_LIBC before testing
otherwise cross compiling gets incorrectly affected by the environment variable.
1 parent 540364e
Changed files (1)
ci
ci/azure/macos_script
@@ -40,10 +40,11 @@ cmake .. \
   -DZIG_EXECUTABLE="$ZIG" \
   -DZIG_STATIC=ON
 
-# TODO unsetting this before `make install` is a workaround for Zig crashing
-# with "unable to exec C compiler".
+# Now cmake will use zig as the C/C++ compiler. We reset the environment variables
+# so that installation and testing do not get affected by them.
 unset CC
 unset CXX
+unset ZIG_LIBC
 
 make $JOBS install
 release/bin/zig build test