summaryrefslogtreecommitdiff
path: root/libs/compiler.cfg
blob: 1cb8da9bb688f409f0843bf182d6cc4c46237c3b (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// Boost compiler configuration file
//
// The first command template is for compile only tests
// The second command template is for compile and link (and possibly run) tests

linux
gcc
GCC 2.95.2
g++ -c -ftemplate-depth-30 -I%include %source
g++ -o boosttmp.exe -ftemplate-depth-30 -I%include %source
GNU<br>GCC<br>2.95.2

linux
gcc-stlport
GCC 2.95.2 STLport 4.0
g++ -c -V 2.95.2-stlport -ftemplate-depth-30 -I%include %source
g++ -o boosttmp.exe -V 2.95.2-stlport -ftemplate-depth-30 -I%include %source
GNU<br>GCC<br>2.95.2<br>STLport<br>4.0

linux
como
Comeau C++ 4.2.44 beta3
como -c -I%include %source
como -o boosttmp.exe -I%include %source
Comeau C++<br>4.2.44 beta3<br>STLport<br>4.0

sunos5
suncc
Sun WorkShop 6 2000/04/07 C++ 5.1
CC -c -I%include %source
CC -o boosttmp.exe -I%include %source
Sun C++<br>Sun WorkShop 6, C++ 5.1

sunos5
gcc
GCC 2.95.2
g++ -c -Wall -pedantic -ftemplate-depth-30 -Wno-long-long -I%include %source
g++ -o boosttmp.exe -Wall -pedantic -ftemplate-depth-30 -Wno-long-long -I%include %source
GNU<br>GCC<br>2.95.2

sunos5
kcc
KCC 3.4g
KCC -c --strict_warnings -I%include %source
KCC -o boosttmp.exe --strict_warnings -I%include %source
KAI<br>KCC<br>3.4g

osf1V5
cxx
Compaq C++ 6.0
cxx -c -std strict_ansi -D__USE_STD_IOSTREAM -I%include %source
cxx -o boosttmp.exe -std strict_ansi -D__USE_STD_IOSTREAM -I%include %source
Compaq C++<br>6.2-024

osf1V5
cxx-clib
Compaq C++ 6.0 with <cXXX> headers
cxx -c -std strict_ansi -D__USE_STD_IOSTREAM -I$HOME/include -I%include %source
cxx -o boosttmp.exe -std strict_ansi -D__USE_STD_IOSTREAM -I$HOME/include -I%include %source
Compaq C++<br>6.2-024<br>clib

irix6
irixcc
IRIX CC 7.1.3.3
CC -c -LANG:std -I%include %source
CC -o boosttmp.exe -LANG:std -I%include %source
SGI IRIX CC<br>7.3.1.1m

irix6
irixcc-clib
IRIX CC 7.1.3.3 with <cXXX> headers
CC -c -LANG:std -I$HOME/include -I%include %source
CC -o boosttmp.exe -LANG:std -I$HOME/include -I%include %source
SGI IRIX CC<br>7.3.1.1m<br>clib

beos
gcc
GNU GCC
c++ -c -ftemplate-depth-30 -Wall -I%include %source
c++ -o boosttmp.exe -ftemplate-depth-30 -Wall -I%include %source
GNUPro<br>GCC&nbsp;2.9

beos
gcc-stlport
GNU GCC
c++ -c -ftemplate-depth-30 -Wall -I/boot/home/config/stlport/stl330 -I%include %source
c++ -o boosttmp.exe -ftemplate-depth-30 -Wall -I/boot/home/config/stlport/stl330 -I%include %source
GNUPro<br>GCC&nbsp;2.9<br>+<br>SGI&nbsp;STL&nbsp;3.3

win32
bcc
Borland C++ 5.5.1
bcc32 -c -I%include -j10 -q %source
bcc32 -eboosttmp.exe -I%include -j10 -q %source
Borland<br>BCC<br>5.5.1

win32
cw
Metrowerks CodeWarrior
mwcc -c -nocodegen -maxerrors 10 -cwd source -I- -I%include %source
mwcc -o boosttmp.exe -maxerrors 10 -cwd source -I- -I%include %source
Metrowerks<br>CodeWarrior<br>6.0

win32
vc
Microsoft Visual C++
cl /c /nologo /Zm400 /MDd /W3 /GR /GX /Zi /Od /GZ /I "%include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_CONSOLE" %source
cl /Feboosttmp.exe /nologo /Zm400 /MDd /W3 /GR /GX /Zi /Od /GZ /I "%include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_CONSOLE" %source /link user32.lib
Microsoft<br>VC++<br>6.0 SP4

win32
vc-stlport
Microsoft Visual C++ with STLport
cl /c /nologo /Zm400 /MDd /W3 /GR /GX /Zi /Od /GZ /I "$BOOST_STLPORT_PATH/stlport" /I "%include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_CONSOLE" %source
cl /Feboosttmp.exe /nologo /Zm400 /MDd /W3 /GR /GX /Zi /Od /GZ /I "$BOOST_STLPORT_PATH/stlport" /I "%include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_CONSOLE" %source /link /libpath:$BOOST_STLPORT_PATH\lib user32.lib
Microsoft<br>VC++<br>6.0 SP4<br>STLport<br>4.0

// end of file