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
|
# $Id: platform_qnx_gcc.GNU 93845 2011-04-10 17:21:15Z johnnyw $
#
# QNX/RTP hosted, using GCC
inline ?= 1
debug ?= 1
optimize ?= 0
threads ?= 1
pipes ?= 0
CCFLAGS += -fexceptions
LDFLAGS += -fexceptions
ifeq ($(inline),1)
CCFLAGS += -finline-functions
else
CCFLAGS += -fno-inline
endif # inline
DCFLAGS += -ggdb
DCCFLAGS += -ggdb
ifeq ($(optimize),1)
OCFLAGS += -O3
endif #optimize
DLD = $(CXX)
LD = $(CXX)
LIBS += -lsocket -lstdc++ -lm
PIC = -fPIC
ARFLAGS = ruv
SOFLAGS += $(CPPFLAGS) -shared
SOBUILD = $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.so $<
PRELIB = @true
# Test for template instantiation, add to SOFLAGS if SONAME set,
# add -E to LDFLAGS if using GNU ld
#
include $(ACE_ROOT)/include/makeinclude/platform_g++_common.GNU
|