Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (21 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28dir.info
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/boehm-gc/configure.host

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    1515#   host_cpu            The configuration host CPU
    1616#   target_optspace     --enable-target-optspace ("yes", "no", "")
     17#   GCC                 should be "yes" if using gcc
    1718
    1819# It sets the following shell variables:
    1920#   gc_cflags   Special CFLAGS to use when building
    2021
     22gc_cflags=""
     23
    2124# We should set -fexceptions if we are using gcc and might be used
    2225# 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
     26if test :"$GCC": = :yes: ; then
     27    gc_cflags="${gc_cflags} -fexceptions"
     28else
     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
     38fi
    3139
    3240case "${target_optspace}:${host}" in
     
    4755case "${host}" in
    4856  mips-tx39-*|mipstx39-unknown-*)
    49         boehm_gc_cflags="${boehm_gc_cflags} -G 0"
     57        gc_cflags="${gc_cflags} -G 0"
    5058        ;;
    5159  *)
Note: See TracChangeset for help on using the changeset viewer.