blob: 3e74764cb153e7d1760cc55235322424fbc45575 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# file : examples/build/cxx/rules.make
# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2006-2010 Code Synthesis Tools CC
# license : GNU GPL v2 + exceptions; see accompanying LICENSE file
include $(root)/build/cxx/compilers.make
# GNU g++
#
ifeq ($(cxx_id),gnu)
CXXFLAGS := -W -Wall -O3
endif
# Clang
#
ifeq ($(cxx_id),clang)
CXXFLAGS := -W -O3
endif
# Intel C++
#
ifeq ($(cxx_id),intel)
CXXFLAGS := -w1 -O2
endif
# Sun C++
#
ifeq ($(cxx_id),sun)
CXXFLAGS := -O
endif
# HP aCC3
#
ifeq ($(cxx_id),hp3)
# By default Xerces-C++ is built with -mt for aCC3.
# 849 : symbol to long, truncated to 4000
# 1039: incompatible vtable layout
#
CXXFLAGS := -AA -O -mt +W849 +W1039
endif
# HP aCC6
#
ifeq ($(cxx_id),hp6)
# By default Xerces-C++ is built with -mt for aCC6.
# 2334 no suitable copy constructor (e.g., for std::auto_ptr)
#
CXXFLAGS := -Aa -O -mt +W2334
endif
# IBM XL C++
#
ifeq ($(cxx_id),ibm)
CXXFLAGS := -qrtti -O
endif
# Rules.
#
%.o: %.cxx
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@
%: %.o
$(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS)
|