From 253ff7859036de8368314ae65c68e82549c8b5b9 Mon Sep 17 00:00:00 2001 From: Kelly O'Hair Date: Tue, 19 May 2009 18:09:31 -0700 Subject: [PATCH] 6733313: corba build warnings: /bin/sh: gcc: not found Reviewed-by: tbell --- corba/make/common/shared/Compiler-gcc.gmk | 12 ------------ corba/make/common/shared/Compiler-sun.gmk | 7 ------- 2 files changed, 19 deletions(-) diff --git a/corba/make/common/shared/Compiler-gcc.gmk b/corba/make/common/shared/Compiler-gcc.gmk index 74f9807e09d..c8e6779ffd6 100644 --- a/corba/make/common/shared/Compiler-gcc.gmk +++ b/corba/make/common/shared/Compiler-gcc.gmk @@ -73,23 +73,18 @@ ifeq ($(PLATFORM), linux) ifneq ("$(findstring sparc,$(ARCH))", "") # sparc or sparcv9 REQUIRED_CC_VER = 4.0 - REQUIRED_GCC_VER = 4.0.* else ifeq ($(ARCH_DATA_MODEL), 32) # i586 REQUIRED_CC_VER = 3.2 - REQUIRED_GCC_VER = 3.2.1* - REQUIRED_GCC_VER_INT = 3.2.1-7a else ifeq ($(ARCH), amd64) # amd64 REQUIRED_CC_VER = 3.2 - REQUIRED_GCC_VER = 3.2.* endif ifeq ($(ARCH), ia64) # ia64 REQUIRED_CC_VER = 3.2 - REQUIRED_GCC_VER = 2.9[56789].* endif endif endif @@ -109,13 +104,6 @@ ifeq ($(PLATFORM), solaris) # Option used to create a shared library SHARED_LIBRARY_FLAG = -G - # But gcc is still needed no matter what on 32bit - ifeq ($(ARCH_DATA_MODEL), 32) - REQUIRED_GCC_VER = 2.95 - GCC =$(GCC_COMPILER_PATH)gcc - _GCC_VER :=$(shell $(GCC) -dumpversion 2>&1 ) - GCC_VER :=$(call GetVersion,"$(_GCC_VER)") - endif endif diff --git a/corba/make/common/shared/Compiler-sun.gmk b/corba/make/common/shared/Compiler-sun.gmk index 0baa24abec8..2d6b70169f0 100644 --- a/corba/make/common/shared/Compiler-sun.gmk +++ b/corba/make/common/shared/Compiler-sun.gmk @@ -39,13 +39,6 @@ ifeq ($(PLATFORM), solaris) LINT = $(COMPILER_PATH)lint # Option used to create a shared library SHARED_LIBRARY_FLAG = -G - # But gcc is still needed no matter what on 32bit - ifeq ($(ARCH_DATA_MODEL), 32) - REQUIRED_GCC_VER = 2.95 - GCC =$(GCC_COMPILER_PATH)gcc - _GCC_VER :=$(shell $(GCC) -dumpversion 2>&1 ) - GCC_VER :=$(call GetVersion,"$(_GCC_VER)") - endif endif # Sun Studio Compiler settings specific to Linux