6733313: corba build warnings: /bin/sh: gcc: not found jdk7-b60

Tue, 19 May 2009 18:09:31 -0700

author
ohair
date
Tue, 19 May 2009 18:09:31 -0700
changeset 80
f1e1cccbd13a
parent 79
5dcbe748e580
child 81
e906b16a12a9

6733313: corba build warnings: /bin/sh: gcc: not found
Reviewed-by: tbell

make/common/shared/Compiler-gcc.gmk file | annotate | diff | comparison | revisions
make/common/shared/Compiler-sun.gmk file | annotate | diff | comparison | revisions
     1.1 --- a/make/common/shared/Compiler-gcc.gmk	Tue May 19 17:38:09 2009 -0700
     1.2 +++ b/make/common/shared/Compiler-gcc.gmk	Tue May 19 18:09:31 2009 -0700
     1.3 @@ -73,23 +73,18 @@
     1.4    ifneq ("$(findstring sparc,$(ARCH))", "")
     1.5      # sparc or sparcv9
     1.6      REQUIRED_CC_VER = 4.0
     1.7 -    REQUIRED_GCC_VER = 4.0.*
     1.8    else
     1.9    ifeq ($(ARCH_DATA_MODEL), 32)
    1.10      # i586
    1.11      REQUIRED_CC_VER = 3.2
    1.12 -    REQUIRED_GCC_VER = 3.2.1*
    1.13 -    REQUIRED_GCC_VER_INT = 3.2.1-7a
    1.14    else
    1.15    ifeq ($(ARCH), amd64)
    1.16      # amd64
    1.17      REQUIRED_CC_VER = 3.2
    1.18 -    REQUIRED_GCC_VER = 3.2.*
    1.19    endif
    1.20    ifeq ($(ARCH), ia64)
    1.21      # ia64
    1.22      REQUIRED_CC_VER = 3.2
    1.23 -    REQUIRED_GCC_VER = 2.9[56789].*
    1.24    endif
    1.25    endif
    1.26    endif
    1.27 @@ -109,13 +104,6 @@
    1.28  
    1.29    # Option used to create a shared library
    1.30    SHARED_LIBRARY_FLAG = -G
    1.31 -  # But gcc is still needed no matter what on 32bit
    1.32 -  ifeq ($(ARCH_DATA_MODEL), 32)
    1.33 -    REQUIRED_GCC_VER = 2.95
    1.34 -    GCC =$(GCC_COMPILER_PATH)gcc
    1.35 -    _GCC_VER :=$(shell $(GCC) -dumpversion 2>&1 )
    1.36 -    GCC_VER  :=$(call GetVersion,"$(_GCC_VER)")
    1.37 -  endif
    1.38  
    1.39  endif
    1.40  
     2.1 --- a/make/common/shared/Compiler-sun.gmk	Tue May 19 17:38:09 2009 -0700
     2.2 +++ b/make/common/shared/Compiler-sun.gmk	Tue May 19 18:09:31 2009 -0700
     2.3 @@ -39,13 +39,6 @@
     2.4    LINT           = $(COMPILER_PATH)lint
     2.5    # Option used to create a shared library
     2.6    SHARED_LIBRARY_FLAG = -G
     2.7 -  # But gcc is still needed no matter what on 32bit
     2.8 -  ifeq ($(ARCH_DATA_MODEL), 32)
     2.9 -    REQUIRED_GCC_VER = 2.95
    2.10 -    GCC =$(GCC_COMPILER_PATH)gcc
    2.11 -    _GCC_VER :=$(shell $(GCC) -dumpversion 2>&1 )
    2.12 -    GCC_VER  :=$(call GetVersion,"$(_GCC_VER)")
    2.13 -  endif
    2.14  endif
    2.15  
    2.16  # Sun Studio Compiler settings specific to Linux

mercurial