Changeset 1391 for branches/GNU/src/gcc/boehm-gc/configure.host
- Timestamp:
- Apr 27, 2004, 8:39:34 PM (21 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 dir.info 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/boehm-gc/configure.host
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1390 r1391 15 15 # host_cpu The configuration host CPU 16 16 # target_optspace --enable-target-optspace ("yes", "no", "") 17 # GCC should be "yes" if using gcc 17 18 18 19 # It sets the following shell variables: 19 20 # gc_cflags Special CFLAGS to use when building 20 21 22 gc_cflags="" 23 21 24 # We should set -fexceptions if we are using gcc and might be used 22 25 # inside something like gcj. This is the zeroth approximation: 23 case "$host" in 24 *-*-linux* ) 25 gc_cflags=-fexceptions 26 ;; 27 *-*-hpux* ) 28 gc_cflags=+ESdbgasm 29 ;; 30 esac 26 if test :"$GCC": = :yes: ; then 27 gc_cflags="${gc_cflags} -fexceptions" 28 else 29 case "$host" in 30 hppa*-*-hpux* ) 31 if test :$GCC: != :"yes": ; then 32 gc_cflags="${gc_flags} +ESdbgasm" 33 fi 34 # :TODO: actaully we should check using Autoconf if 35 # the compiler supports this option. 36 ;; 37 esac 38 fi 31 39 32 40 case "${target_optspace}:${host}" in … … 47 55 case "${host}" in 48 56 mips-tx39-*|mipstx39-unknown-*) 49 boehm_gc_cflags="${boehm_gc_cflags} -G 0"57 gc_cflags="${gc_cflags} -G 0" 50 58 ;; 51 59 *) -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.