summaryrefslogtreecommitdiffstats
path: root/development/gcc5/c89.sh
diff options
context:
space:
mode:
author Matteo Bernardini2019-08-24 10:35:48 +0200
committer Matteo Bernardini2019-08-24 10:35:48 +0200
commite93fc1029f35673e06f2d9126d1353248d7e3896 (patch)
tree23b5b1b9250223d5c1c941b9bb3c21e2a59645e6 /development/gcc5/c89.sh
parent5afd639f0f73f1a079e885e0ef5df06643eba6a4 (diff)
downloadslackbuilds-591b6390baed3844bdfae29a6a45200662aeaa1e.tar.gz
20190824.1 global branch merge.current-20190824.1
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'development/gcc5/c89.sh')
-rw-r--r--development/gcc5/c89.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/development/gcc5/c89.sh b/development/gcc5/c89.sh
new file mode 100644
index 0000000000..424b1e1669
--- /dev/null
+++ b/development/gcc5/c89.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+fl="-std=c89"
+CC=${CC:-"gcc"}
+for opt; do
+ case "$opt" in
+ -ansi|-std=c89|-std=iso9899:1990) fl="";;
+ -std=*) echo "`basename $0` called with non ANSI/ISO C option $opt" >&2
+ exit 1;;
+ esac
+done
+exec $CC $fl ${1+"$@"}