blob: caa20ba0f2bf56cee35084358b1cd35f503fd57e (
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 GreenHills compiler.
debug = 1
exceptions = 0
optimize = 1
threads = 1
# I(kitty) don't know anything about this compiler. Making it explicit.
#
templates = explicit
# Turn on the proper flags for explicit template instantiation.
#
ifeq ($(templates),explicit)
ifeq ($(TEMPLATES_FLAG),) # Turn on flags if none is speficied.
TEMPLATES_FLAG=-tnone
endif
CPPFLAGS += -DACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION
LDFLAGS += --no_auto_instantiation
endif
CC = gcx
CXX = $(CC)
CCFLAGS += $(CFLAGS) --no_rtti $(TEMPLATES_FLAG)
DCFLAGS += -g
DLD = $(CXX)
LD = $(CXX)
LIBS += -lsocket -ldl -lgen -lnsl -lposix4
OCFLAGS += -OL -OM
PIC = -PIC
RANLIB = @true
AR = $(CC) $(LDFLAGS)
ARFLAGS = -archive -o
RANLIB = @true
SOFLAGS += -shared
ifeq ($(threads),1)
#### Don't use g7 register with threading.
CFLAGS += -Xleaveg7
LIBS += -lthread
endif # ! threads
ifeq (1,$(exceptions))
CCFLAGS += --exceptions
else # ! exceptions
CCFLAGS += --no_exceptions
endif # ! exceptions
|