source: npl/system/gcc/c89.sh @ 1a19ecd

perl-5.22
Last change on this file since 1a19ecd was 1a19ecd, checked in by Edwin Eefting <edwin@datux.nl>, 8 years ago

upgrade glibc/gcc to gcc 5.4.0 and glibc 2.24

  • Property mode set to 100644
File size: 224 bytes
Line 
1#!/bin/sh
2fl="-std=c89"
3for opt; do
4  case "$opt" in
5    -ansi|-std=c89|-std=iso9899:1990) fl="";;
6    -std=*) echo "`basename $0` called with non ANSI/ISO C option $opt" >&2
7            exit 1;;
8  esac
9done
10exec gcc $fl ${1+"$@"}
Note: See TracBrowser for help on using the repository browser.