We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddbbb04 commit 3b7c35aCopy full SHA for 3b7c35a
1 file changed
.github/workflows/ci.yml
@@ -399,18 +399,21 @@ jobs:
399
echo "▶ Setting global compiler override…"
400
401
mkdir -p fakebin
402
- cat <<'EOF' > fakebin/ccmac
+
403
+ # We use <<-EOF so bash strips TAB indentation and keeps shebang at column 0.
404
+ cat <<-EOF > fakebin/cc
405
#!/bin/bash
- exec x86_64-apple-darwin11-clang "$@"
406
+ exec clang "$@"
407
EOF
- chmod +x fakebin/ccmac
408
409
+ chmod +x fakebin/cc
410
411
export PATH="$(pwd)/fakebin:$PATH"
412
413
echo "▶ Building depends with forced compiler override…"
- CC=ccmac \
- CXX=ccmac \
- CC_FOR_BUILD=ccmac \
414
+ CC=cc \
415
+ CXX=clang++ \
416
+ CC_FOR_BUILD=cc \
417
make $MAKEJOBS -C depends HOST=${{ matrix.host }}
418
419
- name: CCache
0 commit comments