diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-21 18:13:59 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-21 18:13:59 +0000 |
commit | 170031ebe4ae3a55e18ed72cccc101590dc8ba8a (patch) | |
tree | ae65e39b5ac00fd394214a6d0640d2284cbae14c /include | |
parent | 3b62b31a98fb98225a183690d2113194d377feea (diff) | |
download | ATCD-170031ebe4ae3a55e18ed72cccc101590dc8ba8a.tar.gz |
ChangeLogTag:Thu Aug 21 13:08:43 1997 Carlos O'Ryan <coryan@swarm.cs.wustl.edu>
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/platform_irix6.x-sgic++.GNU | 12 | ||||
-rw-r--r-- | include/makeinclude/rules.nested.GNU | 6 |
2 files changed, 7 insertions, 11 deletions
diff --git a/include/makeinclude/platform_irix6.x-sgic++.GNU b/include/makeinclude/platform_irix6.x-sgic++.GNU index 43d431c105e..6dcf5f11ccf 100644 --- a/include/makeinclude/platform_irix6.x-sgic++.GNU +++ b/include/makeinclude/platform_irix6.x-sgic++.GNU @@ -17,16 +17,12 @@ CCFLAGS += -O # Enable exceptions even in the o32 bit ABI. CCFLAGS += -exceptions -# This suppresses common compiler warnings which appear in the -# ACE code but should not matter. The warnings can be turned on -# again by removing the -woff clause in the CPPFLAGS definition. -# CCFLAGS += -woff 1188,1682,1171,1681,1110 - # Instantiate no templates automatically, do not run prelinker. There -# are other choices available, but you should check for those. +# are other choices available, but those have not been used in a while. CCFLAGS += -ptnone -no_prelink # Instantiate everything; without this, apps/Gateway/Gateway/gatewayd might -# not build due to missing template instantiations. +# not build due to missing template instantiations. NOTE: it seems +# this setting no longer works for ACE. #CCFLAGS += -ptall # Instantiate used templates, plus prelinking instantiation #CCFLAGS += -ptused -prelink @@ -38,9 +34,11 @@ LDFLAGS += -Wl,-woff,15 LDFLAGS += -Wl,-woff,84 LDFLAGS += -Wl,-woff,85 LDFLAGS += -Wl,-woff,133 + # You may need to remove this if you are using 6.2 without the Pthread # patches. LIBS += -lpthread + PIC = -KPIC AR = ar ARFLAGS = r diff --git a/include/makeinclude/rules.nested.GNU b/include/makeinclude/rules.nested.GNU index 1ac088b3bd9..5bd378ea743 100644 --- a/include/makeinclude/rules.nested.GNU +++ b/include/makeinclude/rules.nested.GNU @@ -7,9 +7,7 @@ $(TARGETS_NESTED): @for dir in $(DIRS) ;\ do \ - (cd $$dir ; \ - echo "" ; \ - echo " ========> Making $(@:.nested=) $(MAKEFLAGS): `pwd`"; \ - $(MAKE) $(@:.nested=) MAKEFLAGS=$(MAKEFLAGS) ; \ + (echo " ========> Making $(@:.nested=): `pwd`"; \ + $(MAKE) -C $$dir $(@:.nested=); \ echo "<======== End $(@:.nested=): `pwd`") ; \ done |