diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1997-03-08 12:16:23 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1997-03-08 12:16:23 +0000 |
commit | ddd42edd152f4f1890c80996083cdbb60b231b77 (patch) | |
tree | 74d8029210e9e019a1c5166800dfb0abe7419999 | |
parent | 5890667e668f19116e11af2001d2cc90eb20ba49 (diff) |
MAJ options Nextstep
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1343 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rwxr-xr-x | configure | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -159,7 +159,8 @@ bytecclinkopts="" case "$bytecc,$host" in gcc,*-*-nextstep*) - bytecccompopts="-fno-defer-pop -Wall -U__GNUC__ -posix";; + bytecccompopts="-fno-defer-pop -Wall -U__GNUC__ -posix" + bytecclinkopts="-posix";; gcc,alpha-*-osf*) bytecccompopts="-fno-defer-pop -Wall" bytecclinkopts="-Xlinker -taso";; @@ -216,7 +217,8 @@ case "$arch,$nativecc,$system" in mips,cc,irix) nativecccompopts=-32 nativecclinkopts="-32 -Wl,-woff,84";; mips,cc,ultrix) nativecccompopts=-std;; - *,*,nextstep) nativecccompopts="-Wall -posix";; + *,*,nextstep) nativecccompopts="-Wall -posix" + nativecclinkopts="-posix";; *,gcc,*) nativecccompopts=-Wall;; esac |