From: wolf Date: Tue, 23 Nov 1999 15:58:36 +0000 (+0000) Subject: Fix a long-standing problem: how to suppress these 1000s of warnings X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07e73a083e94e9b77b2d544d1908545f220a15e3;p=dealii-svn.git Fix a long-standing problem: how to suppress these 1000s of warnings when compiling ACE? git-svn-id: https://svn.dealii.org/trunk@1936 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/common/Make.global_options b/deal.II/common/Make.global_options index acc16a4bfb..c5473376a7 100644 --- a/deal.II/common/Make.global_options +++ b/deal.II/common/Make.global_options @@ -25,12 +25,14 @@ CXXFLAGS.o= -O2 -Wuninitialized -ffast-math \ -fno-vtable-thunks -ftemplate-depth-32 \ $(INCLUDE) + + # DEAL_II_USE_MT=true ifeq ($(DEAL_II_USE_MT),true) INCLUDE += -I $(ACE_ROOT) - CXXFLAGS.g += -DDEAL_II_USE_MT - CXXFLAGS.o += -DDEAL_II_USE_MT + CXXFLAGS.g += -DDEAL_II_USE_MT -threads + CXXFLAGS.o += -DDEAL_II_USE_MT -threads user-libs += $(ACE_ROOT)/ace/libACE.so endif