diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-02-25 16:49:41 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-02-25 16:49:41 +0000 |
commit | 5b22e45454c55362c9aab0d16d4f81b4a0202ac4 (patch) | |
tree | e423b7a240f36306a353fb2c8c2a48c9d4b79687 /include/makeinclude/platform_osf1_4.0.GNU | |
parent | 51c4ebb65d5dd599053b069648a9939d0dea739b (diff) | |
download | ATCD-5b22e45454c55362c9aab0d16d4f81b4a0202ac4.tar.gz |
added suppression of "no corresponding delete" warning. Added -lm to LIBS for MT_Cubit client.
Diffstat (limited to 'include/makeinclude/platform_osf1_4.0.GNU')
-rw-r--r-- | include/makeinclude/platform_osf1_4.0.GNU | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/makeinclude/platform_osf1_4.0.GNU b/include/makeinclude/platform_osf1_4.0.GNU index e3535887d48..eda0ea2b7cc 100644 --- a/include/makeinclude/platform_osf1_4.0.GNU +++ b/include/makeinclude/platform_osf1_4.0.GNU @@ -24,16 +24,18 @@ CFLAGS += -pthread # 401: base_class_with_nonvirtual_dtor # 610: nonoverriding_function_decl # 835: unreferenced_function_param +# 839: no_corresponding_delete (until this is fixed in libTAO) ifeq ($(CXX_VER),POST_5X) WARNING_FLAGS += -w0 -msg_display_number -msg_display_tag \ - -msg_disable 9,174,193,236,340,401,610,835 + -msg_disable 9,174,193,236,340,401,610,835,839 endif CCFLAGS += $(CFLAGS) -ptr ptrepository $(WARNING_FLAGS) #### -nortti DCFLAGS += -g -O0 DLD = $(CXX) LD = $(CXX) -LIBS += $(CFLAGS) -ptr ptrepository -ltli -lrt +#### -lm is needed for TAO MT_Cubit client +LIBS += $(CFLAGS) -ptr ptrepository -ltli -lrt -lm OCFLAGS += -O4 PIC = ARFLAGS = cruvZ |