From f084eb9a79bab4fad85f18a63f4916ea57590f88 Mon Sep 17 00:00:00 2001 From: Matteo Bernardini Date: Tue, 17 Jul 2018 08:37:11 +0200 Subject: 20180717.1 global branch merge. Happy 25th anniversary, Slackware! Signed-off-by: Matteo Bernardini --- development/gcc5/c89.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 development/gcc5/c89.sh (limited to 'development/gcc5/c89.sh') 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+"$@"} -- cgit v1.2.3