source: npl/system/gcc/c99.sh @ 7c410f9

Last change on this file since 7c410f9 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: 215 bytes
RevLine 
[1a19ecd]1#!/bin/sh
2fl="-std=c99"
3for opt; do
4  case "$opt" in
5    -std=c99|-std=iso9899:1999) fl="";;
6    -std=*) echo "`basename $0` called with non ISO C99 option $opt" >&2
7            exit 1;;
8  esac
9done
10exec gcc $fl ${1+"$@"}
Note: See TracBrowser for help on using the repository browser.