Skip to content

Instantly share code, notes, and snippets.

@marccane
Created February 18, 2020 00:15
Show Gist options
  • Save marccane/2e2d2e9e948280d44179ba96ee90dbf5 to your computer and use it in GitHub Desktop.
Save marccane/2e2d2e9e948280d44179ba96ee90dbf5 to your computer and use it in GitHub Desktop.
powerpc-linux-gnu-gcc
#!/bin/bash
pars=""
while (( "$#" )); do
if [[ $1 == "-fstack-protector-strong" ]]; then
echo "NOPE"
else
pars="$pars $1"
fi
shift
done
echo PARS=$pars
gcc-4.8 $pars
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment