diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-12 16:11:09 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-12 16:11:09 +0000 |
commit | 6159c87ec7462737987c7733ba5c679138a439e0 (patch) | |
tree | 7193cc989a0d8fae6933067b478235c2fc43cd06 /include/makeinclude | |
parent | 7822c1a297c1438106ed4d0190aebf35ca77b577 (diff) | |
download | ATCD-6159c87ec7462737987c7733ba5c679138a439e0.tar.gz |
removed +w from CFLAGS because it generates too many spurious warnings.
Diffstat (limited to 'include/makeinclude')
-rw-r--r-- | include/makeinclude/platform_sunos5_sunc++.GNU | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/makeinclude/platform_sunos5_sunc++.GNU b/include/makeinclude/platform_sunos5_sunc++.GNU index ac79439206b..2a70d1a4694 100644 --- a/include/makeinclude/platform_sunos5_sunc++.GNU +++ b/include/makeinclude/platform_sunos5_sunc++.GNU @@ -12,13 +12,15 @@ # This warning appears to be fixed by Sun C++ 4.2 jumbo patch 104631-02. # 2) "Warning: <foo> hides the function " or "hides the same name in an # outer scope". A useful warning, perhaps, but not really a problem. +# Again, this appears much more often with +w. The jumbo patch did not +# remove it. # There should be no other warnings from Sun C++ when building ACE. debug = 1 CC = cc CXX = CC -CFLAGS += -mt +w +CFLAGS += -mt #### -pta instantiates all template members, which makes libraries bigger. #### But, it's supposed to put each member into it's own .o, so executable #### size should not be penalized. @@ -44,7 +46,7 @@ LD = $(CXX) ifdef orbix LDFLAGS += $(PIC) -L$(ORBIX_ROOT)/corba2/lib -R $(ACE_ROOT)/ace -R $(ORBIX_ROOT)/corba2/lib LIBS += -lITinimt -liiopmt -lorbixmt -lsocket -ldl -lnsl -lthread -lgen -lposix4 - CPPFLAGS += -I$(ORBIX_ROOT)/corba2/include + CPPFLAGS += -I$(ORBIX_ROOT)/corba2/include else LDFLAGS += -R $(ACE_ROOT)/ace LIBS += -lsocket -ldl -lnsl -lgen |