diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-03 14:14:59 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-11-03 14:14:59 +0000 |
commit | 4b436670b3abfe1aff371746a37814f86252592d (patch) | |
tree | 6b56cecfa264698f973ab0d2930b457b8c0a76a4 /include | |
parent | d2b814ec40da06354fefcf55182e34c2f7d68050 (diff) | |
download | ATCD-4b436670b3abfe1aff371746a37814f86252592d.tar.gz |
suppress -g when compiling ace/Timer_Hash.cpp and netsvcs/lib/Server_Logging_Handler.cpp
Diffstat (limited to 'include')
-rw-r--r-- | include/makeinclude/platform_linux.GNU | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/makeinclude/platform_linux.GNU b/include/makeinclude/platform_linux.GNU index 5e5a6f6360b..83c2938bb59 100644 --- a/include/makeinclude/platform_linux.GNU +++ b/include/makeinclude/platform_linux.GNU @@ -14,7 +14,7 @@ DCFLAGS += -g DLD = $(CXX) LD = $(CXX) LIBS += -ldl -OCFLAGS += -O +OCFLAGS += -O3 PIC = -fPIC AR = ar ARFLAGS = ruv @@ -23,3 +23,7 @@ RANLIB = ranlib SOFLAGS = $(CPPFLAGS) -shared SOBUILD = $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.so $< PRELIB = @true + +#### as appears to have a string limit of about 4096 characters. +#### Suppressing the -g for a few files helps. +SUPPRESS_DASH_G = 1 |