diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2001-08-02 08:59:52 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2001-08-02 08:59:52 +0000 |
commit | 499334c6a5b7fef85b8380ca79f8af97787e0e62 (patch) | |
tree | 29ee3a7ad65f08fec816f60eeff099935c1c58e0 /configure | |
parent | 10078faaa7095878adc15d486f599be2e85bab7e (diff) | |
download | ocaml-499334c6a5b7fef85b8380ca79f8af97787e0e62.tar.gz |
Reconnaitre darwin comme rhapsody
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3609 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -191,7 +191,7 @@ case "$bytecc,$host" in # GNU C extensions disabled, but __GNUC__ still defined! bytecccompopts="-fno-defer-pop $gcc_warnings -U__GNUC__ -posix" bytecclinkopts="-posix";; - *,*-*-rhapsody*) + *,*-*-rhapsody*|*,*-*-darwin*) # Almost the same as NeXTStep bytecccompopts="-fno-defer-pop $gcc_warnings -DSHRINKED_GNUC" mathlib="";; @@ -383,6 +383,7 @@ case "$host" in powerpc-*-aix*) arch=power; model=ppc; system=aix;; powerpc-*-linux*) arch=power; model=ppc; system=elf;; powerpc-*-rhapsody*) arch=power; model=ppc; system=rhapsody;; + powerpc-*-darwin*) arch=power; model=ppc; system=rhapsody;; arm*-*-linux*) arch=arm; system=linux;; ia64-*-linux*) arch=ia64; system=linux;; esac |