do not bump gcc

This commit is contained in:
Mario Fetka
2014-01-02 19:07:12 +01:00
parent ad65be0193
commit 0a04d6b89f
25 changed files with 0 additions and 2857 deletions

View File

@@ -1,21 +0,0 @@
#! /bin/sh
# Call the appropriate C compiler with options to accept ANSI/ISO C
# The following options are the same (as of gcc-3.3):
# -std=c99
# -std=c9x
# -std=iso9899:1999
# -std=iso9899:199x
for i; do
case "$i" in
-std=c9[9x]|-std=iso9899:199[9x])
;;
-ansi|-std=*)
echo >&2 "`basename $0` called with non ANSI/ISO C99 option $i"
exit 1
;;
esac
done
exec gcc -std=c99 -pedantic -U_FORTIFY_SOURCE ${1+"$@"}