repo.or.cz
/
arch-packages.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
OCaml 4.14.0 rebuild
[arch-packages.git]
/
gcc
/
trunk
/
c99
blob
88dd80640fe194d77754a3aba0c87ae73e401e56
1
#!/bin/sh
2
fl
=
"-std=c99"
3
for
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
9
done
10
exec
gcc
$fl ${1+"$@"}