[BACK]Return to configure.host CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / gc

Diff for /OpenXM_contrib2/asir2000/gc/configure.host between version 1.1 and 1.2

version 1.1, 2002/07/24 08:00:08 version 1.2, 2003/06/24 05:11:32
Line 14 
Line 14 
 #   host                The configuration host  #   host                The configuration host
 #   host_cpu            The configuration host CPU  #   host_cpu            The configuration host CPU
 #   target_optspace     --enable-target-optspace ("yes", "no", "")  #   target_optspace     --enable-target-optspace ("yes", "no", "")
   #   GCC                 should be "yes" if using gcc
   
 # It sets the following shell variables:  # It sets the following shell variables:
 #   gc_cflags   Special CFLAGS to use when building  #   gc_cflags   Special CFLAGS to use when building
   
   gc_cflags=""
   
 # We should set -fexceptions if we are using gcc and might be used  # We should set -fexceptions if we are using gcc and might be used
 # inside something like gcj.  This is the zeroth approximation:  # inside something like gcj.  This is the zeroth approximation:
 case "$host" in  if test :"$GCC": = :yes: ; then
     *-*-linux* )      gc_cflags="${gc_cflags} -fexceptions"
     gc_cflags=-fexceptions  else
     ;;      case "$host" in
     *-*-hpux* )          *-*-hpux* )
     gc_cflags=+ESdbgasm          gc_cflags="${gc_flags} +ESdbgasm"
     ;;          # :TODO: actaully we should check using Autoconf if
 esac          #     the compiler supports this option.
           ;;
       esac
   fi
   
 case "${target_optspace}:${host}" in  case "${target_optspace}:${host}" in
   yes:*)    yes:*)

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>