Skip to content

Instantly share code, notes, and snippets.

@badboy
Created April 23, 2019 11:27
Show Gist options
  • Save badboy/da80f6399113d33503470644175bafaf to your computer and use it in GitHub Desktop.
Save badboy/da80f6399113d33503470644175bafaf to your computer and use it in GitHub Desktop.
#!/bin/bash
origcc=/usr/bin/cc
fakecc=/usr/local/bin/x86_64-unknown-linux-gnu-gcc
if [[ "$cmdline" =~ "x86_64-apple-darwin" ]]; then
exec "$origcc" "$@"
else
exec "$fakecc" "$@"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment