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 3b7c35a commit 3dd74afCopy full SHA for 3dd74af
1 file changed
.github/workflows/ci.yml
@@ -400,13 +400,19 @@ jobs:
400
401
mkdir -p fakebin
402
403
- # We use <<-EOF so bash strips TAB indentation and keeps shebang at column 0.
404
- cat <<-EOF > fakebin/cc
+ # cc wrapper used by native_cdrkit / cmake
+ cat <<'EOF' > fakebin/cc
405
#!/bin/bash
406
- exec clang "$@"
+ exec /usr/bin/clang "$@"
407
EOF
408
409
- chmod +x fakebin/cc
+ # clang wrapper for things like openssl's util/domd calling 'clang'
410
+ cat <<'EOF' > fakebin/clang
411
+ #!/bin/bash
412
413
+ EOF
414
+
415
+ chmod +x fakebin/cc fakebin/clang
416
417
export PATH="$(pwd)/fakebin:$PATH"
418
0 commit comments