summaryrefslogtreecommitdiff
path: root/ACE/include/makeinclude/platform_qnx_gcc.GNU
blob: 6bdc061e8ef63308effb066fe4df9eeb118264ed (plain)
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
#
# 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