1 | Checking whether '/opt/local/bin/clang-mp-3.7 -pipe -Os -I/opt/local/include/LegacySupport -I/opt/local/include/LegacySupport -arch x86_64 ' works. |
---|
2 | Try: /opt/local/bin/clang-mp-3.7 |
---|
3 | Line: /opt/local/bin/clang-mp-3.7 -pipe -Os -I/opt/local/include/LegacySupport -I/opt/local/include/LegacySupport -arch x86_64 cmake_bootstrap_45609_test.c -o cmake_bootstrap_45609_test |
---|
4 | ---------- file ----------------------- |
---|
5 | |
---|
6 | #ifdef __cplusplus |
---|
7 | # error "The CMAKE_C_COMPILER is set to a C++ compiler" |
---|
8 | #endif |
---|
9 | |
---|
10 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
11 | #error "On AIX with GNU we need the -pthread flag." |
---|
12 | #endif |
---|
13 | |
---|
14 | #if defined(__sun) && __STDC_VERSION__ < 199901L |
---|
15 | #error "On Solaris we need C99." |
---|
16 | #endif |
---|
17 | |
---|
18 | #include <stdio.h> |
---|
19 | |
---|
20 | int main(int argc, char* argv[]) |
---|
21 | { |
---|
22 | printf("%d%c", (argv != 0), (char)0x0a); |
---|
23 | return argc - 1; |
---|
24 | } |
---|
25 | |
---|
26 | ------------------------------------------ |
---|
27 | 1 |
---|
28 | Test succeeded |
---|
29 | Checking whether '/opt/local/bin/clang-mp-3.7 -pipe -Os -I/opt/local/include/LegacySupport -I/opt/local/include/LegacySupport -arch x86_64 ' works. |
---|
30 | Try: /opt/local/bin/clang-mp-3.7 |
---|
31 | Line: /opt/local/bin/clang-mp-3.7 -pipe -Os -I/opt/local/include/LegacySupport -I/opt/local/include/LegacySupport -arch x86_64 cmake_bootstrap_45609_test.c -o cmake_bootstrap_45609_test |
---|
32 | ---------- file ----------------------- |
---|
33 | |
---|
34 | #ifdef __cplusplus |
---|
35 | # error "The CMAKE_C_COMPILER is set to a C++ compiler" |
---|
36 | #endif |
---|
37 | |
---|
38 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
39 | #error "On AIX with GNU we need the -pthread flag." |
---|
40 | #endif |
---|
41 | |
---|
42 | #if defined(__sun) && __STDC_VERSION__ < 199901L |
---|
43 | #error "On Solaris we need C99." |
---|
44 | #endif |
---|
45 | |
---|
46 | #include <stdio.h> |
---|
47 | |
---|
48 | int main(int argc, char* argv[]) |
---|
49 | { |
---|
50 | printf("%d%c", (argv != 0), (char)0x0a); |
---|
51 | return argc - 1; |
---|
52 | } |
---|
53 | |
---|
54 | ------------------------------------------ |
---|
55 | 1 |
---|
56 | Test succeeded |
---|
57 | Checking whether '/opt/local/bin/clang-mp-3.7 -pipe -Os -I/opt/local/include/LegacySupport -I/opt/local/include/LegacySupport -arch x86_64 ' works. |
---|
58 | Try: /opt/local/bin/clang-mp-3.7 |
---|
59 | Line: /opt/local/bin/clang-mp-3.7 -pipe -Os -I/opt/local/include/LegacySupport -I/opt/local/include/LegacySupport -arch x86_64 cmake_bootstrap_45609_test.c -o cmake_bootstrap_45609_test |
---|
60 | ---------- file ----------------------- |
---|
61 | |
---|
62 | #ifdef __cplusplus |
---|
63 | # error "The CMAKE_C_COMPILER is set to a C++ compiler" |
---|
64 | #endif |
---|
65 | |
---|
66 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
67 | #error "On AIX with GNU we need the -pthread flag." |
---|
68 | #endif |
---|
69 | |
---|
70 | #if defined(__sun) && __STDC_VERSION__ < 199901L |
---|
71 | #error "On Solaris we need C99." |
---|
72 | #endif |
---|
73 | |
---|
74 | #include <stdio.h> |
---|
75 | |
---|
76 | int main(int argc, char* argv[]) |
---|
77 | { |
---|
78 | printf("%d%c", (argv != 0), (char)0x0a); |
---|
79 | return argc - 1; |
---|
80 | } |
---|
81 | |
---|
82 | ------------------------------------------ |
---|
83 | 1 |
---|
84 | Test succeeded |
---|
85 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 ' works. |
---|
86 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
87 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
88 | ---------- file ----------------------- |
---|
89 | |
---|
90 | #include <iostream> |
---|
91 | #include <memory> |
---|
92 | #include <unordered_map> |
---|
93 | |
---|
94 | #if __cplusplus < 201103L |
---|
95 | #error "Compiler is not in a mode aware of C++11." |
---|
96 | #endif |
---|
97 | |
---|
98 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
99 | #error "On AIX with GNU we need the -pthread flag." |
---|
100 | #endif |
---|
101 | |
---|
102 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
103 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
104 | #endif |
---|
105 | |
---|
106 | class Class |
---|
107 | { |
---|
108 | public: |
---|
109 | int Get() const { return this->Member; } |
---|
110 | private: |
---|
111 | int Member = 1; |
---|
112 | }; |
---|
113 | int main() |
---|
114 | { |
---|
115 | auto const c = std::unique_ptr<Class>(new Class); |
---|
116 | std::cout << c->Get() << std::endl; |
---|
117 | return 0; |
---|
118 | } |
---|
119 | |
---|
120 | ------------------------------------------ |
---|
121 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
122 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
123 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
124 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
125 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
126 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
127 | *__sinp = sinf(__x); |
---|
128 | ^ |
---|
129 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
130 | *__cosp = cosf(__x); |
---|
131 | ^ |
---|
132 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
133 | *__sinp = sin(__x); |
---|
134 | ^ |
---|
135 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
136 | *__cosp = cos(__x); |
---|
137 | ^ |
---|
138 | cmake_bootstrap_45609_test.cxx:7:2: error: "Compiler is not in a mode aware of C++11." |
---|
139 | #error "Compiler is not in a mode aware of C++11." |
---|
140 | ^ |
---|
141 | cmake_bootstrap_45609_test.cxx:23:14: warning: in-class initialization of non-static data member is a C++11 extension [-Wc++11-extensions] |
---|
142 | int Member = 1; |
---|
143 | ^ |
---|
144 | cmake_bootstrap_45609_test.cxx:27:3: warning: 'auto' type specifier is a C++11 extension [-Wc++11-extensions] |
---|
145 | auto const c = std::unique_ptr<Class>(new Class); |
---|
146 | ^ |
---|
147 | 2 warnings and 5 errors generated. |
---|
148 | Test failed to compile |
---|
149 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++1z ' works. |
---|
150 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
151 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++1z cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
152 | ---------- file ----------------------- |
---|
153 | |
---|
154 | #include <iostream> |
---|
155 | #include <memory> |
---|
156 | #include <unordered_map> |
---|
157 | |
---|
158 | #if __cplusplus < 201103L |
---|
159 | #error "Compiler is not in a mode aware of C++11." |
---|
160 | #endif |
---|
161 | |
---|
162 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
163 | #error "On AIX with GNU we need the -pthread flag." |
---|
164 | #endif |
---|
165 | |
---|
166 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
167 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
168 | #endif |
---|
169 | |
---|
170 | class Class |
---|
171 | { |
---|
172 | public: |
---|
173 | int Get() const { return this->Member; } |
---|
174 | private: |
---|
175 | int Member = 1; |
---|
176 | }; |
---|
177 | int main() |
---|
178 | { |
---|
179 | auto const c = std::unique_ptr<Class>(new Class); |
---|
180 | std::cout << c->Get() << std::endl; |
---|
181 | return 0; |
---|
182 | } |
---|
183 | |
---|
184 | ------------------------------------------ |
---|
185 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
186 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
187 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
188 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
189 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
190 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
191 | *__sinp = sinf(__x); |
---|
192 | ^ |
---|
193 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
194 | *__cosp = cosf(__x); |
---|
195 | ^ |
---|
196 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
197 | *__sinp = sin(__x); |
---|
198 | ^ |
---|
199 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
200 | *__cosp = cos(__x); |
---|
201 | ^ |
---|
202 | 4 errors generated. |
---|
203 | Test failed to compile |
---|
204 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++17 ' works. |
---|
205 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
206 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++17 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
207 | ---------- file ----------------------- |
---|
208 | |
---|
209 | #include <iostream> |
---|
210 | #include <memory> |
---|
211 | #include <unordered_map> |
---|
212 | |
---|
213 | #if __cplusplus < 201103L |
---|
214 | #error "Compiler is not in a mode aware of C++11." |
---|
215 | #endif |
---|
216 | |
---|
217 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
218 | #error "On AIX with GNU we need the -pthread flag." |
---|
219 | #endif |
---|
220 | |
---|
221 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
222 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
223 | #endif |
---|
224 | |
---|
225 | class Class |
---|
226 | { |
---|
227 | public: |
---|
228 | int Get() const { return this->Member; } |
---|
229 | private: |
---|
230 | int Member = 1; |
---|
231 | }; |
---|
232 | int main() |
---|
233 | { |
---|
234 | auto const c = std::unique_ptr<Class>(new Class); |
---|
235 | std::cout << c->Get() << std::endl; |
---|
236 | return 0; |
---|
237 | } |
---|
238 | |
---|
239 | ------------------------------------------ |
---|
240 | error: invalid value 'gnu++17' in '-std=gnu++17' |
---|
241 | Test failed to compile |
---|
242 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++1z ' works. |
---|
243 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
244 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++1z cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
245 | ---------- file ----------------------- |
---|
246 | |
---|
247 | #include <iostream> |
---|
248 | #include <memory> |
---|
249 | #include <unordered_map> |
---|
250 | |
---|
251 | #if __cplusplus < 201103L |
---|
252 | #error "Compiler is not in a mode aware of C++11." |
---|
253 | #endif |
---|
254 | |
---|
255 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
256 | #error "On AIX with GNU we need the -pthread flag." |
---|
257 | #endif |
---|
258 | |
---|
259 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
260 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
261 | #endif |
---|
262 | |
---|
263 | class Class |
---|
264 | { |
---|
265 | public: |
---|
266 | int Get() const { return this->Member; } |
---|
267 | private: |
---|
268 | int Member = 1; |
---|
269 | }; |
---|
270 | int main() |
---|
271 | { |
---|
272 | auto const c = std::unique_ptr<Class>(new Class); |
---|
273 | std::cout << c->Get() << std::endl; |
---|
274 | return 0; |
---|
275 | } |
---|
276 | |
---|
277 | ------------------------------------------ |
---|
278 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
279 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
280 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
281 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
282 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
283 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
284 | *__sinp = sinf(__x); |
---|
285 | ^ |
---|
286 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
287 | *__cosp = cosf(__x); |
---|
288 | ^ |
---|
289 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
290 | *__sinp = sin(__x); |
---|
291 | ^ |
---|
292 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
293 | *__cosp = cos(__x); |
---|
294 | ^ |
---|
295 | 4 errors generated. |
---|
296 | Test failed to compile |
---|
297 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std:c++17 ' works. |
---|
298 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
299 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std:c++17 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
300 | ---------- file ----------------------- |
---|
301 | |
---|
302 | #include <iostream> |
---|
303 | #include <memory> |
---|
304 | #include <unordered_map> |
---|
305 | |
---|
306 | #if __cplusplus < 201103L |
---|
307 | #error "Compiler is not in a mode aware of C++11." |
---|
308 | #endif |
---|
309 | |
---|
310 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
311 | #error "On AIX with GNU we need the -pthread flag." |
---|
312 | #endif |
---|
313 | |
---|
314 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
315 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
316 | #endif |
---|
317 | |
---|
318 | class Class |
---|
319 | { |
---|
320 | public: |
---|
321 | int Get() const { return this->Member; } |
---|
322 | private: |
---|
323 | int Member = 1; |
---|
324 | }; |
---|
325 | int main() |
---|
326 | { |
---|
327 | auto const c = std::unique_ptr<Class>(new Class); |
---|
328 | std::cout << c->Get() << std::endl; |
---|
329 | return 0; |
---|
330 | } |
---|
331 | |
---|
332 | ------------------------------------------ |
---|
333 | clang: error: unknown argument: '-std:c++17' |
---|
334 | Test failed to compile |
---|
335 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std:c++latest ' works. |
---|
336 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
337 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std:c++latest cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
338 | ---------- file ----------------------- |
---|
339 | |
---|
340 | #include <iostream> |
---|
341 | #include <memory> |
---|
342 | #include <unordered_map> |
---|
343 | |
---|
344 | #if __cplusplus < 201103L |
---|
345 | #error "Compiler is not in a mode aware of C++11." |
---|
346 | #endif |
---|
347 | |
---|
348 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
349 | #error "On AIX with GNU we need the -pthread flag." |
---|
350 | #endif |
---|
351 | |
---|
352 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
353 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
354 | #endif |
---|
355 | |
---|
356 | class Class |
---|
357 | { |
---|
358 | public: |
---|
359 | int Get() const { return this->Member; } |
---|
360 | private: |
---|
361 | int Member = 1; |
---|
362 | }; |
---|
363 | int main() |
---|
364 | { |
---|
365 | auto const c = std::unique_ptr<Class>(new Class); |
---|
366 | std::cout << c->Get() << std::endl; |
---|
367 | return 0; |
---|
368 | } |
---|
369 | |
---|
370 | ------------------------------------------ |
---|
371 | clang: error: unknown argument: '-std:c++latest' |
---|
372 | Test failed to compile |
---|
373 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++17 ' works. |
---|
374 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
375 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++17 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
376 | ---------- file ----------------------- |
---|
377 | |
---|
378 | #include <iostream> |
---|
379 | #include <memory> |
---|
380 | #include <unordered_map> |
---|
381 | |
---|
382 | #if __cplusplus < 201103L |
---|
383 | #error "Compiler is not in a mode aware of C++11." |
---|
384 | #endif |
---|
385 | |
---|
386 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
387 | #error "On AIX with GNU we need the -pthread flag." |
---|
388 | #endif |
---|
389 | |
---|
390 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
391 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
392 | #endif |
---|
393 | |
---|
394 | class Class |
---|
395 | { |
---|
396 | public: |
---|
397 | int Get() const { return this->Member; } |
---|
398 | private: |
---|
399 | int Member = 1; |
---|
400 | }; |
---|
401 | int main() |
---|
402 | { |
---|
403 | auto const c = std::unique_ptr<Class>(new Class); |
---|
404 | std::cout << c->Get() << std::endl; |
---|
405 | return 0; |
---|
406 | } |
---|
407 | |
---|
408 | ------------------------------------------ |
---|
409 | error: invalid value 'gnu++17' in '-std=gnu++17' |
---|
410 | Test failed to compile |
---|
411 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++1z ' works. |
---|
412 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
413 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++1z cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
414 | ---------- file ----------------------- |
---|
415 | |
---|
416 | #include <iostream> |
---|
417 | #include <memory> |
---|
418 | #include <unordered_map> |
---|
419 | |
---|
420 | #if __cplusplus < 201103L |
---|
421 | #error "Compiler is not in a mode aware of C++11." |
---|
422 | #endif |
---|
423 | |
---|
424 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
425 | #error "On AIX with GNU we need the -pthread flag." |
---|
426 | #endif |
---|
427 | |
---|
428 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
429 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
430 | #endif |
---|
431 | |
---|
432 | class Class |
---|
433 | { |
---|
434 | public: |
---|
435 | int Get() const { return this->Member; } |
---|
436 | private: |
---|
437 | int Member = 1; |
---|
438 | }; |
---|
439 | int main() |
---|
440 | { |
---|
441 | auto const c = std::unique_ptr<Class>(new Class); |
---|
442 | std::cout << c->Get() << std::endl; |
---|
443 | return 0; |
---|
444 | } |
---|
445 | |
---|
446 | ------------------------------------------ |
---|
447 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
448 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
449 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
450 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
451 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
452 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
453 | *__sinp = sinf(__x); |
---|
454 | ^ |
---|
455 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
456 | *__cosp = cosf(__x); |
---|
457 | ^ |
---|
458 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
459 | *__sinp = sin(__x); |
---|
460 | ^ |
---|
461 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
462 | *__cosp = cos(__x); |
---|
463 | ^ |
---|
464 | 4 errors generated. |
---|
465 | Test failed to compile |
---|
466 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -Qstd=c++17 ' works. |
---|
467 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
468 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -Qstd=c++17 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
469 | ---------- file ----------------------- |
---|
470 | |
---|
471 | #include <iostream> |
---|
472 | #include <memory> |
---|
473 | #include <unordered_map> |
---|
474 | |
---|
475 | #if __cplusplus < 201103L |
---|
476 | #error "Compiler is not in a mode aware of C++11." |
---|
477 | #endif |
---|
478 | |
---|
479 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
480 | #error "On AIX with GNU we need the -pthread flag." |
---|
481 | #endif |
---|
482 | |
---|
483 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
484 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
485 | #endif |
---|
486 | |
---|
487 | class Class |
---|
488 | { |
---|
489 | public: |
---|
490 | int Get() const { return this->Member; } |
---|
491 | private: |
---|
492 | int Member = 1; |
---|
493 | }; |
---|
494 | int main() |
---|
495 | { |
---|
496 | auto const c = std::unique_ptr<Class>(new Class); |
---|
497 | std::cout << c->Get() << std::endl; |
---|
498 | return 0; |
---|
499 | } |
---|
500 | |
---|
501 | ------------------------------------------ |
---|
502 | clang: error: unknown argument: '-Qstd=c++17' |
---|
503 | Test failed to compile |
---|
504 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++17 ' works. |
---|
505 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
506 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++17 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
507 | ---------- file ----------------------- |
---|
508 | |
---|
509 | #include <iostream> |
---|
510 | #include <memory> |
---|
511 | #include <unordered_map> |
---|
512 | |
---|
513 | #if __cplusplus < 201103L |
---|
514 | #error "Compiler is not in a mode aware of C++11." |
---|
515 | #endif |
---|
516 | |
---|
517 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
518 | #error "On AIX with GNU we need the -pthread flag." |
---|
519 | #endif |
---|
520 | |
---|
521 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
522 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
523 | #endif |
---|
524 | |
---|
525 | class Class |
---|
526 | { |
---|
527 | public: |
---|
528 | int Get() const { return this->Member; } |
---|
529 | private: |
---|
530 | int Member = 1; |
---|
531 | }; |
---|
532 | int main() |
---|
533 | { |
---|
534 | auto const c = std::unique_ptr<Class>(new Class); |
---|
535 | std::cout << c->Get() << std::endl; |
---|
536 | return 0; |
---|
537 | } |
---|
538 | |
---|
539 | ------------------------------------------ |
---|
540 | error: invalid value 'gnu++17' in '-std=gnu++17' |
---|
541 | Test failed to compile |
---|
542 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std:c++17 ' works. |
---|
543 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
544 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std:c++17 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
545 | ---------- file ----------------------- |
---|
546 | |
---|
547 | #include <iostream> |
---|
548 | #include <memory> |
---|
549 | #include <unordered_map> |
---|
550 | |
---|
551 | #if __cplusplus < 201103L |
---|
552 | #error "Compiler is not in a mode aware of C++11." |
---|
553 | #endif |
---|
554 | |
---|
555 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
556 | #error "On AIX with GNU we need the -pthread flag." |
---|
557 | #endif |
---|
558 | |
---|
559 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
560 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
561 | #endif |
---|
562 | |
---|
563 | class Class |
---|
564 | { |
---|
565 | public: |
---|
566 | int Get() const { return this->Member; } |
---|
567 | private: |
---|
568 | int Member = 1; |
---|
569 | }; |
---|
570 | int main() |
---|
571 | { |
---|
572 | auto const c = std::unique_ptr<Class>(new Class); |
---|
573 | std::cout << c->Get() << std::endl; |
---|
574 | return 0; |
---|
575 | } |
---|
576 | |
---|
577 | ------------------------------------------ |
---|
578 | clang: error: unknown argument: '-std:c++17' |
---|
579 | Test failed to compile |
---|
580 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std:c++latest ' works. |
---|
581 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
582 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std:c++latest cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
583 | ---------- file ----------------------- |
---|
584 | |
---|
585 | #include <iostream> |
---|
586 | #include <memory> |
---|
587 | #include <unordered_map> |
---|
588 | |
---|
589 | #if __cplusplus < 201103L |
---|
590 | #error "Compiler is not in a mode aware of C++11." |
---|
591 | #endif |
---|
592 | |
---|
593 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
594 | #error "On AIX with GNU we need the -pthread flag." |
---|
595 | #endif |
---|
596 | |
---|
597 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
598 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
599 | #endif |
---|
600 | |
---|
601 | class Class |
---|
602 | { |
---|
603 | public: |
---|
604 | int Get() const { return this->Member; } |
---|
605 | private: |
---|
606 | int Member = 1; |
---|
607 | }; |
---|
608 | int main() |
---|
609 | { |
---|
610 | auto const c = std::unique_ptr<Class>(new Class); |
---|
611 | std::cout << c->Get() << std::endl; |
---|
612 | return 0; |
---|
613 | } |
---|
614 | |
---|
615 | ------------------------------------------ |
---|
616 | clang: error: unknown argument: '-std:c++latest' |
---|
617 | Test failed to compile |
---|
618 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 --c++17 ' works. |
---|
619 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
620 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 --c++17 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
621 | ---------- file ----------------------- |
---|
622 | |
---|
623 | #include <iostream> |
---|
624 | #include <memory> |
---|
625 | #include <unordered_map> |
---|
626 | |
---|
627 | #if __cplusplus < 201103L |
---|
628 | #error "Compiler is not in a mode aware of C++11." |
---|
629 | #endif |
---|
630 | |
---|
631 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
632 | #error "On AIX with GNU we need the -pthread flag." |
---|
633 | #endif |
---|
634 | |
---|
635 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
636 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
637 | #endif |
---|
638 | |
---|
639 | class Class |
---|
640 | { |
---|
641 | public: |
---|
642 | int Get() const { return this->Member; } |
---|
643 | private: |
---|
644 | int Member = 1; |
---|
645 | }; |
---|
646 | int main() |
---|
647 | { |
---|
648 | auto const c = std::unique_ptr<Class>(new Class); |
---|
649 | std::cout << c->Get() << std::endl; |
---|
650 | return 0; |
---|
651 | } |
---|
652 | |
---|
653 | ------------------------------------------ |
---|
654 | clang: error: unsupported option '--c++17' |
---|
655 | Test failed to compile |
---|
656 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 --gnu_extensions ' works. |
---|
657 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
658 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 --gnu_extensions cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
659 | ---------- file ----------------------- |
---|
660 | |
---|
661 | #include <iostream> |
---|
662 | #include <memory> |
---|
663 | #include <unordered_map> |
---|
664 | |
---|
665 | #if __cplusplus < 201103L |
---|
666 | #error "Compiler is not in a mode aware of C++11." |
---|
667 | #endif |
---|
668 | |
---|
669 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
670 | #error "On AIX with GNU we need the -pthread flag." |
---|
671 | #endif |
---|
672 | |
---|
673 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
674 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
675 | #endif |
---|
676 | |
---|
677 | class Class |
---|
678 | { |
---|
679 | public: |
---|
680 | int Get() const { return this->Member; } |
---|
681 | private: |
---|
682 | int Member = 1; |
---|
683 | }; |
---|
684 | int main() |
---|
685 | { |
---|
686 | auto const c = std::unique_ptr<Class>(new Class); |
---|
687 | std::cout << c->Get() << std::endl; |
---|
688 | return 0; |
---|
689 | } |
---|
690 | |
---|
691 | ------------------------------------------ |
---|
692 | clang: error: unsupported option '--gnu_extensions' |
---|
693 | Test failed to compile |
---|
694 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 ' works. |
---|
695 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
696 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
697 | ---------- file ----------------------- |
---|
698 | |
---|
699 | #include <iostream> |
---|
700 | #include <memory> |
---|
701 | #include <unordered_map> |
---|
702 | |
---|
703 | #if __cplusplus < 201103L |
---|
704 | #error "Compiler is not in a mode aware of C++11." |
---|
705 | #endif |
---|
706 | |
---|
707 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
708 | #error "On AIX with GNU we need the -pthread flag." |
---|
709 | #endif |
---|
710 | |
---|
711 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
712 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
713 | #endif |
---|
714 | |
---|
715 | class Class |
---|
716 | { |
---|
717 | public: |
---|
718 | int Get() const { return this->Member; } |
---|
719 | private: |
---|
720 | int Member = 1; |
---|
721 | }; |
---|
722 | int main() |
---|
723 | { |
---|
724 | auto const c = std::unique_ptr<Class>(new Class); |
---|
725 | std::cout << c->Get() << std::endl; |
---|
726 | return 0; |
---|
727 | } |
---|
728 | |
---|
729 | ------------------------------------------ |
---|
730 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
731 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
732 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
733 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
734 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
735 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
736 | *__sinp = sinf(__x); |
---|
737 | ^ |
---|
738 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
739 | *__cosp = cosf(__x); |
---|
740 | ^ |
---|
741 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
742 | *__sinp = sin(__x); |
---|
743 | ^ |
---|
744 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
745 | *__cosp = cos(__x); |
---|
746 | ^ |
---|
747 | cmake_bootstrap_45609_test.cxx:7:2: error: "Compiler is not in a mode aware of C++11." |
---|
748 | #error "Compiler is not in a mode aware of C++11." |
---|
749 | ^ |
---|
750 | cmake_bootstrap_45609_test.cxx:23:14: warning: in-class initialization of non-static data member is a C++11 extension [-Wc++11-extensions] |
---|
751 | int Member = 1; |
---|
752 | ^ |
---|
753 | cmake_bootstrap_45609_test.cxx:27:3: warning: 'auto' type specifier is a C++11 extension [-Wc++11-extensions] |
---|
754 | auto const c = std::unique_ptr<Class>(new Class); |
---|
755 | ^ |
---|
756 | 2 warnings and 5 errors generated. |
---|
757 | Test failed to compile |
---|
758 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++14 ' works. |
---|
759 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
760 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++14 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
761 | ---------- file ----------------------- |
---|
762 | |
---|
763 | #include <iostream> |
---|
764 | #include <memory> |
---|
765 | #include <unordered_map> |
---|
766 | |
---|
767 | #if __cplusplus < 201103L |
---|
768 | #error "Compiler is not in a mode aware of C++11." |
---|
769 | #endif |
---|
770 | |
---|
771 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
772 | #error "On AIX with GNU we need the -pthread flag." |
---|
773 | #endif |
---|
774 | |
---|
775 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
776 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
777 | #endif |
---|
778 | |
---|
779 | class Class |
---|
780 | { |
---|
781 | public: |
---|
782 | int Get() const { return this->Member; } |
---|
783 | private: |
---|
784 | int Member = 1; |
---|
785 | }; |
---|
786 | int main() |
---|
787 | { |
---|
788 | auto const c = std::unique_ptr<Class>(new Class); |
---|
789 | std::cout << c->Get() << std::endl; |
---|
790 | return 0; |
---|
791 | } |
---|
792 | |
---|
793 | ------------------------------------------ |
---|
794 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
795 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
796 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
797 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
798 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
799 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
800 | *__sinp = sinf(__x); |
---|
801 | ^ |
---|
802 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
803 | *__cosp = cosf(__x); |
---|
804 | ^ |
---|
805 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
806 | *__sinp = sin(__x); |
---|
807 | ^ |
---|
808 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
809 | *__cosp = cos(__x); |
---|
810 | ^ |
---|
811 | 4 errors generated. |
---|
812 | Test failed to compile |
---|
813 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++1y ' works. |
---|
814 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
815 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++1y cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
816 | ---------- file ----------------------- |
---|
817 | |
---|
818 | #include <iostream> |
---|
819 | #include <memory> |
---|
820 | #include <unordered_map> |
---|
821 | |
---|
822 | #if __cplusplus < 201103L |
---|
823 | #error "Compiler is not in a mode aware of C++11." |
---|
824 | #endif |
---|
825 | |
---|
826 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
827 | #error "On AIX with GNU we need the -pthread flag." |
---|
828 | #endif |
---|
829 | |
---|
830 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
831 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
832 | #endif |
---|
833 | |
---|
834 | class Class |
---|
835 | { |
---|
836 | public: |
---|
837 | int Get() const { return this->Member; } |
---|
838 | private: |
---|
839 | int Member = 1; |
---|
840 | }; |
---|
841 | int main() |
---|
842 | { |
---|
843 | auto const c = std::unique_ptr<Class>(new Class); |
---|
844 | std::cout << c->Get() << std::endl; |
---|
845 | return 0; |
---|
846 | } |
---|
847 | |
---|
848 | ------------------------------------------ |
---|
849 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
850 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
851 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
852 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
853 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
854 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
855 | *__sinp = sinf(__x); |
---|
856 | ^ |
---|
857 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
858 | *__cosp = cosf(__x); |
---|
859 | ^ |
---|
860 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
861 | *__sinp = sin(__x); |
---|
862 | ^ |
---|
863 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
864 | *__cosp = cos(__x); |
---|
865 | ^ |
---|
866 | 4 errors generated. |
---|
867 | Test failed to compile |
---|
868 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++14 ' works. |
---|
869 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
870 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++14 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
871 | ---------- file ----------------------- |
---|
872 | |
---|
873 | #include <iostream> |
---|
874 | #include <memory> |
---|
875 | #include <unordered_map> |
---|
876 | |
---|
877 | #if __cplusplus < 201103L |
---|
878 | #error "Compiler is not in a mode aware of C++11." |
---|
879 | #endif |
---|
880 | |
---|
881 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
882 | #error "On AIX with GNU we need the -pthread flag." |
---|
883 | #endif |
---|
884 | |
---|
885 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
886 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
887 | #endif |
---|
888 | |
---|
889 | class Class |
---|
890 | { |
---|
891 | public: |
---|
892 | int Get() const { return this->Member; } |
---|
893 | private: |
---|
894 | int Member = 1; |
---|
895 | }; |
---|
896 | int main() |
---|
897 | { |
---|
898 | auto const c = std::unique_ptr<Class>(new Class); |
---|
899 | std::cout << c->Get() << std::endl; |
---|
900 | return 0; |
---|
901 | } |
---|
902 | |
---|
903 | ------------------------------------------ |
---|
904 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
905 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
906 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
907 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
908 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
909 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
910 | *__sinp = sinf(__x); |
---|
911 | ^ |
---|
912 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
913 | *__cosp = cosf(__x); |
---|
914 | ^ |
---|
915 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
916 | *__sinp = sin(__x); |
---|
917 | ^ |
---|
918 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
919 | *__cosp = cos(__x); |
---|
920 | ^ |
---|
921 | 4 errors generated. |
---|
922 | Test failed to compile |
---|
923 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++1y ' works. |
---|
924 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
925 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++1y cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
926 | ---------- file ----------------------- |
---|
927 | |
---|
928 | #include <iostream> |
---|
929 | #include <memory> |
---|
930 | #include <unordered_map> |
---|
931 | |
---|
932 | #if __cplusplus < 201103L |
---|
933 | #error "Compiler is not in a mode aware of C++11." |
---|
934 | #endif |
---|
935 | |
---|
936 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
937 | #error "On AIX with GNU we need the -pthread flag." |
---|
938 | #endif |
---|
939 | |
---|
940 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
941 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
942 | #endif |
---|
943 | |
---|
944 | class Class |
---|
945 | { |
---|
946 | public: |
---|
947 | int Get() const { return this->Member; } |
---|
948 | private: |
---|
949 | int Member = 1; |
---|
950 | }; |
---|
951 | int main() |
---|
952 | { |
---|
953 | auto const c = std::unique_ptr<Class>(new Class); |
---|
954 | std::cout << c->Get() << std::endl; |
---|
955 | return 0; |
---|
956 | } |
---|
957 | |
---|
958 | ------------------------------------------ |
---|
959 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
960 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
961 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
962 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
963 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
964 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
965 | *__sinp = sinf(__x); |
---|
966 | ^ |
---|
967 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
968 | *__cosp = cosf(__x); |
---|
969 | ^ |
---|
970 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
971 | *__sinp = sin(__x); |
---|
972 | ^ |
---|
973 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
974 | *__cosp = cos(__x); |
---|
975 | ^ |
---|
976 | 4 errors generated. |
---|
977 | Test failed to compile |
---|
978 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std:c++14 ' works. |
---|
979 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
980 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std:c++14 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
981 | ---------- file ----------------------- |
---|
982 | |
---|
983 | #include <iostream> |
---|
984 | #include <memory> |
---|
985 | #include <unordered_map> |
---|
986 | |
---|
987 | #if __cplusplus < 201103L |
---|
988 | #error "Compiler is not in a mode aware of C++11." |
---|
989 | #endif |
---|
990 | |
---|
991 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
992 | #error "On AIX with GNU we need the -pthread flag." |
---|
993 | #endif |
---|
994 | |
---|
995 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
996 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
997 | #endif |
---|
998 | |
---|
999 | class Class |
---|
1000 | { |
---|
1001 | public: |
---|
1002 | int Get() const { return this->Member; } |
---|
1003 | private: |
---|
1004 | int Member = 1; |
---|
1005 | }; |
---|
1006 | int main() |
---|
1007 | { |
---|
1008 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1009 | std::cout << c->Get() << std::endl; |
---|
1010 | return 0; |
---|
1011 | } |
---|
1012 | |
---|
1013 | ------------------------------------------ |
---|
1014 | clang: error: unknown argument: '-std:c++14' |
---|
1015 | Test failed to compile |
---|
1016 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -h ' works. |
---|
1017 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1018 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -h cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1019 | ---------- file ----------------------- |
---|
1020 | |
---|
1021 | #include <iostream> |
---|
1022 | #include <memory> |
---|
1023 | #include <unordered_map> |
---|
1024 | |
---|
1025 | #if __cplusplus < 201103L |
---|
1026 | #error "Compiler is not in a mode aware of C++11." |
---|
1027 | #endif |
---|
1028 | |
---|
1029 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1030 | #error "On AIX with GNU we need the -pthread flag." |
---|
1031 | #endif |
---|
1032 | |
---|
1033 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1034 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1035 | #endif |
---|
1036 | |
---|
1037 | class Class |
---|
1038 | { |
---|
1039 | public: |
---|
1040 | int Get() const { return this->Member; } |
---|
1041 | private: |
---|
1042 | int Member = 1; |
---|
1043 | }; |
---|
1044 | int main() |
---|
1045 | { |
---|
1046 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1047 | std::cout << c->Get() << std::endl; |
---|
1048 | return 0; |
---|
1049 | } |
---|
1050 | |
---|
1051 | ------------------------------------------ |
---|
1052 | clang: error: unknown argument: '-h' |
---|
1053 | Test failed to compile |
---|
1054 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 std=c++14,gnu ' works. |
---|
1055 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1056 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 std=c++14,gnu cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1057 | ---------- file ----------------------- |
---|
1058 | |
---|
1059 | #include <iostream> |
---|
1060 | #include <memory> |
---|
1061 | #include <unordered_map> |
---|
1062 | |
---|
1063 | #if __cplusplus < 201103L |
---|
1064 | #error "Compiler is not in a mode aware of C++11." |
---|
1065 | #endif |
---|
1066 | |
---|
1067 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1068 | #error "On AIX with GNU we need the -pthread flag." |
---|
1069 | #endif |
---|
1070 | |
---|
1071 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1072 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1073 | #endif |
---|
1074 | |
---|
1075 | class Class |
---|
1076 | { |
---|
1077 | public: |
---|
1078 | int Get() const { return this->Member; } |
---|
1079 | private: |
---|
1080 | int Member = 1; |
---|
1081 | }; |
---|
1082 | int main() |
---|
1083 | { |
---|
1084 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1085 | std::cout << c->Get() << std::endl; |
---|
1086 | return 0; |
---|
1087 | } |
---|
1088 | |
---|
1089 | ------------------------------------------ |
---|
1090 | clang: error: no such file or directory: 'std=c++14,gnu' |
---|
1091 | Test failed to compile |
---|
1092 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++14 ' works. |
---|
1093 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1094 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++14 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1095 | ---------- file ----------------------- |
---|
1096 | |
---|
1097 | #include <iostream> |
---|
1098 | #include <memory> |
---|
1099 | #include <unordered_map> |
---|
1100 | |
---|
1101 | #if __cplusplus < 201103L |
---|
1102 | #error "Compiler is not in a mode aware of C++11." |
---|
1103 | #endif |
---|
1104 | |
---|
1105 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1106 | #error "On AIX with GNU we need the -pthread flag." |
---|
1107 | #endif |
---|
1108 | |
---|
1109 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1110 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1111 | #endif |
---|
1112 | |
---|
1113 | class Class |
---|
1114 | { |
---|
1115 | public: |
---|
1116 | int Get() const { return this->Member; } |
---|
1117 | private: |
---|
1118 | int Member = 1; |
---|
1119 | }; |
---|
1120 | int main() |
---|
1121 | { |
---|
1122 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1123 | std::cout << c->Get() << std::endl; |
---|
1124 | return 0; |
---|
1125 | } |
---|
1126 | |
---|
1127 | ------------------------------------------ |
---|
1128 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
1129 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
1130 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
1131 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
1132 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
1133 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
1134 | *__sinp = sinf(__x); |
---|
1135 | ^ |
---|
1136 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
1137 | *__cosp = cosf(__x); |
---|
1138 | ^ |
---|
1139 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
1140 | *__sinp = sin(__x); |
---|
1141 | ^ |
---|
1142 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
1143 | *__cosp = cos(__x); |
---|
1144 | ^ |
---|
1145 | 4 errors generated. |
---|
1146 | Test failed to compile |
---|
1147 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++1y ' works. |
---|
1148 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1149 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++1y cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1150 | ---------- file ----------------------- |
---|
1151 | |
---|
1152 | #include <iostream> |
---|
1153 | #include <memory> |
---|
1154 | #include <unordered_map> |
---|
1155 | |
---|
1156 | #if __cplusplus < 201103L |
---|
1157 | #error "Compiler is not in a mode aware of C++11." |
---|
1158 | #endif |
---|
1159 | |
---|
1160 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1161 | #error "On AIX with GNU we need the -pthread flag." |
---|
1162 | #endif |
---|
1163 | |
---|
1164 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1165 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1166 | #endif |
---|
1167 | |
---|
1168 | class Class |
---|
1169 | { |
---|
1170 | public: |
---|
1171 | int Get() const { return this->Member; } |
---|
1172 | private: |
---|
1173 | int Member = 1; |
---|
1174 | }; |
---|
1175 | int main() |
---|
1176 | { |
---|
1177 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1178 | std::cout << c->Get() << std::endl; |
---|
1179 | return 0; |
---|
1180 | } |
---|
1181 | |
---|
1182 | ------------------------------------------ |
---|
1183 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
1184 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
1185 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
1186 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
1187 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
1188 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
1189 | *__sinp = sinf(__x); |
---|
1190 | ^ |
---|
1191 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
1192 | *__cosp = cosf(__x); |
---|
1193 | ^ |
---|
1194 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
1195 | *__sinp = sin(__x); |
---|
1196 | ^ |
---|
1197 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
1198 | *__cosp = cos(__x); |
---|
1199 | ^ |
---|
1200 | 4 errors generated. |
---|
1201 | Test failed to compile |
---|
1202 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -e ' works. |
---|
1203 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1204 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -e cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1205 | ---------- file ----------------------- |
---|
1206 | |
---|
1207 | #include <iostream> |
---|
1208 | #include <memory> |
---|
1209 | #include <unordered_map> |
---|
1210 | |
---|
1211 | #if __cplusplus < 201103L |
---|
1212 | #error "Compiler is not in a mode aware of C++11." |
---|
1213 | #endif |
---|
1214 | |
---|
1215 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1216 | #error "On AIX with GNU we need the -pthread flag." |
---|
1217 | #endif |
---|
1218 | |
---|
1219 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1220 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1221 | #endif |
---|
1222 | |
---|
1223 | class Class |
---|
1224 | { |
---|
1225 | public: |
---|
1226 | int Get() const { return this->Member; } |
---|
1227 | private: |
---|
1228 | int Member = 1; |
---|
1229 | }; |
---|
1230 | int main() |
---|
1231 | { |
---|
1232 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1233 | std::cout << c->Get() << std::endl; |
---|
1234 | return 0; |
---|
1235 | } |
---|
1236 | |
---|
1237 | ------------------------------------------ |
---|
1238 | clang: error: no input files |
---|
1239 | Test failed to compile |
---|
1240 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -Qstd=c++14 ' works. |
---|
1241 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1242 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -Qstd=c++14 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1243 | ---------- file ----------------------- |
---|
1244 | |
---|
1245 | #include <iostream> |
---|
1246 | #include <memory> |
---|
1247 | #include <unordered_map> |
---|
1248 | |
---|
1249 | #if __cplusplus < 201103L |
---|
1250 | #error "Compiler is not in a mode aware of C++11." |
---|
1251 | #endif |
---|
1252 | |
---|
1253 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1254 | #error "On AIX with GNU we need the -pthread flag." |
---|
1255 | #endif |
---|
1256 | |
---|
1257 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1258 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1259 | #endif |
---|
1260 | |
---|
1261 | class Class |
---|
1262 | { |
---|
1263 | public: |
---|
1264 | int Get() const { return this->Member; } |
---|
1265 | private: |
---|
1266 | int Member = 1; |
---|
1267 | }; |
---|
1268 | int main() |
---|
1269 | { |
---|
1270 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1271 | std::cout << c->Get() << std::endl; |
---|
1272 | return 0; |
---|
1273 | } |
---|
1274 | |
---|
1275 | ------------------------------------------ |
---|
1276 | clang: error: unknown argument: '-Qstd=c++14' |
---|
1277 | Test failed to compile |
---|
1278 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++14 ' works. |
---|
1279 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1280 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++14 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1281 | ---------- file ----------------------- |
---|
1282 | |
---|
1283 | #include <iostream> |
---|
1284 | #include <memory> |
---|
1285 | #include <unordered_map> |
---|
1286 | |
---|
1287 | #if __cplusplus < 201103L |
---|
1288 | #error "Compiler is not in a mode aware of C++11." |
---|
1289 | #endif |
---|
1290 | |
---|
1291 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1292 | #error "On AIX with GNU we need the -pthread flag." |
---|
1293 | #endif |
---|
1294 | |
---|
1295 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1296 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1297 | #endif |
---|
1298 | |
---|
1299 | class Class |
---|
1300 | { |
---|
1301 | public: |
---|
1302 | int Get() const { return this->Member; } |
---|
1303 | private: |
---|
1304 | int Member = 1; |
---|
1305 | }; |
---|
1306 | int main() |
---|
1307 | { |
---|
1308 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1309 | std::cout << c->Get() << std::endl; |
---|
1310 | return 0; |
---|
1311 | } |
---|
1312 | |
---|
1313 | ------------------------------------------ |
---|
1314 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
1315 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
1316 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
1317 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
1318 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
1319 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
1320 | *__sinp = sinf(__x); |
---|
1321 | ^ |
---|
1322 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
1323 | *__cosp = cosf(__x); |
---|
1324 | ^ |
---|
1325 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
1326 | *__sinp = sin(__x); |
---|
1327 | ^ |
---|
1328 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
1329 | *__cosp = cos(__x); |
---|
1330 | ^ |
---|
1331 | 4 errors generated. |
---|
1332 | Test failed to compile |
---|
1333 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++1y ' works. |
---|
1334 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1335 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++1y cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1336 | ---------- file ----------------------- |
---|
1337 | |
---|
1338 | #include <iostream> |
---|
1339 | #include <memory> |
---|
1340 | #include <unordered_map> |
---|
1341 | |
---|
1342 | #if __cplusplus < 201103L |
---|
1343 | #error "Compiler is not in a mode aware of C++11." |
---|
1344 | #endif |
---|
1345 | |
---|
1346 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1347 | #error "On AIX with GNU we need the -pthread flag." |
---|
1348 | #endif |
---|
1349 | |
---|
1350 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1351 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1352 | #endif |
---|
1353 | |
---|
1354 | class Class |
---|
1355 | { |
---|
1356 | public: |
---|
1357 | int Get() const { return this->Member; } |
---|
1358 | private: |
---|
1359 | int Member = 1; |
---|
1360 | }; |
---|
1361 | int main() |
---|
1362 | { |
---|
1363 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1364 | std::cout << c->Get() << std::endl; |
---|
1365 | return 0; |
---|
1366 | } |
---|
1367 | |
---|
1368 | ------------------------------------------ |
---|
1369 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
1370 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
1371 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
1372 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
1373 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
1374 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
1375 | *__sinp = sinf(__x); |
---|
1376 | ^ |
---|
1377 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
1378 | *__cosp = cosf(__x); |
---|
1379 | ^ |
---|
1380 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
1381 | *__sinp = sin(__x); |
---|
1382 | ^ |
---|
1383 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
1384 | *__cosp = cos(__x); |
---|
1385 | ^ |
---|
1386 | 4 errors generated. |
---|
1387 | Test failed to compile |
---|
1388 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std:c++14 ' works. |
---|
1389 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1390 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std:c++14 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1391 | ---------- file ----------------------- |
---|
1392 | |
---|
1393 | #include <iostream> |
---|
1394 | #include <memory> |
---|
1395 | #include <unordered_map> |
---|
1396 | |
---|
1397 | #if __cplusplus < 201103L |
---|
1398 | #error "Compiler is not in a mode aware of C++11." |
---|
1399 | #endif |
---|
1400 | |
---|
1401 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1402 | #error "On AIX with GNU we need the -pthread flag." |
---|
1403 | #endif |
---|
1404 | |
---|
1405 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1406 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1407 | #endif |
---|
1408 | |
---|
1409 | class Class |
---|
1410 | { |
---|
1411 | public: |
---|
1412 | int Get() const { return this->Member; } |
---|
1413 | private: |
---|
1414 | int Member = 1; |
---|
1415 | }; |
---|
1416 | int main() |
---|
1417 | { |
---|
1418 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1419 | std::cout << c->Get() << std::endl; |
---|
1420 | return 0; |
---|
1421 | } |
---|
1422 | |
---|
1423 | ------------------------------------------ |
---|
1424 | clang: error: unknown argument: '-std:c++14' |
---|
1425 | Test failed to compile |
---|
1426 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 --c++14 ' works. |
---|
1427 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1428 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 --c++14 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1429 | ---------- file ----------------------- |
---|
1430 | |
---|
1431 | #include <iostream> |
---|
1432 | #include <memory> |
---|
1433 | #include <unordered_map> |
---|
1434 | |
---|
1435 | #if __cplusplus < 201103L |
---|
1436 | #error "Compiler is not in a mode aware of C++11." |
---|
1437 | #endif |
---|
1438 | |
---|
1439 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1440 | #error "On AIX with GNU we need the -pthread flag." |
---|
1441 | #endif |
---|
1442 | |
---|
1443 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1444 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1445 | #endif |
---|
1446 | |
---|
1447 | class Class |
---|
1448 | { |
---|
1449 | public: |
---|
1450 | int Get() const { return this->Member; } |
---|
1451 | private: |
---|
1452 | int Member = 1; |
---|
1453 | }; |
---|
1454 | int main() |
---|
1455 | { |
---|
1456 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1457 | std::cout << c->Get() << std::endl; |
---|
1458 | return 0; |
---|
1459 | } |
---|
1460 | |
---|
1461 | ------------------------------------------ |
---|
1462 | clang: error: unsupported option '--c++14' |
---|
1463 | Test failed to compile |
---|
1464 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 --gnu_extensions ' works. |
---|
1465 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1466 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 --gnu_extensions cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1467 | ---------- file ----------------------- |
---|
1468 | |
---|
1469 | #include <iostream> |
---|
1470 | #include <memory> |
---|
1471 | #include <unordered_map> |
---|
1472 | |
---|
1473 | #if __cplusplus < 201103L |
---|
1474 | #error "Compiler is not in a mode aware of C++11." |
---|
1475 | #endif |
---|
1476 | |
---|
1477 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1478 | #error "On AIX with GNU we need the -pthread flag." |
---|
1479 | #endif |
---|
1480 | |
---|
1481 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1482 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1483 | #endif |
---|
1484 | |
---|
1485 | class Class |
---|
1486 | { |
---|
1487 | public: |
---|
1488 | int Get() const { return this->Member; } |
---|
1489 | private: |
---|
1490 | int Member = 1; |
---|
1491 | }; |
---|
1492 | int main() |
---|
1493 | { |
---|
1494 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1495 | std::cout << c->Get() << std::endl; |
---|
1496 | return 0; |
---|
1497 | } |
---|
1498 | |
---|
1499 | ------------------------------------------ |
---|
1500 | clang: error: unsupported option '--gnu_extensions' |
---|
1501 | Test failed to compile |
---|
1502 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=c++14 ' works. |
---|
1503 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1504 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=c++14 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1505 | ---------- file ----------------------- |
---|
1506 | |
---|
1507 | #include <iostream> |
---|
1508 | #include <memory> |
---|
1509 | #include <unordered_map> |
---|
1510 | |
---|
1511 | #if __cplusplus < 201103L |
---|
1512 | #error "Compiler is not in a mode aware of C++11." |
---|
1513 | #endif |
---|
1514 | |
---|
1515 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1516 | #error "On AIX with GNU we need the -pthread flag." |
---|
1517 | #endif |
---|
1518 | |
---|
1519 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1520 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1521 | #endif |
---|
1522 | |
---|
1523 | class Class |
---|
1524 | { |
---|
1525 | public: |
---|
1526 | int Get() const { return this->Member; } |
---|
1527 | private: |
---|
1528 | int Member = 1; |
---|
1529 | }; |
---|
1530 | int main() |
---|
1531 | { |
---|
1532 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1533 | std::cout << c->Get() << std::endl; |
---|
1534 | return 0; |
---|
1535 | } |
---|
1536 | |
---|
1537 | ------------------------------------------ |
---|
1538 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
1539 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
1540 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
1541 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
1542 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
1543 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
1544 | *__sinp = sinf(__x); |
---|
1545 | ^ |
---|
1546 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
1547 | *__cosp = cosf(__x); |
---|
1548 | ^ |
---|
1549 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
1550 | *__sinp = sin(__x); |
---|
1551 | ^ |
---|
1552 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
1553 | *__cosp = cos(__x); |
---|
1554 | ^ |
---|
1555 | 4 errors generated. |
---|
1556 | Test failed to compile |
---|
1557 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -qlanglvl=extended1y ' works. |
---|
1558 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1559 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -qlanglvl=extended1y cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1560 | ---------- file ----------------------- |
---|
1561 | |
---|
1562 | #include <iostream> |
---|
1563 | #include <memory> |
---|
1564 | #include <unordered_map> |
---|
1565 | |
---|
1566 | #if __cplusplus < 201103L |
---|
1567 | #error "Compiler is not in a mode aware of C++11." |
---|
1568 | #endif |
---|
1569 | |
---|
1570 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1571 | #error "On AIX with GNU we need the -pthread flag." |
---|
1572 | #endif |
---|
1573 | |
---|
1574 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1575 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1576 | #endif |
---|
1577 | |
---|
1578 | class Class |
---|
1579 | { |
---|
1580 | public: |
---|
1581 | int Get() const { return this->Member; } |
---|
1582 | private: |
---|
1583 | int Member = 1; |
---|
1584 | }; |
---|
1585 | int main() |
---|
1586 | { |
---|
1587 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1588 | std::cout << c->Get() << std::endl; |
---|
1589 | return 0; |
---|
1590 | } |
---|
1591 | |
---|
1592 | ------------------------------------------ |
---|
1593 | clang: error: unknown argument: '-qlanglvl=extended1y' |
---|
1594 | Test failed to compile |
---|
1595 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++1y ' works. |
---|
1596 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1597 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++1y cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1598 | ---------- file ----------------------- |
---|
1599 | |
---|
1600 | #include <iostream> |
---|
1601 | #include <memory> |
---|
1602 | #include <unordered_map> |
---|
1603 | |
---|
1604 | #if __cplusplus < 201103L |
---|
1605 | #error "Compiler is not in a mode aware of C++11." |
---|
1606 | #endif |
---|
1607 | |
---|
1608 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1609 | #error "On AIX with GNU we need the -pthread flag." |
---|
1610 | #endif |
---|
1611 | |
---|
1612 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1613 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1614 | #endif |
---|
1615 | |
---|
1616 | class Class |
---|
1617 | { |
---|
1618 | public: |
---|
1619 | int Get() const { return this->Member; } |
---|
1620 | private: |
---|
1621 | int Member = 1; |
---|
1622 | }; |
---|
1623 | int main() |
---|
1624 | { |
---|
1625 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1626 | std::cout << c->Get() << std::endl; |
---|
1627 | return 0; |
---|
1628 | } |
---|
1629 | |
---|
1630 | ------------------------------------------ |
---|
1631 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
1632 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
1633 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
1634 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
1635 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
1636 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
1637 | *__sinp = sinf(__x); |
---|
1638 | ^ |
---|
1639 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
1640 | *__cosp = cosf(__x); |
---|
1641 | ^ |
---|
1642 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
1643 | *__sinp = sin(__x); |
---|
1644 | ^ |
---|
1645 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
1646 | *__cosp = cos(__x); |
---|
1647 | ^ |
---|
1648 | 4 errors generated. |
---|
1649 | Test failed to compile |
---|
1650 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++14 ' works. |
---|
1651 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1652 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++14 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1653 | ---------- file ----------------------- |
---|
1654 | |
---|
1655 | #include <iostream> |
---|
1656 | #include <memory> |
---|
1657 | #include <unordered_map> |
---|
1658 | |
---|
1659 | #if __cplusplus < 201103L |
---|
1660 | #error "Compiler is not in a mode aware of C++11." |
---|
1661 | #endif |
---|
1662 | |
---|
1663 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1664 | #error "On AIX with GNU we need the -pthread flag." |
---|
1665 | #endif |
---|
1666 | |
---|
1667 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1668 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1669 | #endif |
---|
1670 | |
---|
1671 | class Class |
---|
1672 | { |
---|
1673 | public: |
---|
1674 | int Get() const { return this->Member; } |
---|
1675 | private: |
---|
1676 | int Member = 1; |
---|
1677 | }; |
---|
1678 | int main() |
---|
1679 | { |
---|
1680 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1681 | std::cout << c->Get() << std::endl; |
---|
1682 | return 0; |
---|
1683 | } |
---|
1684 | |
---|
1685 | ------------------------------------------ |
---|
1686 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
1687 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
1688 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
1689 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
1690 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
1691 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
1692 | *__sinp = sinf(__x); |
---|
1693 | ^ |
---|
1694 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
1695 | *__cosp = cosf(__x); |
---|
1696 | ^ |
---|
1697 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
1698 | *__sinp = sin(__x); |
---|
1699 | ^ |
---|
1700 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
1701 | *__cosp = cos(__x); |
---|
1702 | ^ |
---|
1703 | 4 errors generated. |
---|
1704 | Test failed to compile |
---|
1705 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 ' works. |
---|
1706 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1707 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1708 | ---------- file ----------------------- |
---|
1709 | |
---|
1710 | #include <iostream> |
---|
1711 | #include <memory> |
---|
1712 | #include <unordered_map> |
---|
1713 | |
---|
1714 | #if __cplusplus < 201103L |
---|
1715 | #error "Compiler is not in a mode aware of C++11." |
---|
1716 | #endif |
---|
1717 | |
---|
1718 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1719 | #error "On AIX with GNU we need the -pthread flag." |
---|
1720 | #endif |
---|
1721 | |
---|
1722 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1723 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1724 | #endif |
---|
1725 | |
---|
1726 | class Class |
---|
1727 | { |
---|
1728 | public: |
---|
1729 | int Get() const { return this->Member; } |
---|
1730 | private: |
---|
1731 | int Member = 1; |
---|
1732 | }; |
---|
1733 | int main() |
---|
1734 | { |
---|
1735 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1736 | std::cout << c->Get() << std::endl; |
---|
1737 | return 0; |
---|
1738 | } |
---|
1739 | |
---|
1740 | ------------------------------------------ |
---|
1741 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
1742 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
1743 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
1744 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
1745 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
1746 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
1747 | *__sinp = sinf(__x); |
---|
1748 | ^ |
---|
1749 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
1750 | *__cosp = cosf(__x); |
---|
1751 | ^ |
---|
1752 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
1753 | *__sinp = sin(__x); |
---|
1754 | ^ |
---|
1755 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
1756 | *__cosp = cos(__x); |
---|
1757 | ^ |
---|
1758 | cmake_bootstrap_45609_test.cxx:7:2: error: "Compiler is not in a mode aware of C++11." |
---|
1759 | #error "Compiler is not in a mode aware of C++11." |
---|
1760 | ^ |
---|
1761 | cmake_bootstrap_45609_test.cxx:23:14: warning: in-class initialization of non-static data member is a C++11 extension [-Wc++11-extensions] |
---|
1762 | int Member = 1; |
---|
1763 | ^ |
---|
1764 | cmake_bootstrap_45609_test.cxx:27:3: warning: 'auto' type specifier is a C++11 extension [-Wc++11-extensions] |
---|
1765 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1766 | ^ |
---|
1767 | 2 warnings and 5 errors generated. |
---|
1768 | Test failed to compile |
---|
1769 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++11 ' works. |
---|
1770 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1771 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++11 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1772 | ---------- file ----------------------- |
---|
1773 | |
---|
1774 | #include <iostream> |
---|
1775 | #include <memory> |
---|
1776 | #include <unordered_map> |
---|
1777 | |
---|
1778 | #if __cplusplus < 201103L |
---|
1779 | #error "Compiler is not in a mode aware of C++11." |
---|
1780 | #endif |
---|
1781 | |
---|
1782 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1783 | #error "On AIX with GNU we need the -pthread flag." |
---|
1784 | #endif |
---|
1785 | |
---|
1786 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1787 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1788 | #endif |
---|
1789 | |
---|
1790 | class Class |
---|
1791 | { |
---|
1792 | public: |
---|
1793 | int Get() const { return this->Member; } |
---|
1794 | private: |
---|
1795 | int Member = 1; |
---|
1796 | }; |
---|
1797 | int main() |
---|
1798 | { |
---|
1799 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1800 | std::cout << c->Get() << std::endl; |
---|
1801 | return 0; |
---|
1802 | } |
---|
1803 | |
---|
1804 | ------------------------------------------ |
---|
1805 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
1806 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
1807 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
1808 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
1809 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
1810 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
1811 | *__sinp = sinf(__x); |
---|
1812 | ^ |
---|
1813 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
1814 | *__cosp = cosf(__x); |
---|
1815 | ^ |
---|
1816 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
1817 | *__sinp = sin(__x); |
---|
1818 | ^ |
---|
1819 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
1820 | *__cosp = cos(__x); |
---|
1821 | ^ |
---|
1822 | 4 errors generated. |
---|
1823 | Test failed to compile |
---|
1824 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++11 ' works. |
---|
1825 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1826 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++11 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1827 | ---------- file ----------------------- |
---|
1828 | |
---|
1829 | #include <iostream> |
---|
1830 | #include <memory> |
---|
1831 | #include <unordered_map> |
---|
1832 | |
---|
1833 | #if __cplusplus < 201103L |
---|
1834 | #error "Compiler is not in a mode aware of C++11." |
---|
1835 | #endif |
---|
1836 | |
---|
1837 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1838 | #error "On AIX with GNU we need the -pthread flag." |
---|
1839 | #endif |
---|
1840 | |
---|
1841 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1842 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1843 | #endif |
---|
1844 | |
---|
1845 | class Class |
---|
1846 | { |
---|
1847 | public: |
---|
1848 | int Get() const { return this->Member; } |
---|
1849 | private: |
---|
1850 | int Member = 1; |
---|
1851 | }; |
---|
1852 | int main() |
---|
1853 | { |
---|
1854 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1855 | std::cout << c->Get() << std::endl; |
---|
1856 | return 0; |
---|
1857 | } |
---|
1858 | |
---|
1859 | ------------------------------------------ |
---|
1860 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
1861 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
1862 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
1863 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
1864 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
1865 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
1866 | *__sinp = sinf(__x); |
---|
1867 | ^ |
---|
1868 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
1869 | *__cosp = cosf(__x); |
---|
1870 | ^ |
---|
1871 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
1872 | *__sinp = sin(__x); |
---|
1873 | ^ |
---|
1874 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
1875 | *__cosp = cos(__x); |
---|
1876 | ^ |
---|
1877 | 4 errors generated. |
---|
1878 | Test failed to compile |
---|
1879 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++0x ' works. |
---|
1880 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1881 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++0x cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1882 | ---------- file ----------------------- |
---|
1883 | |
---|
1884 | #include <iostream> |
---|
1885 | #include <memory> |
---|
1886 | #include <unordered_map> |
---|
1887 | |
---|
1888 | #if __cplusplus < 201103L |
---|
1889 | #error "Compiler is not in a mode aware of C++11." |
---|
1890 | #endif |
---|
1891 | |
---|
1892 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1893 | #error "On AIX with GNU we need the -pthread flag." |
---|
1894 | #endif |
---|
1895 | |
---|
1896 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1897 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1898 | #endif |
---|
1899 | |
---|
1900 | class Class |
---|
1901 | { |
---|
1902 | public: |
---|
1903 | int Get() const { return this->Member; } |
---|
1904 | private: |
---|
1905 | int Member = 1; |
---|
1906 | }; |
---|
1907 | int main() |
---|
1908 | { |
---|
1909 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1910 | std::cout << c->Get() << std::endl; |
---|
1911 | return 0; |
---|
1912 | } |
---|
1913 | |
---|
1914 | ------------------------------------------ |
---|
1915 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
1916 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
1917 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
1918 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
1919 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
1920 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
1921 | *__sinp = sinf(__x); |
---|
1922 | ^ |
---|
1923 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
1924 | *__cosp = cosf(__x); |
---|
1925 | ^ |
---|
1926 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
1927 | *__sinp = sin(__x); |
---|
1928 | ^ |
---|
1929 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
1930 | *__cosp = cos(__x); |
---|
1931 | ^ |
---|
1932 | 4 errors generated. |
---|
1933 | Test failed to compile |
---|
1934 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++14 ' works. |
---|
1935 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1936 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++14 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1937 | ---------- file ----------------------- |
---|
1938 | |
---|
1939 | #include <iostream> |
---|
1940 | #include <memory> |
---|
1941 | #include <unordered_map> |
---|
1942 | |
---|
1943 | #if __cplusplus < 201103L |
---|
1944 | #error "Compiler is not in a mode aware of C++11." |
---|
1945 | #endif |
---|
1946 | |
---|
1947 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
1948 | #error "On AIX with GNU we need the -pthread flag." |
---|
1949 | #endif |
---|
1950 | |
---|
1951 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1952 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
1953 | #endif |
---|
1954 | |
---|
1955 | class Class |
---|
1956 | { |
---|
1957 | public: |
---|
1958 | int Get() const { return this->Member; } |
---|
1959 | private: |
---|
1960 | int Member = 1; |
---|
1961 | }; |
---|
1962 | int main() |
---|
1963 | { |
---|
1964 | auto const c = std::unique_ptr<Class>(new Class); |
---|
1965 | std::cout << c->Get() << std::endl; |
---|
1966 | return 0; |
---|
1967 | } |
---|
1968 | |
---|
1969 | ------------------------------------------ |
---|
1970 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
1971 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
1972 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
1973 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
1974 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
1975 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
1976 | *__sinp = sinf(__x); |
---|
1977 | ^ |
---|
1978 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
1979 | *__cosp = cosf(__x); |
---|
1980 | ^ |
---|
1981 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
1982 | *__sinp = sin(__x); |
---|
1983 | ^ |
---|
1984 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
1985 | *__cosp = cos(__x); |
---|
1986 | ^ |
---|
1987 | 4 errors generated. |
---|
1988 | Test failed to compile |
---|
1989 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -h ' works. |
---|
1990 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
1991 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -h cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
1992 | ---------- file ----------------------- |
---|
1993 | |
---|
1994 | #include <iostream> |
---|
1995 | #include <memory> |
---|
1996 | #include <unordered_map> |
---|
1997 | |
---|
1998 | #if __cplusplus < 201103L |
---|
1999 | #error "Compiler is not in a mode aware of C++11." |
---|
2000 | #endif |
---|
2001 | |
---|
2002 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
2003 | #error "On AIX with GNU we need the -pthread flag." |
---|
2004 | #endif |
---|
2005 | |
---|
2006 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
2007 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
2008 | #endif |
---|
2009 | |
---|
2010 | class Class |
---|
2011 | { |
---|
2012 | public: |
---|
2013 | int Get() const { return this->Member; } |
---|
2014 | private: |
---|
2015 | int Member = 1; |
---|
2016 | }; |
---|
2017 | int main() |
---|
2018 | { |
---|
2019 | auto const c = std::unique_ptr<Class>(new Class); |
---|
2020 | std::cout << c->Get() << std::endl; |
---|
2021 | return 0; |
---|
2022 | } |
---|
2023 | |
---|
2024 | ------------------------------------------ |
---|
2025 | clang: error: unknown argument: '-h' |
---|
2026 | Test failed to compile |
---|
2027 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 std=c++11,gnu ' works. |
---|
2028 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
2029 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 std=c++11,gnu cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
2030 | ---------- file ----------------------- |
---|
2031 | |
---|
2032 | #include <iostream> |
---|
2033 | #include <memory> |
---|
2034 | #include <unordered_map> |
---|
2035 | |
---|
2036 | #if __cplusplus < 201103L |
---|
2037 | #error "Compiler is not in a mode aware of C++11." |
---|
2038 | #endif |
---|
2039 | |
---|
2040 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
2041 | #error "On AIX with GNU we need the -pthread flag." |
---|
2042 | #endif |
---|
2043 | |
---|
2044 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
2045 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
2046 | #endif |
---|
2047 | |
---|
2048 | class Class |
---|
2049 | { |
---|
2050 | public: |
---|
2051 | int Get() const { return this->Member; } |
---|
2052 | private: |
---|
2053 | int Member = 1; |
---|
2054 | }; |
---|
2055 | int main() |
---|
2056 | { |
---|
2057 | auto const c = std::unique_ptr<Class>(new Class); |
---|
2058 | std::cout << c->Get() << std::endl; |
---|
2059 | return 0; |
---|
2060 | } |
---|
2061 | |
---|
2062 | ------------------------------------------ |
---|
2063 | clang: error: no such file or directory: 'std=c++11,gnu' |
---|
2064 | Test failed to compile |
---|
2065 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++11 ' works. |
---|
2066 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
2067 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++11 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
2068 | ---------- file ----------------------- |
---|
2069 | |
---|
2070 | #include <iostream> |
---|
2071 | #include <memory> |
---|
2072 | #include <unordered_map> |
---|
2073 | |
---|
2074 | #if __cplusplus < 201103L |
---|
2075 | #error "Compiler is not in a mode aware of C++11." |
---|
2076 | #endif |
---|
2077 | |
---|
2078 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
2079 | #error "On AIX with GNU we need the -pthread flag." |
---|
2080 | #endif |
---|
2081 | |
---|
2082 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
2083 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
2084 | #endif |
---|
2085 | |
---|
2086 | class Class |
---|
2087 | { |
---|
2088 | public: |
---|
2089 | int Get() const { return this->Member; } |
---|
2090 | private: |
---|
2091 | int Member = 1; |
---|
2092 | }; |
---|
2093 | int main() |
---|
2094 | { |
---|
2095 | auto const c = std::unique_ptr<Class>(new Class); |
---|
2096 | std::cout << c->Get() << std::endl; |
---|
2097 | return 0; |
---|
2098 | } |
---|
2099 | |
---|
2100 | ------------------------------------------ |
---|
2101 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
2102 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
2103 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
2104 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
2105 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
2106 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
2107 | *__sinp = sinf(__x); |
---|
2108 | ^ |
---|
2109 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
2110 | *__cosp = cosf(__x); |
---|
2111 | ^ |
---|
2112 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
2113 | *__sinp = sin(__x); |
---|
2114 | ^ |
---|
2115 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
2116 | *__cosp = cos(__x); |
---|
2117 | ^ |
---|
2118 | 4 errors generated. |
---|
2119 | Test failed to compile |
---|
2120 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++0x ' works. |
---|
2121 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
2122 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++0x cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
2123 | ---------- file ----------------------- |
---|
2124 | |
---|
2125 | #include <iostream> |
---|
2126 | #include <memory> |
---|
2127 | #include <unordered_map> |
---|
2128 | |
---|
2129 | #if __cplusplus < 201103L |
---|
2130 | #error "Compiler is not in a mode aware of C++11." |
---|
2131 | #endif |
---|
2132 | |
---|
2133 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
2134 | #error "On AIX with GNU we need the -pthread flag." |
---|
2135 | #endif |
---|
2136 | |
---|
2137 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
2138 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
2139 | #endif |
---|
2140 | |
---|
2141 | class Class |
---|
2142 | { |
---|
2143 | public: |
---|
2144 | int Get() const { return this->Member; } |
---|
2145 | private: |
---|
2146 | int Member = 1; |
---|
2147 | }; |
---|
2148 | int main() |
---|
2149 | { |
---|
2150 | auto const c = std::unique_ptr<Class>(new Class); |
---|
2151 | std::cout << c->Get() << std::endl; |
---|
2152 | return 0; |
---|
2153 | } |
---|
2154 | |
---|
2155 | ------------------------------------------ |
---|
2156 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
2157 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
2158 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
2159 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
2160 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
2161 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
2162 | *__sinp = sinf(__x); |
---|
2163 | ^ |
---|
2164 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
2165 | *__cosp = cosf(__x); |
---|
2166 | ^ |
---|
2167 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
2168 | *__sinp = sin(__x); |
---|
2169 | ^ |
---|
2170 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
2171 | *__cosp = cos(__x); |
---|
2172 | ^ |
---|
2173 | 4 errors generated. |
---|
2174 | Test failed to compile |
---|
2175 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -e ' works. |
---|
2176 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
2177 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -e cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
2178 | ---------- file ----------------------- |
---|
2179 | |
---|
2180 | #include <iostream> |
---|
2181 | #include <memory> |
---|
2182 | #include <unordered_map> |
---|
2183 | |
---|
2184 | #if __cplusplus < 201103L |
---|
2185 | #error "Compiler is not in a mode aware of C++11." |
---|
2186 | #endif |
---|
2187 | |
---|
2188 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
2189 | #error "On AIX with GNU we need the -pthread flag." |
---|
2190 | #endif |
---|
2191 | |
---|
2192 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
2193 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
2194 | #endif |
---|
2195 | |
---|
2196 | class Class |
---|
2197 | { |
---|
2198 | public: |
---|
2199 | int Get() const { return this->Member; } |
---|
2200 | private: |
---|
2201 | int Member = 1; |
---|
2202 | }; |
---|
2203 | int main() |
---|
2204 | { |
---|
2205 | auto const c = std::unique_ptr<Class>(new Class); |
---|
2206 | std::cout << c->Get() << std::endl; |
---|
2207 | return 0; |
---|
2208 | } |
---|
2209 | |
---|
2210 | ------------------------------------------ |
---|
2211 | clang: error: no input files |
---|
2212 | Test failed to compile |
---|
2213 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -Qstd=c++11 ' works. |
---|
2214 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
2215 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -Qstd=c++11 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
2216 | ---------- file ----------------------- |
---|
2217 | |
---|
2218 | #include <iostream> |
---|
2219 | #include <memory> |
---|
2220 | #include <unordered_map> |
---|
2221 | |
---|
2222 | #if __cplusplus < 201103L |
---|
2223 | #error "Compiler is not in a mode aware of C++11." |
---|
2224 | #endif |
---|
2225 | |
---|
2226 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
2227 | #error "On AIX with GNU we need the -pthread flag." |
---|
2228 | #endif |
---|
2229 | |
---|
2230 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
2231 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
2232 | #endif |
---|
2233 | |
---|
2234 | class Class |
---|
2235 | { |
---|
2236 | public: |
---|
2237 | int Get() const { return this->Member; } |
---|
2238 | private: |
---|
2239 | int Member = 1; |
---|
2240 | }; |
---|
2241 | int main() |
---|
2242 | { |
---|
2243 | auto const c = std::unique_ptr<Class>(new Class); |
---|
2244 | std::cout << c->Get() << std::endl; |
---|
2245 | return 0; |
---|
2246 | } |
---|
2247 | |
---|
2248 | ------------------------------------------ |
---|
2249 | clang: error: unknown argument: '-Qstd=c++11' |
---|
2250 | Test failed to compile |
---|
2251 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -Qstd=c++0x ' works. |
---|
2252 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
2253 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -Qstd=c++0x cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
2254 | ---------- file ----------------------- |
---|
2255 | |
---|
2256 | #include <iostream> |
---|
2257 | #include <memory> |
---|
2258 | #include <unordered_map> |
---|
2259 | |
---|
2260 | #if __cplusplus < 201103L |
---|
2261 | #error "Compiler is not in a mode aware of C++11." |
---|
2262 | #endif |
---|
2263 | |
---|
2264 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
2265 | #error "On AIX with GNU we need the -pthread flag." |
---|
2266 | #endif |
---|
2267 | |
---|
2268 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
2269 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
2270 | #endif |
---|
2271 | |
---|
2272 | class Class |
---|
2273 | { |
---|
2274 | public: |
---|
2275 | int Get() const { return this->Member; } |
---|
2276 | private: |
---|
2277 | int Member = 1; |
---|
2278 | }; |
---|
2279 | int main() |
---|
2280 | { |
---|
2281 | auto const c = std::unique_ptr<Class>(new Class); |
---|
2282 | std::cout << c->Get() << std::endl; |
---|
2283 | return 0; |
---|
2284 | } |
---|
2285 | |
---|
2286 | ------------------------------------------ |
---|
2287 | clang: error: unknown argument: '-Qstd=c++0x' |
---|
2288 | Test failed to compile |
---|
2289 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++11 ' works. |
---|
2290 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
2291 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++11 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
2292 | ---------- file ----------------------- |
---|
2293 | |
---|
2294 | #include <iostream> |
---|
2295 | #include <memory> |
---|
2296 | #include <unordered_map> |
---|
2297 | |
---|
2298 | #if __cplusplus < 201103L |
---|
2299 | #error "Compiler is not in a mode aware of C++11." |
---|
2300 | #endif |
---|
2301 | |
---|
2302 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
2303 | #error "On AIX with GNU we need the -pthread flag." |
---|
2304 | #endif |
---|
2305 | |
---|
2306 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
2307 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
2308 | #endif |
---|
2309 | |
---|
2310 | class Class |
---|
2311 | { |
---|
2312 | public: |
---|
2313 | int Get() const { return this->Member; } |
---|
2314 | private: |
---|
2315 | int Member = 1; |
---|
2316 | }; |
---|
2317 | int main() |
---|
2318 | { |
---|
2319 | auto const c = std::unique_ptr<Class>(new Class); |
---|
2320 | std::cout << c->Get() << std::endl; |
---|
2321 | return 0; |
---|
2322 | } |
---|
2323 | |
---|
2324 | ------------------------------------------ |
---|
2325 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
2326 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
2327 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
2328 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
2329 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
2330 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
2331 | *__sinp = sinf(__x); |
---|
2332 | ^ |
---|
2333 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
2334 | *__cosp = cosf(__x); |
---|
2335 | ^ |
---|
2336 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
2337 | *__sinp = sin(__x); |
---|
2338 | ^ |
---|
2339 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
2340 | *__cosp = cos(__x); |
---|
2341 | ^ |
---|
2342 | 4 errors generated. |
---|
2343 | Test failed to compile |
---|
2344 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++0x ' works. |
---|
2345 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
2346 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++0x cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
2347 | ---------- file ----------------------- |
---|
2348 | |
---|
2349 | #include <iostream> |
---|
2350 | #include <memory> |
---|
2351 | #include <unordered_map> |
---|
2352 | |
---|
2353 | #if __cplusplus < 201103L |
---|
2354 | #error "Compiler is not in a mode aware of C++11." |
---|
2355 | #endif |
---|
2356 | |
---|
2357 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
2358 | #error "On AIX with GNU we need the -pthread flag." |
---|
2359 | #endif |
---|
2360 | |
---|
2361 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
2362 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
2363 | #endif |
---|
2364 | |
---|
2365 | class Class |
---|
2366 | { |
---|
2367 | public: |
---|
2368 | int Get() const { return this->Member; } |
---|
2369 | private: |
---|
2370 | int Member = 1; |
---|
2371 | }; |
---|
2372 | int main() |
---|
2373 | { |
---|
2374 | auto const c = std::unique_ptr<Class>(new Class); |
---|
2375 | std::cout << c->Get() << std::endl; |
---|
2376 | return 0; |
---|
2377 | } |
---|
2378 | |
---|
2379 | ------------------------------------------ |
---|
2380 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
2381 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
2382 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
2383 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
2384 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
2385 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
2386 | *__sinp = sinf(__x); |
---|
2387 | ^ |
---|
2388 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
2389 | *__cosp = cosf(__x); |
---|
2390 | ^ |
---|
2391 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
2392 | *__sinp = sin(__x); |
---|
2393 | ^ |
---|
2394 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
2395 | *__cosp = cos(__x); |
---|
2396 | ^ |
---|
2397 | 4 errors generated. |
---|
2398 | Test failed to compile |
---|
2399 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 --c++11 ' works. |
---|
2400 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
2401 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 --c++11 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
2402 | ---------- file ----------------------- |
---|
2403 | |
---|
2404 | #include <iostream> |
---|
2405 | #include <memory> |
---|
2406 | #include <unordered_map> |
---|
2407 | |
---|
2408 | #if __cplusplus < 201103L |
---|
2409 | #error "Compiler is not in a mode aware of C++11." |
---|
2410 | #endif |
---|
2411 | |
---|
2412 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
2413 | #error "On AIX with GNU we need the -pthread flag." |
---|
2414 | #endif |
---|
2415 | |
---|
2416 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
2417 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
2418 | #endif |
---|
2419 | |
---|
2420 | class Class |
---|
2421 | { |
---|
2422 | public: |
---|
2423 | int Get() const { return this->Member; } |
---|
2424 | private: |
---|
2425 | int Member = 1; |
---|
2426 | }; |
---|
2427 | int main() |
---|
2428 | { |
---|
2429 | auto const c = std::unique_ptr<Class>(new Class); |
---|
2430 | std::cout << c->Get() << std::endl; |
---|
2431 | return 0; |
---|
2432 | } |
---|
2433 | |
---|
2434 | ------------------------------------------ |
---|
2435 | clang: error: unsupported option '--c++11' |
---|
2436 | Test failed to compile |
---|
2437 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 --gnu_extensions ' works. |
---|
2438 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
2439 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 --gnu_extensions cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
2440 | ---------- file ----------------------- |
---|
2441 | |
---|
2442 | #include <iostream> |
---|
2443 | #include <memory> |
---|
2444 | #include <unordered_map> |
---|
2445 | |
---|
2446 | #if __cplusplus < 201103L |
---|
2447 | #error "Compiler is not in a mode aware of C++11." |
---|
2448 | #endif |
---|
2449 | |
---|
2450 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
2451 | #error "On AIX with GNU we need the -pthread flag." |
---|
2452 | #endif |
---|
2453 | |
---|
2454 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
2455 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
2456 | #endif |
---|
2457 | |
---|
2458 | class Class |
---|
2459 | { |
---|
2460 | public: |
---|
2461 | int Get() const { return this->Member; } |
---|
2462 | private: |
---|
2463 | int Member = 1; |
---|
2464 | }; |
---|
2465 | int main() |
---|
2466 | { |
---|
2467 | auto const c = std::unique_ptr<Class>(new Class); |
---|
2468 | std::cout << c->Get() << std::endl; |
---|
2469 | return 0; |
---|
2470 | } |
---|
2471 | |
---|
2472 | ------------------------------------------ |
---|
2473 | clang: error: unsupported option '--gnu_extensions' |
---|
2474 | Test failed to compile |
---|
2475 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=c++11 ' works. |
---|
2476 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
2477 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=c++11 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
2478 | ---------- file ----------------------- |
---|
2479 | |
---|
2480 | #include <iostream> |
---|
2481 | #include <memory> |
---|
2482 | #include <unordered_map> |
---|
2483 | |
---|
2484 | #if __cplusplus < 201103L |
---|
2485 | #error "Compiler is not in a mode aware of C++11." |
---|
2486 | #endif |
---|
2487 | |
---|
2488 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
2489 | #error "On AIX with GNU we need the -pthread flag." |
---|
2490 | #endif |
---|
2491 | |
---|
2492 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
2493 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
2494 | #endif |
---|
2495 | |
---|
2496 | class Class |
---|
2497 | { |
---|
2498 | public: |
---|
2499 | int Get() const { return this->Member; } |
---|
2500 | private: |
---|
2501 | int Member = 1; |
---|
2502 | }; |
---|
2503 | int main() |
---|
2504 | { |
---|
2505 | auto const c = std::unique_ptr<Class>(new Class); |
---|
2506 | std::cout << c->Get() << std::endl; |
---|
2507 | return 0; |
---|
2508 | } |
---|
2509 | |
---|
2510 | ------------------------------------------ |
---|
2511 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
2512 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
2513 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
2514 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
2515 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
2516 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
2517 | *__sinp = sinf(__x); |
---|
2518 | ^ |
---|
2519 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
2520 | *__cosp = cosf(__x); |
---|
2521 | ^ |
---|
2522 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
2523 | *__sinp = sin(__x); |
---|
2524 | ^ |
---|
2525 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
2526 | *__cosp = cos(__x); |
---|
2527 | ^ |
---|
2528 | 4 errors generated. |
---|
2529 | Test failed to compile |
---|
2530 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -qlanglvl=extended0x ' works. |
---|
2531 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
2532 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -qlanglvl=extended0x cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
2533 | ---------- file ----------------------- |
---|
2534 | |
---|
2535 | #include <iostream> |
---|
2536 | #include <memory> |
---|
2537 | #include <unordered_map> |
---|
2538 | |
---|
2539 | #if __cplusplus < 201103L |
---|
2540 | #error "Compiler is not in a mode aware of C++11." |
---|
2541 | #endif |
---|
2542 | |
---|
2543 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
2544 | #error "On AIX with GNU we need the -pthread flag." |
---|
2545 | #endif |
---|
2546 | |
---|
2547 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
2548 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
2549 | #endif |
---|
2550 | |
---|
2551 | class Class |
---|
2552 | { |
---|
2553 | public: |
---|
2554 | int Get() const { return this->Member; } |
---|
2555 | private: |
---|
2556 | int Member = 1; |
---|
2557 | }; |
---|
2558 | int main() |
---|
2559 | { |
---|
2560 | auto const c = std::unique_ptr<Class>(new Class); |
---|
2561 | std::cout << c->Get() << std::endl; |
---|
2562 | return 0; |
---|
2563 | } |
---|
2564 | |
---|
2565 | ------------------------------------------ |
---|
2566 | clang: error: unknown argument: '-qlanglvl=extended0x' |
---|
2567 | Test failed to compile |
---|
2568 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -qlanglvl=extended0x ' works. |
---|
2569 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
2570 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -qlanglvl=extended0x cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
2571 | ---------- file ----------------------- |
---|
2572 | |
---|
2573 | #include <iostream> |
---|
2574 | #include <memory> |
---|
2575 | #include <unordered_map> |
---|
2576 | |
---|
2577 | #if __cplusplus < 201103L |
---|
2578 | #error "Compiler is not in a mode aware of C++11." |
---|
2579 | #endif |
---|
2580 | |
---|
2581 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
2582 | #error "On AIX with GNU we need the -pthread flag." |
---|
2583 | #endif |
---|
2584 | |
---|
2585 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
2586 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
2587 | #endif |
---|
2588 | |
---|
2589 | class Class |
---|
2590 | { |
---|
2591 | public: |
---|
2592 | int Get() const { return this->Member; } |
---|
2593 | private: |
---|
2594 | int Member = 1; |
---|
2595 | }; |
---|
2596 | int main() |
---|
2597 | { |
---|
2598 | auto const c = std::unique_ptr<Class>(new Class); |
---|
2599 | std::cout << c->Get() << std::endl; |
---|
2600 | return 0; |
---|
2601 | } |
---|
2602 | |
---|
2603 | ------------------------------------------ |
---|
2604 | clang: error: unknown argument: '-qlanglvl=extended0x' |
---|
2605 | Test failed to compile |
---|
2606 | Checking whether '/opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++11 ' works. |
---|
2607 | Try: /opt/local/bin/clang++-mp-3.7 |
---|
2608 | Line: /opt/local/bin/clang++-mp-3.7 -pipe -Os -stdlib=libc++ -arch x86_64 -std=gnu++11 cmake_bootstrap_45609_test.cxx -o cmake_bootstrap_45609_test |
---|
2609 | ---------- file ----------------------- |
---|
2610 | |
---|
2611 | #include <iostream> |
---|
2612 | #include <memory> |
---|
2613 | #include <unordered_map> |
---|
2614 | |
---|
2615 | #if __cplusplus < 201103L |
---|
2616 | #error "Compiler is not in a mode aware of C++11." |
---|
2617 | #endif |
---|
2618 | |
---|
2619 | #if defined(_AIX) && defined(__GNUC__) && !defined(_THREAD_SAFE) |
---|
2620 | #error "On AIX with GNU we need the -pthread flag." |
---|
2621 | #endif |
---|
2622 | |
---|
2623 | #if defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
2624 | #error "SunPro <= 5.13 mode not supported due to bug in move semantics." |
---|
2625 | #endif |
---|
2626 | |
---|
2627 | class Class |
---|
2628 | { |
---|
2629 | public: |
---|
2630 | int Get() const { return this->Member; } |
---|
2631 | private: |
---|
2632 | int Member = 1; |
---|
2633 | }; |
---|
2634 | int main() |
---|
2635 | { |
---|
2636 | auto const c = std::unique_ptr<Class>(new Class); |
---|
2637 | std::cout << c->Get() << std::endl; |
---|
2638 | return 0; |
---|
2639 | } |
---|
2640 | |
---|
2641 | ------------------------------------------ |
---|
2642 | In file included from cmake_bootstrap_45609_test.cxx:4: |
---|
2643 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/unordered_map:369: |
---|
2644 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/__hash_table:19: |
---|
2645 | In file included from /opt/local/include/LegacySupport/cmath:54: |
---|
2646 | In file included from /opt/local/libexec/llvm-3.7/bin/../include/c++/v1/cmath:301: |
---|
2647 | /opt/local/include/LegacySupport/math.h:82:13: error: use of undeclared identifier 'sinf' |
---|
2648 | *__sinp = sinf(__x); |
---|
2649 | ^ |
---|
2650 | /opt/local/include/LegacySupport/math.h:83:13: error: use of undeclared identifier 'cosf' |
---|
2651 | *__cosp = cosf(__x); |
---|
2652 | ^ |
---|
2653 | /opt/local/include/LegacySupport/math.h:86:13: error: use of undeclared identifier 'sin' |
---|
2654 | *__sinp = sin(__x); |
---|
2655 | ^ |
---|
2656 | /opt/local/include/LegacySupport/math.h:87:13: error: use of undeclared identifier 'cos' |
---|
2657 | *__cosp = cos(__x); |
---|
2658 | ^ |
---|
2659 | 4 errors generated. |
---|
2660 | Test failed to compile |
---|