blob: 6193bbe8885999d3076ac652201267c80a3c37f7 (
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
41
42
43
44
45
46
47
48
49
|
# $Id$
# SunOS 5.x (Solaris 2.x) with g++ *not* using Orbix
# NOTE: with g++ 2.8.0, you'll need to disable optimization in order to
# instantiate ACE_Map_Manager (ace/Map_Manager.cpp). The easiest
# way to do that is to set "optimize = 0", either below or on
# your make command line.
# NOTE: On Solaris86, you'll need to use GNU as instead of /usr/ccs/bin/as,
# if you want -gstabs+ and -pipe support.
ifeq (,$(debug))
debug = 1
endif
ifeq (,$(optimize))
optimize = 1
endif
ifeq (,$(threads))
threads = 1
endif
ifeq ($(threads),0)
CFLAGS += -DACE_MT_SAFE=0
endif # threads
ifeq ($(shell /bin/uname -m),i86pc)
#### gcc on Solaris86 doesn't use -g
DCFLAGS += -gstabs+
else # ! i86pc
DCFLAGS += -g
endif # ! i86pc
CC = gcc
CXX = g++
CFLAGS += -W -Wall -Wpointer-arith -pipe #### -Winline
CCFLAGS += $(CFLAGS) -fno-implicit-templates
DLD = $(CXX)
LD = $(CXX)
LDFLAGS +=
LIBS += -lsocket -ldl -lgen -lnsl -lposix4 -lthread
OCFLAGS += -O2
PIC = -fPIC
AR = ar
ARFLAGS = ruv
RANLIB = @true
SOFLAGS = -G $(CPPFLAGS)
SOBUILD = $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.so $<
PRELIB = @true
|