1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
# $Id: platform_linux_icc.GNU 96176 2012-10-04 10:25:11Z johnnyw $
# This file should allow ACE to be built on Linux, using the Intel compiler.
AR = xiar
include $(ACE_ROOT)/include/makeinclude/platform_linux_common.GNU
fast ?= 0
ipo ?= 0
ifeq ($(insure),0)
CC = icc
CXX = icpc
endif
ifndef CXX_VERSION
CXX_VERSION := $(shell $(CXX) --version)
endif
ifeq (8.0,$(findstring 8.0,$(CXX_VERSION)))
CFLAGS += -wd1476,1505
endif
ifeq (8.1,$(findstring 8.1,$(CXX_VERSION)))
CFLAGS += -wd1476,1505,1572 -no-gcc
endif
ifeq (9.0,$(findstring 9.0,$(CXX_VERSION)))
CFLAGS += -wd1684
endif
ifeq (9.1,$(findstring 9.1,$(CXX_VERSION)))
CFLAGS += -wd1684
endif
ifeq (10.0,$(findstring 10.0,$(CXX_VERSION)))
CFLAGS += -wd1684
endif
ifeq (10.1,$(findstring 10.1,$(CXX_VERSION)))
CFLAGS += -wd1684
endif
ifeq (11.0,$(findstring 11.0,$(CXX_VERSION)))
CFLAGS += -wd1684
endif
ifeq (12.0,$(findstring 12.0,$(CXX_VERSION)))
no_hidden_visibility ?= 0
endif
no_hidden_visibility ?= 1
ifeq ($(inline),0)
CPPFLAGS += -fno-inline
endif
ifeq ($(fast),1)
CPPFLAGS += -fast
endif
ifeq ($(ipo),1)
CPPFLAGS += -ipo
endif
ifeq ($(c++0x),1)
CCFLAGS += -std=c++0x
# This is needed due to the use of the deprecated auto_ptr class
CCFLAGS += -Wno-deprecated
endif
ifeq ($(c++11),1)
CCFLAGS += -std=c++11
# This is needed due to the use of the deprecated auto_ptr class
CCFLAGS += -Wno-deprecated
endif
CFLAGS += -w1
ifeq ($(threads),1)
CPPFLAGS += -D_REENTRANT
endif # threads
CCFLAGS += $(CFLAGS) -ip
DCFLAGS += -g -debug full
DLD = $(CXX)
LD = $(CXX)
LIBS += -ldl
ifeq ($(threads),1)
LIBS += -lpthread
LIBS += -lrt
endif
OCFLAGS += -O3
# Disable floating point optimizer solves problem with
# min/max float values in the TAO_IDL compiler tests
# If these options are not passed we can get overflows
# when testing min/max
CPPFLAGS += -fp-model double
ifeq ($(coverage),1)
FLAGS_C_CC += -prof-gen
endif
ifeq ($(optimize),0)
# Disable all optimizing in code
CPPFLAGS += -O0
endif
SOFLAGS += $(CPPFLAGS) -shared
SOBUILD = $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.so $<; \
$(SOLINK.cc) -o $@ $(LDFLAGS) $(VSHDIR)$*.o
PRELIB = @true
ifeq ($(shared_libs), 1)
ifneq ($static_libs_only), 1)
LDFLAGS += -Wl,-E
ifneq ($(no_hidden_visibility),1)
CCFLAGS += -fvisibility=hidden -fvisibility-inlines-hidden
else
CPPFLAGS += -DACE_HAS_CUSTOM_EXPORT_MACROS=0
endif # no_hidden_visibility
endif
endif
# Added line below to support "Executable Shared Object" files (as
# needed by the service configurator).
# Marius Kjeldahl <mariusk@sn.no, marius@funcom.com>
ifeq ($(threads),1)
ESOBUILD = $(COMPILEESO.cc) $(PIC) -shared -o $(VSHDIR)$*.so $<
ifndef PRELIB
PRELIB = @true
endif # ! PRELIB
endif
|