Put all IRIX cc compiler options inside the ifndef NS_USE_GCC block.

Modified files: config/Makefile.in pr/tests/Makefile.in
This commit is contained in:
wtc%netscape.com 2001-06-14 02:23:42 +00:00
parent 675e64fa89
commit a96c289942
2 changed files with 15 additions and 15 deletions

View File

@ -74,17 +74,17 @@ endif
ifeq ($(OS_ARCH), IRIX)
ifeq ($(basename $(OS_RELEASE)),6)
ifeq ($(USE_N32),1)
ifndef NS_USE_GCC
XLDOPTS += -n32 -Wl,-woff,85
endif
else
ifeq ($(USE_64),1)
XLDOPTS += -64
else
XLDOPTS += -32
endif
endif
ifndef NS_USE_GCC
ifeq ($(USE_N32),1)
XLDOPTS += -n32 -Wl,-woff,85
else
ifeq ($(USE_64),1)
XLDOPTS += -64
else
XLDOPTS += -32
endif
endif
endif
endif
endif

View File

@ -266,11 +266,11 @@ ifeq ($(OS_ARCH), IRIX)
else
LDOPTS += -32
endif
endif
ifeq ($(USE_PTHREADS), 1)
ifeq ($(OS_RELEASE), 6.2)
LDOPTS += -Wl,-woff,85
ifeq ($(USE_PTHREADS), 1)
ifeq ($(OS_RELEASE), 6.2)
LDOPTS += -Wl,-woff,85
endif
endif
endif
endif