diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
commit | 3df4acfa816441fc28a95dee6d0191a927145d95 (patch) | |
tree | b5ae7ca44662cfd8e5c95f1826e4406021a606f5 /include/makeinclude/platform_linux_cxx.GNU | |
parent | 60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff) | |
download | ATCD-pre-subset.tar.gz |
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'include/makeinclude/platform_linux_cxx.GNU')
-rw-r--r-- | include/makeinclude/platform_linux_cxx.GNU | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/include/makeinclude/platform_linux_cxx.GNU b/include/makeinclude/platform_linux_cxx.GNU deleted file mode 100644 index 146030e7e84..00000000000 --- a/include/makeinclude/platform_linux_cxx.GNU +++ /dev/null @@ -1,51 +0,0 @@ -# $Id$ - -# This platform macros file is intended to work with -# Linux, using the cxx compiler.. - -debug = 1 -exceptions = 1 -rtti = 1 - -CC = cxx -CXX = $(CC) -CFLAGS += - - #### RedHat 5.2 /usr/include/malloc.h has an extraneous semicolon. - WARNING_FLAGS += -w0 -msg_disable 381 - ifneq (,$(VERBOSE_WARNING)) - WARNING_FLAGS += -msg_display_number -msg_display_tag - endif # VERBOSE_WARNING - -CCFLAGS += $(CFLAGS) $(WARNING_FLAGS) -ifeq ($(rtti),0) - CCFLAGS += -nortti -endif # rtti -DCFLAGS += -g -O0 -DLD = $(CXX) -LD = $(CXX) -LIBS += -ldl -lpthread -ifeq (-DACE_HAS_AIO_CALLS,$(PLATFORM_AIO_SUPPORT)) - LIBS += -lrt -endif -MATHLIB = -lm -OCFLAGS += -O4 -PIC = -ARFLAGS = rsuv -RANLIB = @true -SOFLAGS += -shared $(ACELIB) -SOBUILD = $(RM) $@; $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.o $< && \ - ln $(VSHDIR)$*.o $@ - -ifeq (0,$(exceptions)) - #### Disable the default exception handling of cxx >= 6.0. - #### This is untested. exceptions=1 is the default, so it's not used - #### by default. - ifndef CXX_VERSION - CXX_VERSION := $(shell $(CXX) -V) - endif # ! CXX_VERSION - - ifeq (6.,$(findstring 6.,$(CXX_VERSION))) - CCFLAGS += -nocleanup - endif # 6.x -endif # ! exceptions |