1 | Try: /usr/bin/clang |
---|
2 | Line: /usr/bin/clang -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 cmake_bootstrap_81730_test.c -o cmake_bootstrap_81730_test |
---|
3 | ---------- file ----------------------- |
---|
4 | |
---|
5 | #ifdef __cplusplus |
---|
6 | # error "The CMAKE_C_COMPILER is set to a C++ compiler" |
---|
7 | #endif |
---|
8 | |
---|
9 | #include<stdio.h> |
---|
10 | |
---|
11 | #if defined(__CLASSIC_C__) |
---|
12 | int main(argc, argv) |
---|
13 | int argc; |
---|
14 | char* argv[]; |
---|
15 | #else |
---|
16 | int main(int argc, char* argv[]) |
---|
17 | #endif |
---|
18 | { |
---|
19 | printf("%d%c", (argv != 0), (char)0x0a); |
---|
20 | return argc-1; |
---|
21 | } |
---|
22 | |
---|
23 | ------------------------------------------ |
---|
24 | 1 |
---|
25 | Test succeeded |
---|
26 | Checking whether /usr/bin/clang supports -std=gnu11 |
---|
27 | Try: /usr/bin/clang |
---|
28 | Line: /usr/bin/clang -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu11 cmake_bootstrap_81730_test.c -o cmake_bootstrap_81730_test |
---|
29 | ---------- file ----------------------- |
---|
30 | |
---|
31 | #ifdef __cplusplus |
---|
32 | # error "The CMAKE_C_COMPILER is set to a C++ compiler" |
---|
33 | #endif |
---|
34 | |
---|
35 | #include<stdio.h> |
---|
36 | |
---|
37 | #if defined(__CLASSIC_C__) |
---|
38 | int main(argc, argv) |
---|
39 | int argc; |
---|
40 | char* argv[]; |
---|
41 | #else |
---|
42 | int main(int argc, char* argv[]) |
---|
43 | #endif |
---|
44 | { |
---|
45 | printf("%d%c", (argv != 0), (char)0x0a); |
---|
46 | return argc-1; |
---|
47 | } |
---|
48 | |
---|
49 | ------------------------------------------ |
---|
50 | 1 |
---|
51 | Test succeeded |
---|
52 | Try: /usr/bin/clang++ |
---|
53 | Line: /usr/bin/clang++ -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
54 | ---------- file ----------------------- |
---|
55 | |
---|
56 | #if defined(TEST1) |
---|
57 | # include <iostream> |
---|
58 | #else |
---|
59 | # include <iostream.h> |
---|
60 | #endif |
---|
61 | |
---|
62 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
63 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
64 | #endif |
---|
65 | |
---|
66 | class NeedCXX |
---|
67 | { |
---|
68 | public: |
---|
69 | NeedCXX() { this->Foo = 1; } |
---|
70 | int GetFoo() { return this->Foo; } |
---|
71 | private: |
---|
72 | int Foo; |
---|
73 | }; |
---|
74 | int main() |
---|
75 | { |
---|
76 | NeedCXX c; |
---|
77 | #ifdef TEST3 |
---|
78 | cout << c.GetFoo() << endl; |
---|
79 | #else |
---|
80 | std::cout << c.GetFoo() << std::endl; |
---|
81 | #endif |
---|
82 | return 0; |
---|
83 | } |
---|
84 | |
---|
85 | ------------------------------------------ |
---|
86 | cmake_bootstrap_81730_test.cxx:3:11: fatal error: 'iostream' file not found |
---|
87 | # include <iostream> |
---|
88 | ^~~~~~~~~~ |
---|
89 | 1 error generated. |
---|
90 | Test failed to compile |
---|
91 | Try: /usr/bin/clang++ |
---|
92 | Line: /usr/bin/clang++ -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -DTEST2 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
93 | ---------- file ----------------------- |
---|
94 | |
---|
95 | #if defined(TEST1) |
---|
96 | # include <iostream> |
---|
97 | #else |
---|
98 | # include <iostream.h> |
---|
99 | #endif |
---|
100 | |
---|
101 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
102 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
103 | #endif |
---|
104 | |
---|
105 | class NeedCXX |
---|
106 | { |
---|
107 | public: |
---|
108 | NeedCXX() { this->Foo = 1; } |
---|
109 | int GetFoo() { return this->Foo; } |
---|
110 | private: |
---|
111 | int Foo; |
---|
112 | }; |
---|
113 | int main() |
---|
114 | { |
---|
115 | NeedCXX c; |
---|
116 | #ifdef TEST3 |
---|
117 | cout << c.GetFoo() << endl; |
---|
118 | #else |
---|
119 | std::cout << c.GetFoo() << std::endl; |
---|
120 | #endif |
---|
121 | return 0; |
---|
122 | } |
---|
123 | |
---|
124 | ------------------------------------------ |
---|
125 | cmake_bootstrap_81730_test.cxx:5:11: fatal error: 'iostream.h' file not found |
---|
126 | # include <iostream.h> |
---|
127 | ^~~~~~~~~~~~ |
---|
128 | 1 error generated. |
---|
129 | Test failed to compile |
---|
130 | Try: /usr/bin/clang++ |
---|
131 | Line: /usr/bin/clang++ -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -DTEST3 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
132 | ---------- file ----------------------- |
---|
133 | |
---|
134 | #if defined(TEST1) |
---|
135 | # include <iostream> |
---|
136 | #else |
---|
137 | # include <iostream.h> |
---|
138 | #endif |
---|
139 | |
---|
140 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
141 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
142 | #endif |
---|
143 | |
---|
144 | class NeedCXX |
---|
145 | { |
---|
146 | public: |
---|
147 | NeedCXX() { this->Foo = 1; } |
---|
148 | int GetFoo() { return this->Foo; } |
---|
149 | private: |
---|
150 | int Foo; |
---|
151 | }; |
---|
152 | int main() |
---|
153 | { |
---|
154 | NeedCXX c; |
---|
155 | #ifdef TEST3 |
---|
156 | cout << c.GetFoo() << endl; |
---|
157 | #else |
---|
158 | std::cout << c.GetFoo() << std::endl; |
---|
159 | #endif |
---|
160 | return 0; |
---|
161 | } |
---|
162 | |
---|
163 | ------------------------------------------ |
---|
164 | cmake_bootstrap_81730_test.cxx:5:11: fatal error: 'iostream.h' file not found |
---|
165 | # include <iostream.h> |
---|
166 | ^~~~~~~~~~~~ |
---|
167 | 1 error generated. |
---|
168 | Test failed to compile |
---|
169 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++14 |
---|
170 | Try: |
---|
171 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++14 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
172 | ---------- file ----------------------- |
---|
173 | |
---|
174 | #if defined(TEST1) |
---|
175 | # include <iostream> |
---|
176 | #else |
---|
177 | # include <iostream.h> |
---|
178 | #endif |
---|
179 | |
---|
180 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
181 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
182 | #endif |
---|
183 | |
---|
184 | class NeedCXX |
---|
185 | { |
---|
186 | public: |
---|
187 | NeedCXX() { this->Foo = 1; } |
---|
188 | int GetFoo() { return this->Foo; } |
---|
189 | private: |
---|
190 | int Foo; |
---|
191 | }; |
---|
192 | int main() |
---|
193 | { |
---|
194 | NeedCXX c; |
---|
195 | #ifdef TEST3 |
---|
196 | cout << c.GetFoo() << endl; |
---|
197 | #else |
---|
198 | std::cout << c.GetFoo() << std::endl; |
---|
199 | #endif |
---|
200 | return 0; |
---|
201 | } |
---|
202 | |
---|
203 | ------------------------------------------ |
---|
204 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
205 | Test failed to compile |
---|
206 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++1y |
---|
207 | Try: |
---|
208 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++1y -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
209 | ---------- file ----------------------- |
---|
210 | |
---|
211 | #if defined(TEST1) |
---|
212 | # include <iostream> |
---|
213 | #else |
---|
214 | # include <iostream.h> |
---|
215 | #endif |
---|
216 | |
---|
217 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
218 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
219 | #endif |
---|
220 | |
---|
221 | class NeedCXX |
---|
222 | { |
---|
223 | public: |
---|
224 | NeedCXX() { this->Foo = 1; } |
---|
225 | int GetFoo() { return this->Foo; } |
---|
226 | private: |
---|
227 | int Foo; |
---|
228 | }; |
---|
229 | int main() |
---|
230 | { |
---|
231 | NeedCXX c; |
---|
232 | #ifdef TEST3 |
---|
233 | cout << c.GetFoo() << endl; |
---|
234 | #else |
---|
235 | std::cout << c.GetFoo() << std::endl; |
---|
236 | #endif |
---|
237 | return 0; |
---|
238 | } |
---|
239 | |
---|
240 | ------------------------------------------ |
---|
241 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
242 | Test failed to compile |
---|
243 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++14 |
---|
244 | Try: |
---|
245 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++14 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
246 | ---------- file ----------------------- |
---|
247 | |
---|
248 | #if defined(TEST1) |
---|
249 | # include <iostream> |
---|
250 | #else |
---|
251 | # include <iostream.h> |
---|
252 | #endif |
---|
253 | |
---|
254 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
255 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
256 | #endif |
---|
257 | |
---|
258 | class NeedCXX |
---|
259 | { |
---|
260 | public: |
---|
261 | NeedCXX() { this->Foo = 1; } |
---|
262 | int GetFoo() { return this->Foo; } |
---|
263 | private: |
---|
264 | int Foo; |
---|
265 | }; |
---|
266 | int main() |
---|
267 | { |
---|
268 | NeedCXX c; |
---|
269 | #ifdef TEST3 |
---|
270 | cout << c.GetFoo() << endl; |
---|
271 | #else |
---|
272 | std::cout << c.GetFoo() << std::endl; |
---|
273 | #endif |
---|
274 | return 0; |
---|
275 | } |
---|
276 | |
---|
277 | ------------------------------------------ |
---|
278 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
279 | Test failed to compile |
---|
280 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++1y |
---|
281 | Try: |
---|
282 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++1y -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
283 | ---------- file ----------------------- |
---|
284 | |
---|
285 | #if defined(TEST1) |
---|
286 | # include <iostream> |
---|
287 | #else |
---|
288 | # include <iostream.h> |
---|
289 | #endif |
---|
290 | |
---|
291 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
292 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
293 | #endif |
---|
294 | |
---|
295 | class NeedCXX |
---|
296 | { |
---|
297 | public: |
---|
298 | NeedCXX() { this->Foo = 1; } |
---|
299 | int GetFoo() { return this->Foo; } |
---|
300 | private: |
---|
301 | int Foo; |
---|
302 | }; |
---|
303 | int main() |
---|
304 | { |
---|
305 | NeedCXX c; |
---|
306 | #ifdef TEST3 |
---|
307 | cout << c.GetFoo() << endl; |
---|
308 | #else |
---|
309 | std::cout << c.GetFoo() << std::endl; |
---|
310 | #endif |
---|
311 | return 0; |
---|
312 | } |
---|
313 | |
---|
314 | ------------------------------------------ |
---|
315 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
316 | Test failed to compile |
---|
317 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++14 |
---|
318 | Try: |
---|
319 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++14 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
320 | ---------- file ----------------------- |
---|
321 | |
---|
322 | #if defined(TEST1) |
---|
323 | # include <iostream> |
---|
324 | #else |
---|
325 | # include <iostream.h> |
---|
326 | #endif |
---|
327 | |
---|
328 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
329 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
330 | #endif |
---|
331 | |
---|
332 | class NeedCXX |
---|
333 | { |
---|
334 | public: |
---|
335 | NeedCXX() { this->Foo = 1; } |
---|
336 | int GetFoo() { return this->Foo; } |
---|
337 | private: |
---|
338 | int Foo; |
---|
339 | }; |
---|
340 | int main() |
---|
341 | { |
---|
342 | NeedCXX c; |
---|
343 | #ifdef TEST3 |
---|
344 | cout << c.GetFoo() << endl; |
---|
345 | #else |
---|
346 | std::cout << c.GetFoo() << std::endl; |
---|
347 | #endif |
---|
348 | return 0; |
---|
349 | } |
---|
350 | |
---|
351 | ------------------------------------------ |
---|
352 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
353 | Test failed to compile |
---|
354 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++1y |
---|
355 | Try: |
---|
356 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++1y -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
357 | ---------- file ----------------------- |
---|
358 | |
---|
359 | #if defined(TEST1) |
---|
360 | # include <iostream> |
---|
361 | #else |
---|
362 | # include <iostream.h> |
---|
363 | #endif |
---|
364 | |
---|
365 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
366 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
367 | #endif |
---|
368 | |
---|
369 | class NeedCXX |
---|
370 | { |
---|
371 | public: |
---|
372 | NeedCXX() { this->Foo = 1; } |
---|
373 | int GetFoo() { return this->Foo; } |
---|
374 | private: |
---|
375 | int Foo; |
---|
376 | }; |
---|
377 | int main() |
---|
378 | { |
---|
379 | NeedCXX c; |
---|
380 | #ifdef TEST3 |
---|
381 | cout << c.GetFoo() << endl; |
---|
382 | #else |
---|
383 | std::cout << c.GetFoo() << std::endl; |
---|
384 | #endif |
---|
385 | return 0; |
---|
386 | } |
---|
387 | |
---|
388 | ------------------------------------------ |
---|
389 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
390 | Test failed to compile |
---|
391 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -Qstd=c++14 |
---|
392 | Try: |
---|
393 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -Qstd=c++14 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
394 | ---------- file ----------------------- |
---|
395 | |
---|
396 | #if defined(TEST1) |
---|
397 | # include <iostream> |
---|
398 | #else |
---|
399 | # include <iostream.h> |
---|
400 | #endif |
---|
401 | |
---|
402 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
403 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
404 | #endif |
---|
405 | |
---|
406 | class NeedCXX |
---|
407 | { |
---|
408 | public: |
---|
409 | NeedCXX() { this->Foo = 1; } |
---|
410 | int GetFoo() { return this->Foo; } |
---|
411 | private: |
---|
412 | int Foo; |
---|
413 | }; |
---|
414 | int main() |
---|
415 | { |
---|
416 | NeedCXX c; |
---|
417 | #ifdef TEST3 |
---|
418 | cout << c.GetFoo() << endl; |
---|
419 | #else |
---|
420 | std::cout << c.GetFoo() << std::endl; |
---|
421 | #endif |
---|
422 | return 0; |
---|
423 | } |
---|
424 | |
---|
425 | ------------------------------------------ |
---|
426 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
427 | Test failed to compile |
---|
428 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=c++14 |
---|
429 | Try: |
---|
430 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=c++14 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
431 | ---------- file ----------------------- |
---|
432 | |
---|
433 | #if defined(TEST1) |
---|
434 | # include <iostream> |
---|
435 | #else |
---|
436 | # include <iostream.h> |
---|
437 | #endif |
---|
438 | |
---|
439 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
440 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
441 | #endif |
---|
442 | |
---|
443 | class NeedCXX |
---|
444 | { |
---|
445 | public: |
---|
446 | NeedCXX() { this->Foo = 1; } |
---|
447 | int GetFoo() { return this->Foo; } |
---|
448 | private: |
---|
449 | int Foo; |
---|
450 | }; |
---|
451 | int main() |
---|
452 | { |
---|
453 | NeedCXX c; |
---|
454 | #ifdef TEST3 |
---|
455 | cout << c.GetFoo() << endl; |
---|
456 | #else |
---|
457 | std::cout << c.GetFoo() << std::endl; |
---|
458 | #endif |
---|
459 | return 0; |
---|
460 | } |
---|
461 | |
---|
462 | ------------------------------------------ |
---|
463 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
464 | Test failed to compile |
---|
465 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=c++1y |
---|
466 | Try: |
---|
467 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=c++1y -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
468 | ---------- file ----------------------- |
---|
469 | |
---|
470 | #if defined(TEST1) |
---|
471 | # include <iostream> |
---|
472 | #else |
---|
473 | # include <iostream.h> |
---|
474 | #endif |
---|
475 | |
---|
476 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
477 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
478 | #endif |
---|
479 | |
---|
480 | class NeedCXX |
---|
481 | { |
---|
482 | public: |
---|
483 | NeedCXX() { this->Foo = 1; } |
---|
484 | int GetFoo() { return this->Foo; } |
---|
485 | private: |
---|
486 | int Foo; |
---|
487 | }; |
---|
488 | int main() |
---|
489 | { |
---|
490 | NeedCXX c; |
---|
491 | #ifdef TEST3 |
---|
492 | cout << c.GetFoo() << endl; |
---|
493 | #else |
---|
494 | std::cout << c.GetFoo() << std::endl; |
---|
495 | #endif |
---|
496 | return 0; |
---|
497 | } |
---|
498 | |
---|
499 | ------------------------------------------ |
---|
500 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
501 | Test failed to compile |
---|
502 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports --c++14 |
---|
503 | Try: |
---|
504 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 --c++14 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
505 | ---------- file ----------------------- |
---|
506 | |
---|
507 | #if defined(TEST1) |
---|
508 | # include <iostream> |
---|
509 | #else |
---|
510 | # include <iostream.h> |
---|
511 | #endif |
---|
512 | |
---|
513 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
514 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
515 | #endif |
---|
516 | |
---|
517 | class NeedCXX |
---|
518 | { |
---|
519 | public: |
---|
520 | NeedCXX() { this->Foo = 1; } |
---|
521 | int GetFoo() { return this->Foo; } |
---|
522 | private: |
---|
523 | int Foo; |
---|
524 | }; |
---|
525 | int main() |
---|
526 | { |
---|
527 | NeedCXX c; |
---|
528 | #ifdef TEST3 |
---|
529 | cout << c.GetFoo() << endl; |
---|
530 | #else |
---|
531 | std::cout << c.GetFoo() << std::endl; |
---|
532 | #endif |
---|
533 | return 0; |
---|
534 | } |
---|
535 | |
---|
536 | ------------------------------------------ |
---|
537 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
538 | Test failed to compile |
---|
539 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports --gnu_extensions |
---|
540 | Try: |
---|
541 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 --gnu_extensions -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
542 | ---------- file ----------------------- |
---|
543 | |
---|
544 | #if defined(TEST1) |
---|
545 | # include <iostream> |
---|
546 | #else |
---|
547 | # include <iostream.h> |
---|
548 | #endif |
---|
549 | |
---|
550 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
551 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
552 | #endif |
---|
553 | |
---|
554 | class NeedCXX |
---|
555 | { |
---|
556 | public: |
---|
557 | NeedCXX() { this->Foo = 1; } |
---|
558 | int GetFoo() { return this->Foo; } |
---|
559 | private: |
---|
560 | int Foo; |
---|
561 | }; |
---|
562 | int main() |
---|
563 | { |
---|
564 | NeedCXX c; |
---|
565 | #ifdef TEST3 |
---|
566 | cout << c.GetFoo() << endl; |
---|
567 | #else |
---|
568 | std::cout << c.GetFoo() << std::endl; |
---|
569 | #endif |
---|
570 | return 0; |
---|
571 | } |
---|
572 | |
---|
573 | ------------------------------------------ |
---|
574 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
575 | Test failed to compile |
---|
576 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -qlanglvl=extended1y |
---|
577 | Try: |
---|
578 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -qlanglvl=extended1y -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
579 | ---------- file ----------------------- |
---|
580 | |
---|
581 | #if defined(TEST1) |
---|
582 | # include <iostream> |
---|
583 | #else |
---|
584 | # include <iostream.h> |
---|
585 | #endif |
---|
586 | |
---|
587 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
588 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
589 | #endif |
---|
590 | |
---|
591 | class NeedCXX |
---|
592 | { |
---|
593 | public: |
---|
594 | NeedCXX() { this->Foo = 1; } |
---|
595 | int GetFoo() { return this->Foo; } |
---|
596 | private: |
---|
597 | int Foo; |
---|
598 | }; |
---|
599 | int main() |
---|
600 | { |
---|
601 | NeedCXX c; |
---|
602 | #ifdef TEST3 |
---|
603 | cout << c.GetFoo() << endl; |
---|
604 | #else |
---|
605 | std::cout << c.GetFoo() << std::endl; |
---|
606 | #endif |
---|
607 | return 0; |
---|
608 | } |
---|
609 | |
---|
610 | ------------------------------------------ |
---|
611 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
612 | Test failed to compile |
---|
613 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++11 |
---|
614 | Try: |
---|
615 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++11 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
616 | ---------- file ----------------------- |
---|
617 | |
---|
618 | #if defined(TEST1) |
---|
619 | # include <iostream> |
---|
620 | #else |
---|
621 | # include <iostream.h> |
---|
622 | #endif |
---|
623 | |
---|
624 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
625 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
626 | #endif |
---|
627 | |
---|
628 | class NeedCXX |
---|
629 | { |
---|
630 | public: |
---|
631 | NeedCXX() { this->Foo = 1; } |
---|
632 | int GetFoo() { return this->Foo; } |
---|
633 | private: |
---|
634 | int Foo; |
---|
635 | }; |
---|
636 | int main() |
---|
637 | { |
---|
638 | NeedCXX c; |
---|
639 | #ifdef TEST3 |
---|
640 | cout << c.GetFoo() << endl; |
---|
641 | #else |
---|
642 | std::cout << c.GetFoo() << std::endl; |
---|
643 | #endif |
---|
644 | return 0; |
---|
645 | } |
---|
646 | |
---|
647 | ------------------------------------------ |
---|
648 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
649 | Test failed to compile |
---|
650 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++11 |
---|
651 | Try: |
---|
652 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++11 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
653 | ---------- file ----------------------- |
---|
654 | |
---|
655 | #if defined(TEST1) |
---|
656 | # include <iostream> |
---|
657 | #else |
---|
658 | # include <iostream.h> |
---|
659 | #endif |
---|
660 | |
---|
661 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
662 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
663 | #endif |
---|
664 | |
---|
665 | class NeedCXX |
---|
666 | { |
---|
667 | public: |
---|
668 | NeedCXX() { this->Foo = 1; } |
---|
669 | int GetFoo() { return this->Foo; } |
---|
670 | private: |
---|
671 | int Foo; |
---|
672 | }; |
---|
673 | int main() |
---|
674 | { |
---|
675 | NeedCXX c; |
---|
676 | #ifdef TEST3 |
---|
677 | cout << c.GetFoo() << endl; |
---|
678 | #else |
---|
679 | std::cout << c.GetFoo() << std::endl; |
---|
680 | #endif |
---|
681 | return 0; |
---|
682 | } |
---|
683 | |
---|
684 | ------------------------------------------ |
---|
685 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
686 | Test failed to compile |
---|
687 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++0x |
---|
688 | Try: |
---|
689 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++0x -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
690 | ---------- file ----------------------- |
---|
691 | |
---|
692 | #if defined(TEST1) |
---|
693 | # include <iostream> |
---|
694 | #else |
---|
695 | # include <iostream.h> |
---|
696 | #endif |
---|
697 | |
---|
698 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
699 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
700 | #endif |
---|
701 | |
---|
702 | class NeedCXX |
---|
703 | { |
---|
704 | public: |
---|
705 | NeedCXX() { this->Foo = 1; } |
---|
706 | int GetFoo() { return this->Foo; } |
---|
707 | private: |
---|
708 | int Foo; |
---|
709 | }; |
---|
710 | int main() |
---|
711 | { |
---|
712 | NeedCXX c; |
---|
713 | #ifdef TEST3 |
---|
714 | cout << c.GetFoo() << endl; |
---|
715 | #else |
---|
716 | std::cout << c.GetFoo() << std::endl; |
---|
717 | #endif |
---|
718 | return 0; |
---|
719 | } |
---|
720 | |
---|
721 | ------------------------------------------ |
---|
722 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
723 | Test failed to compile |
---|
724 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -h |
---|
725 | Try: |
---|
726 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -h -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
727 | ---------- file ----------------------- |
---|
728 | |
---|
729 | #if defined(TEST1) |
---|
730 | # include <iostream> |
---|
731 | #else |
---|
732 | # include <iostream.h> |
---|
733 | #endif |
---|
734 | |
---|
735 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
736 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
737 | #endif |
---|
738 | |
---|
739 | class NeedCXX |
---|
740 | { |
---|
741 | public: |
---|
742 | NeedCXX() { this->Foo = 1; } |
---|
743 | int GetFoo() { return this->Foo; } |
---|
744 | private: |
---|
745 | int Foo; |
---|
746 | }; |
---|
747 | int main() |
---|
748 | { |
---|
749 | NeedCXX c; |
---|
750 | #ifdef TEST3 |
---|
751 | cout << c.GetFoo() << endl; |
---|
752 | #else |
---|
753 | std::cout << c.GetFoo() << std::endl; |
---|
754 | #endif |
---|
755 | return 0; |
---|
756 | } |
---|
757 | |
---|
758 | ------------------------------------------ |
---|
759 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
760 | Test failed to compile |
---|
761 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports std=c++11,gnu |
---|
762 | Try: |
---|
763 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 std=c++11,gnu -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
764 | ---------- file ----------------------- |
---|
765 | |
---|
766 | #if defined(TEST1) |
---|
767 | # include <iostream> |
---|
768 | #else |
---|
769 | # include <iostream.h> |
---|
770 | #endif |
---|
771 | |
---|
772 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
773 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
774 | #endif |
---|
775 | |
---|
776 | class NeedCXX |
---|
777 | { |
---|
778 | public: |
---|
779 | NeedCXX() { this->Foo = 1; } |
---|
780 | int GetFoo() { return this->Foo; } |
---|
781 | private: |
---|
782 | int Foo; |
---|
783 | }; |
---|
784 | int main() |
---|
785 | { |
---|
786 | NeedCXX c; |
---|
787 | #ifdef TEST3 |
---|
788 | cout << c.GetFoo() << endl; |
---|
789 | #else |
---|
790 | std::cout << c.GetFoo() << std::endl; |
---|
791 | #endif |
---|
792 | return 0; |
---|
793 | } |
---|
794 | |
---|
795 | ------------------------------------------ |
---|
796 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
797 | Test failed to compile |
---|
798 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++11 |
---|
799 | Try: |
---|
800 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++11 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
801 | ---------- file ----------------------- |
---|
802 | |
---|
803 | #if defined(TEST1) |
---|
804 | # include <iostream> |
---|
805 | #else |
---|
806 | # include <iostream.h> |
---|
807 | #endif |
---|
808 | |
---|
809 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
810 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
811 | #endif |
---|
812 | |
---|
813 | class NeedCXX |
---|
814 | { |
---|
815 | public: |
---|
816 | NeedCXX() { this->Foo = 1; } |
---|
817 | int GetFoo() { return this->Foo; } |
---|
818 | private: |
---|
819 | int Foo; |
---|
820 | }; |
---|
821 | int main() |
---|
822 | { |
---|
823 | NeedCXX c; |
---|
824 | #ifdef TEST3 |
---|
825 | cout << c.GetFoo() << endl; |
---|
826 | #else |
---|
827 | std::cout << c.GetFoo() << std::endl; |
---|
828 | #endif |
---|
829 | return 0; |
---|
830 | } |
---|
831 | |
---|
832 | ------------------------------------------ |
---|
833 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
834 | Test failed to compile |
---|
835 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++0x |
---|
836 | Try: |
---|
837 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++0x -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
838 | ---------- file ----------------------- |
---|
839 | |
---|
840 | #if defined(TEST1) |
---|
841 | # include <iostream> |
---|
842 | #else |
---|
843 | # include <iostream.h> |
---|
844 | #endif |
---|
845 | |
---|
846 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
847 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
848 | #endif |
---|
849 | |
---|
850 | class NeedCXX |
---|
851 | { |
---|
852 | public: |
---|
853 | NeedCXX() { this->Foo = 1; } |
---|
854 | int GetFoo() { return this->Foo; } |
---|
855 | private: |
---|
856 | int Foo; |
---|
857 | }; |
---|
858 | int main() |
---|
859 | { |
---|
860 | NeedCXX c; |
---|
861 | #ifdef TEST3 |
---|
862 | cout << c.GetFoo() << endl; |
---|
863 | #else |
---|
864 | std::cout << c.GetFoo() << std::endl; |
---|
865 | #endif |
---|
866 | return 0; |
---|
867 | } |
---|
868 | |
---|
869 | ------------------------------------------ |
---|
870 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
871 | Test failed to compile |
---|
872 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -Qstd=c++11 |
---|
873 | Try: |
---|
874 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -Qstd=c++11 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
875 | ---------- file ----------------------- |
---|
876 | |
---|
877 | #if defined(TEST1) |
---|
878 | # include <iostream> |
---|
879 | #else |
---|
880 | # include <iostream.h> |
---|
881 | #endif |
---|
882 | |
---|
883 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
884 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
885 | #endif |
---|
886 | |
---|
887 | class NeedCXX |
---|
888 | { |
---|
889 | public: |
---|
890 | NeedCXX() { this->Foo = 1; } |
---|
891 | int GetFoo() { return this->Foo; } |
---|
892 | private: |
---|
893 | int Foo; |
---|
894 | }; |
---|
895 | int main() |
---|
896 | { |
---|
897 | NeedCXX c; |
---|
898 | #ifdef TEST3 |
---|
899 | cout << c.GetFoo() << endl; |
---|
900 | #else |
---|
901 | std::cout << c.GetFoo() << std::endl; |
---|
902 | #endif |
---|
903 | return 0; |
---|
904 | } |
---|
905 | |
---|
906 | ------------------------------------------ |
---|
907 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
908 | Test failed to compile |
---|
909 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -Qstd=c++0x |
---|
910 | Try: |
---|
911 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -Qstd=c++0x -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
912 | ---------- file ----------------------- |
---|
913 | |
---|
914 | #if defined(TEST1) |
---|
915 | # include <iostream> |
---|
916 | #else |
---|
917 | # include <iostream.h> |
---|
918 | #endif |
---|
919 | |
---|
920 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
921 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
922 | #endif |
---|
923 | |
---|
924 | class NeedCXX |
---|
925 | { |
---|
926 | public: |
---|
927 | NeedCXX() { this->Foo = 1; } |
---|
928 | int GetFoo() { return this->Foo; } |
---|
929 | private: |
---|
930 | int Foo; |
---|
931 | }; |
---|
932 | int main() |
---|
933 | { |
---|
934 | NeedCXX c; |
---|
935 | #ifdef TEST3 |
---|
936 | cout << c.GetFoo() << endl; |
---|
937 | #else |
---|
938 | std::cout << c.GetFoo() << std::endl; |
---|
939 | #endif |
---|
940 | return 0; |
---|
941 | } |
---|
942 | |
---|
943 | ------------------------------------------ |
---|
944 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
945 | Test failed to compile |
---|
946 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++11 |
---|
947 | Try: |
---|
948 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++11 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
949 | ---------- file ----------------------- |
---|
950 | |
---|
951 | #if defined(TEST1) |
---|
952 | # include <iostream> |
---|
953 | #else |
---|
954 | # include <iostream.h> |
---|
955 | #endif |
---|
956 | |
---|
957 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
958 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
959 | #endif |
---|
960 | |
---|
961 | class NeedCXX |
---|
962 | { |
---|
963 | public: |
---|
964 | NeedCXX() { this->Foo = 1; } |
---|
965 | int GetFoo() { return this->Foo; } |
---|
966 | private: |
---|
967 | int Foo; |
---|
968 | }; |
---|
969 | int main() |
---|
970 | { |
---|
971 | NeedCXX c; |
---|
972 | #ifdef TEST3 |
---|
973 | cout << c.GetFoo() << endl; |
---|
974 | #else |
---|
975 | std::cout << c.GetFoo() << std::endl; |
---|
976 | #endif |
---|
977 | return 0; |
---|
978 | } |
---|
979 | |
---|
980 | ------------------------------------------ |
---|
981 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
982 | Test failed to compile |
---|
983 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++0x |
---|
984 | Try: |
---|
985 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++0x -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
986 | ---------- file ----------------------- |
---|
987 | |
---|
988 | #if defined(TEST1) |
---|
989 | # include <iostream> |
---|
990 | #else |
---|
991 | # include <iostream.h> |
---|
992 | #endif |
---|
993 | |
---|
994 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
995 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
996 | #endif |
---|
997 | |
---|
998 | class NeedCXX |
---|
999 | { |
---|
1000 | public: |
---|
1001 | NeedCXX() { this->Foo = 1; } |
---|
1002 | int GetFoo() { return this->Foo; } |
---|
1003 | private: |
---|
1004 | int Foo; |
---|
1005 | }; |
---|
1006 | int main() |
---|
1007 | { |
---|
1008 | NeedCXX c; |
---|
1009 | #ifdef TEST3 |
---|
1010 | cout << c.GetFoo() << endl; |
---|
1011 | #else |
---|
1012 | std::cout << c.GetFoo() << std::endl; |
---|
1013 | #endif |
---|
1014 | return 0; |
---|
1015 | } |
---|
1016 | |
---|
1017 | ------------------------------------------ |
---|
1018 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1019 | Test failed to compile |
---|
1020 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports --c++11 |
---|
1021 | Try: |
---|
1022 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 --c++11 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1023 | ---------- file ----------------------- |
---|
1024 | |
---|
1025 | #if defined(TEST1) |
---|
1026 | # include <iostream> |
---|
1027 | #else |
---|
1028 | # include <iostream.h> |
---|
1029 | #endif |
---|
1030 | |
---|
1031 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1032 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1033 | #endif |
---|
1034 | |
---|
1035 | class NeedCXX |
---|
1036 | { |
---|
1037 | public: |
---|
1038 | NeedCXX() { this->Foo = 1; } |
---|
1039 | int GetFoo() { return this->Foo; } |
---|
1040 | private: |
---|
1041 | int Foo; |
---|
1042 | }; |
---|
1043 | int main() |
---|
1044 | { |
---|
1045 | NeedCXX c; |
---|
1046 | #ifdef TEST3 |
---|
1047 | cout << c.GetFoo() << endl; |
---|
1048 | #else |
---|
1049 | std::cout << c.GetFoo() << std::endl; |
---|
1050 | #endif |
---|
1051 | return 0; |
---|
1052 | } |
---|
1053 | |
---|
1054 | ------------------------------------------ |
---|
1055 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1056 | Test failed to compile |
---|
1057 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports --gnu_extensions |
---|
1058 | Try: |
---|
1059 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 --gnu_extensions -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1060 | ---------- file ----------------------- |
---|
1061 | |
---|
1062 | #if defined(TEST1) |
---|
1063 | # include <iostream> |
---|
1064 | #else |
---|
1065 | # include <iostream.h> |
---|
1066 | #endif |
---|
1067 | |
---|
1068 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1069 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1070 | #endif |
---|
1071 | |
---|
1072 | class NeedCXX |
---|
1073 | { |
---|
1074 | public: |
---|
1075 | NeedCXX() { this->Foo = 1; } |
---|
1076 | int GetFoo() { return this->Foo; } |
---|
1077 | private: |
---|
1078 | int Foo; |
---|
1079 | }; |
---|
1080 | int main() |
---|
1081 | { |
---|
1082 | NeedCXX c; |
---|
1083 | #ifdef TEST3 |
---|
1084 | cout << c.GetFoo() << endl; |
---|
1085 | #else |
---|
1086 | std::cout << c.GetFoo() << std::endl; |
---|
1087 | #endif |
---|
1088 | return 0; |
---|
1089 | } |
---|
1090 | |
---|
1091 | ------------------------------------------ |
---|
1092 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1093 | Test failed to compile |
---|
1094 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=c++11 |
---|
1095 | Try: |
---|
1096 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=c++11 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1097 | ---------- file ----------------------- |
---|
1098 | |
---|
1099 | #if defined(TEST1) |
---|
1100 | # include <iostream> |
---|
1101 | #else |
---|
1102 | # include <iostream.h> |
---|
1103 | #endif |
---|
1104 | |
---|
1105 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1106 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1107 | #endif |
---|
1108 | |
---|
1109 | class NeedCXX |
---|
1110 | { |
---|
1111 | public: |
---|
1112 | NeedCXX() { this->Foo = 1; } |
---|
1113 | int GetFoo() { return this->Foo; } |
---|
1114 | private: |
---|
1115 | int Foo; |
---|
1116 | }; |
---|
1117 | int main() |
---|
1118 | { |
---|
1119 | NeedCXX c; |
---|
1120 | #ifdef TEST3 |
---|
1121 | cout << c.GetFoo() << endl; |
---|
1122 | #else |
---|
1123 | std::cout << c.GetFoo() << std::endl; |
---|
1124 | #endif |
---|
1125 | return 0; |
---|
1126 | } |
---|
1127 | |
---|
1128 | ------------------------------------------ |
---|
1129 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1130 | Test failed to compile |
---|
1131 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++11 |
---|
1132 | Try: |
---|
1133 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++11 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1134 | ---------- file ----------------------- |
---|
1135 | |
---|
1136 | #if defined(TEST1) |
---|
1137 | # include <iostream> |
---|
1138 | #else |
---|
1139 | # include <iostream.h> |
---|
1140 | #endif |
---|
1141 | |
---|
1142 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1143 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1144 | #endif |
---|
1145 | |
---|
1146 | class NeedCXX |
---|
1147 | { |
---|
1148 | public: |
---|
1149 | NeedCXX() { this->Foo = 1; } |
---|
1150 | int GetFoo() { return this->Foo; } |
---|
1151 | private: |
---|
1152 | int Foo; |
---|
1153 | }; |
---|
1154 | int main() |
---|
1155 | { |
---|
1156 | NeedCXX c; |
---|
1157 | #ifdef TEST3 |
---|
1158 | cout << c.GetFoo() << endl; |
---|
1159 | #else |
---|
1160 | std::cout << c.GetFoo() << std::endl; |
---|
1161 | #endif |
---|
1162 | return 0; |
---|
1163 | } |
---|
1164 | |
---|
1165 | ------------------------------------------ |
---|
1166 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1167 | Test failed to compile |
---|
1168 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -qlanglvl=extended0x |
---|
1169 | Try: |
---|
1170 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -qlanglvl=extended0x -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1171 | ---------- file ----------------------- |
---|
1172 | |
---|
1173 | #if defined(TEST1) |
---|
1174 | # include <iostream> |
---|
1175 | #else |
---|
1176 | # include <iostream.h> |
---|
1177 | #endif |
---|
1178 | |
---|
1179 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1180 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1181 | #endif |
---|
1182 | |
---|
1183 | class NeedCXX |
---|
1184 | { |
---|
1185 | public: |
---|
1186 | NeedCXX() { this->Foo = 1; } |
---|
1187 | int GetFoo() { return this->Foo; } |
---|
1188 | private: |
---|
1189 | int Foo; |
---|
1190 | }; |
---|
1191 | int main() |
---|
1192 | { |
---|
1193 | NeedCXX c; |
---|
1194 | #ifdef TEST3 |
---|
1195 | cout << c.GetFoo() << endl; |
---|
1196 | #else |
---|
1197 | std::cout << c.GetFoo() << std::endl; |
---|
1198 | #endif |
---|
1199 | return 0; |
---|
1200 | } |
---|
1201 | |
---|
1202 | ------------------------------------------ |
---|
1203 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1204 | Test failed to compile |
---|
1205 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -qlanglvl=extended0x |
---|
1206 | Try: |
---|
1207 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -qlanglvl=extended0x -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1208 | ---------- file ----------------------- |
---|
1209 | |
---|
1210 | #if defined(TEST1) |
---|
1211 | # include <iostream> |
---|
1212 | #else |
---|
1213 | # include <iostream.h> |
---|
1214 | #endif |
---|
1215 | |
---|
1216 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1217 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1218 | #endif |
---|
1219 | |
---|
1220 | class NeedCXX |
---|
1221 | { |
---|
1222 | public: |
---|
1223 | NeedCXX() { this->Foo = 1; } |
---|
1224 | int GetFoo() { return this->Foo; } |
---|
1225 | private: |
---|
1226 | int Foo; |
---|
1227 | }; |
---|
1228 | int main() |
---|
1229 | { |
---|
1230 | NeedCXX c; |
---|
1231 | #ifdef TEST3 |
---|
1232 | cout << c.GetFoo() << endl; |
---|
1233 | #else |
---|
1234 | std::cout << c.GetFoo() << std::endl; |
---|
1235 | #endif |
---|
1236 | return 0; |
---|
1237 | } |
---|
1238 | |
---|
1239 | ------------------------------------------ |
---|
1240 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1241 | Test failed to compile |
---|
1242 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -qlanglvl=extended0x |
---|
1243 | Try: |
---|
1244 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -qlanglvl=extended0x -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1245 | ---------- file ----------------------- |
---|
1246 | |
---|
1247 | #if defined(TEST1) |
---|
1248 | # include <iostream> |
---|
1249 | #else |
---|
1250 | # include <iostream.h> |
---|
1251 | #endif |
---|
1252 | |
---|
1253 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1254 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1255 | #endif |
---|
1256 | |
---|
1257 | class NeedCXX |
---|
1258 | { |
---|
1259 | public: |
---|
1260 | NeedCXX() { this->Foo = 1; } |
---|
1261 | int GetFoo() { return this->Foo; } |
---|
1262 | private: |
---|
1263 | int Foo; |
---|
1264 | }; |
---|
1265 | int main() |
---|
1266 | { |
---|
1267 | NeedCXX c; |
---|
1268 | #ifdef TEST3 |
---|
1269 | cout << c.GetFoo() << endl; |
---|
1270 | #else |
---|
1271 | std::cout << c.GetFoo() << std::endl; |
---|
1272 | #endif |
---|
1273 | return 0; |
---|
1274 | } |
---|
1275 | |
---|
1276 | ------------------------------------------ |
---|
1277 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1278 | Test failed to compile |
---|
1279 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++98 |
---|
1280 | Try: |
---|
1281 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++98 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1282 | ---------- file ----------------------- |
---|
1283 | |
---|
1284 | #if defined(TEST1) |
---|
1285 | # include <iostream> |
---|
1286 | #else |
---|
1287 | # include <iostream.h> |
---|
1288 | #endif |
---|
1289 | |
---|
1290 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1291 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1292 | #endif |
---|
1293 | |
---|
1294 | class NeedCXX |
---|
1295 | { |
---|
1296 | public: |
---|
1297 | NeedCXX() { this->Foo = 1; } |
---|
1298 | int GetFoo() { return this->Foo; } |
---|
1299 | private: |
---|
1300 | int Foo; |
---|
1301 | }; |
---|
1302 | int main() |
---|
1303 | { |
---|
1304 | NeedCXX c; |
---|
1305 | #ifdef TEST3 |
---|
1306 | cout << c.GetFoo() << endl; |
---|
1307 | #else |
---|
1308 | std::cout << c.GetFoo() << std::endl; |
---|
1309 | #endif |
---|
1310 | return 0; |
---|
1311 | } |
---|
1312 | |
---|
1313 | ------------------------------------------ |
---|
1314 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1315 | Test failed to compile |
---|
1316 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++98 |
---|
1317 | Try: |
---|
1318 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++98 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1319 | ---------- file ----------------------- |
---|
1320 | |
---|
1321 | #if defined(TEST1) |
---|
1322 | # include <iostream> |
---|
1323 | #else |
---|
1324 | # include <iostream.h> |
---|
1325 | #endif |
---|
1326 | |
---|
1327 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1328 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1329 | #endif |
---|
1330 | |
---|
1331 | class NeedCXX |
---|
1332 | { |
---|
1333 | public: |
---|
1334 | NeedCXX() { this->Foo = 1; } |
---|
1335 | int GetFoo() { return this->Foo; } |
---|
1336 | private: |
---|
1337 | int Foo; |
---|
1338 | }; |
---|
1339 | int main() |
---|
1340 | { |
---|
1341 | NeedCXX c; |
---|
1342 | #ifdef TEST3 |
---|
1343 | cout << c.GetFoo() << endl; |
---|
1344 | #else |
---|
1345 | std::cout << c.GetFoo() << std::endl; |
---|
1346 | #endif |
---|
1347 | return 0; |
---|
1348 | } |
---|
1349 | |
---|
1350 | ------------------------------------------ |
---|
1351 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1352 | Test failed to compile |
---|
1353 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -h |
---|
1354 | Try: |
---|
1355 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -h -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1356 | ---------- file ----------------------- |
---|
1357 | |
---|
1358 | #if defined(TEST1) |
---|
1359 | # include <iostream> |
---|
1360 | #else |
---|
1361 | # include <iostream.h> |
---|
1362 | #endif |
---|
1363 | |
---|
1364 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1365 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1366 | #endif |
---|
1367 | |
---|
1368 | class NeedCXX |
---|
1369 | { |
---|
1370 | public: |
---|
1371 | NeedCXX() { this->Foo = 1; } |
---|
1372 | int GetFoo() { return this->Foo; } |
---|
1373 | private: |
---|
1374 | int Foo; |
---|
1375 | }; |
---|
1376 | int main() |
---|
1377 | { |
---|
1378 | NeedCXX c; |
---|
1379 | #ifdef TEST3 |
---|
1380 | cout << c.GetFoo() << endl; |
---|
1381 | #else |
---|
1382 | std::cout << c.GetFoo() << std::endl; |
---|
1383 | #endif |
---|
1384 | return 0; |
---|
1385 | } |
---|
1386 | |
---|
1387 | ------------------------------------------ |
---|
1388 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1389 | Test failed to compile |
---|
1390 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports gnu |
---|
1391 | Try: |
---|
1392 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 gnu -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1393 | ---------- file ----------------------- |
---|
1394 | |
---|
1395 | #if defined(TEST1) |
---|
1396 | # include <iostream> |
---|
1397 | #else |
---|
1398 | # include <iostream.h> |
---|
1399 | #endif |
---|
1400 | |
---|
1401 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1402 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1403 | #endif |
---|
1404 | |
---|
1405 | class NeedCXX |
---|
1406 | { |
---|
1407 | public: |
---|
1408 | NeedCXX() { this->Foo = 1; } |
---|
1409 | int GetFoo() { return this->Foo; } |
---|
1410 | private: |
---|
1411 | int Foo; |
---|
1412 | }; |
---|
1413 | int main() |
---|
1414 | { |
---|
1415 | NeedCXX c; |
---|
1416 | #ifdef TEST3 |
---|
1417 | cout << c.GetFoo() << endl; |
---|
1418 | #else |
---|
1419 | std::cout << c.GetFoo() << std::endl; |
---|
1420 | #endif |
---|
1421 | return 0; |
---|
1422 | } |
---|
1423 | |
---|
1424 | ------------------------------------------ |
---|
1425 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1426 | Test failed to compile |
---|
1427 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++98 |
---|
1428 | Try: |
---|
1429 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++98 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1430 | ---------- file ----------------------- |
---|
1431 | |
---|
1432 | #if defined(TEST1) |
---|
1433 | # include <iostream> |
---|
1434 | #else |
---|
1435 | # include <iostream.h> |
---|
1436 | #endif |
---|
1437 | |
---|
1438 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1439 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1440 | #endif |
---|
1441 | |
---|
1442 | class NeedCXX |
---|
1443 | { |
---|
1444 | public: |
---|
1445 | NeedCXX() { this->Foo = 1; } |
---|
1446 | int GetFoo() { return this->Foo; } |
---|
1447 | private: |
---|
1448 | int Foo; |
---|
1449 | }; |
---|
1450 | int main() |
---|
1451 | { |
---|
1452 | NeedCXX c; |
---|
1453 | #ifdef TEST3 |
---|
1454 | cout << c.GetFoo() << endl; |
---|
1455 | #else |
---|
1456 | std::cout << c.GetFoo() << std::endl; |
---|
1457 | #endif |
---|
1458 | return 0; |
---|
1459 | } |
---|
1460 | |
---|
1461 | ------------------------------------------ |
---|
1462 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1463 | Test failed to compile |
---|
1464 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++98 |
---|
1465 | Try: |
---|
1466 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++98 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1467 | ---------- file ----------------------- |
---|
1468 | |
---|
1469 | #if defined(TEST1) |
---|
1470 | # include <iostream> |
---|
1471 | #else |
---|
1472 | # include <iostream.h> |
---|
1473 | #endif |
---|
1474 | |
---|
1475 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1476 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1477 | #endif |
---|
1478 | |
---|
1479 | class NeedCXX |
---|
1480 | { |
---|
1481 | public: |
---|
1482 | NeedCXX() { this->Foo = 1; } |
---|
1483 | int GetFoo() { return this->Foo; } |
---|
1484 | private: |
---|
1485 | int Foo; |
---|
1486 | }; |
---|
1487 | int main() |
---|
1488 | { |
---|
1489 | NeedCXX c; |
---|
1490 | #ifdef TEST3 |
---|
1491 | cout << c.GetFoo() << endl; |
---|
1492 | #else |
---|
1493 | std::cout << c.GetFoo() << std::endl; |
---|
1494 | #endif |
---|
1495 | return 0; |
---|
1496 | } |
---|
1497 | |
---|
1498 | ------------------------------------------ |
---|
1499 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1500 | Test failed to compile |
---|
1501 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports --gnu_extensions |
---|
1502 | Try: |
---|
1503 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 --gnu_extensions -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1504 | ---------- file ----------------------- |
---|
1505 | |
---|
1506 | #if defined(TEST1) |
---|
1507 | # include <iostream> |
---|
1508 | #else |
---|
1509 | # include <iostream.h> |
---|
1510 | #endif |
---|
1511 | |
---|
1512 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1513 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1514 | #endif |
---|
1515 | |
---|
1516 | class NeedCXX |
---|
1517 | { |
---|
1518 | public: |
---|
1519 | NeedCXX() { this->Foo = 1; } |
---|
1520 | int GetFoo() { return this->Foo; } |
---|
1521 | private: |
---|
1522 | int Foo; |
---|
1523 | }; |
---|
1524 | int main() |
---|
1525 | { |
---|
1526 | NeedCXX c; |
---|
1527 | #ifdef TEST3 |
---|
1528 | cout << c.GetFoo() << endl; |
---|
1529 | #else |
---|
1530 | std::cout << c.GetFoo() << std::endl; |
---|
1531 | #endif |
---|
1532 | return 0; |
---|
1533 | } |
---|
1534 | |
---|
1535 | ------------------------------------------ |
---|
1536 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1537 | Test failed to compile |
---|
1538 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=c++03 |
---|
1539 | Try: |
---|
1540 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=c++03 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1541 | ---------- file ----------------------- |
---|
1542 | |
---|
1543 | #if defined(TEST1) |
---|
1544 | # include <iostream> |
---|
1545 | #else |
---|
1546 | # include <iostream.h> |
---|
1547 | #endif |
---|
1548 | |
---|
1549 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1550 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1551 | #endif |
---|
1552 | |
---|
1553 | class NeedCXX |
---|
1554 | { |
---|
1555 | public: |
---|
1556 | NeedCXX() { this->Foo = 1; } |
---|
1557 | int GetFoo() { return this->Foo; } |
---|
1558 | private: |
---|
1559 | int Foo; |
---|
1560 | }; |
---|
1561 | int main() |
---|
1562 | { |
---|
1563 | NeedCXX c; |
---|
1564 | #ifdef TEST3 |
---|
1565 | cout << c.GetFoo() << endl; |
---|
1566 | #else |
---|
1567 | std::cout << c.GetFoo() << std::endl; |
---|
1568 | #endif |
---|
1569 | return 0; |
---|
1570 | } |
---|
1571 | |
---|
1572 | ------------------------------------------ |
---|
1573 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1574 | Test failed to compile |
---|
1575 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -library=stlport4 |
---|
1576 | Try: |
---|
1577 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -library=stlport4 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1578 | ---------- file ----------------------- |
---|
1579 | |
---|
1580 | #if defined(TEST1) |
---|
1581 | # include <iostream> |
---|
1582 | #else |
---|
1583 | # include <iostream.h> |
---|
1584 | #endif |
---|
1585 | |
---|
1586 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1587 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1588 | #endif |
---|
1589 | |
---|
1590 | class NeedCXX |
---|
1591 | { |
---|
1592 | public: |
---|
1593 | NeedCXX() { this->Foo = 1; } |
---|
1594 | int GetFoo() { return this->Foo; } |
---|
1595 | private: |
---|
1596 | int Foo; |
---|
1597 | }; |
---|
1598 | int main() |
---|
1599 | { |
---|
1600 | NeedCXX c; |
---|
1601 | #ifdef TEST3 |
---|
1602 | cout << c.GetFoo() << endl; |
---|
1603 | #else |
---|
1604 | std::cout << c.GetFoo() << std::endl; |
---|
1605 | #endif |
---|
1606 | return 0; |
---|
1607 | } |
---|
1608 | |
---|
1609 | ------------------------------------------ |
---|
1610 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1611 | Test failed to compile |
---|
1612 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++98 |
---|
1613 | Try: |
---|
1614 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -std=gnu++98 -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1615 | ---------- file ----------------------- |
---|
1616 | |
---|
1617 | #if defined(TEST1) |
---|
1618 | # include <iostream> |
---|
1619 | #else |
---|
1620 | # include <iostream.h> |
---|
1621 | #endif |
---|
1622 | |
---|
1623 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1624 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1625 | #endif |
---|
1626 | |
---|
1627 | class NeedCXX |
---|
1628 | { |
---|
1629 | public: |
---|
1630 | NeedCXX() { this->Foo = 1; } |
---|
1631 | int GetFoo() { return this->Foo; } |
---|
1632 | private: |
---|
1633 | int Foo; |
---|
1634 | }; |
---|
1635 | int main() |
---|
1636 | { |
---|
1637 | NeedCXX c; |
---|
1638 | #ifdef TEST3 |
---|
1639 | cout << c.GetFoo() << endl; |
---|
1640 | #else |
---|
1641 | std::cout << c.GetFoo() << std::endl; |
---|
1642 | #endif |
---|
1643 | return 0; |
---|
1644 | } |
---|
1645 | |
---|
1646 | ------------------------------------------ |
---|
1647 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1648 | Test failed to compile |
---|
1649 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -qlanglvl=extended |
---|
1650 | Try: |
---|
1651 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -qlanglvl=extended -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1652 | ---------- file ----------------------- |
---|
1653 | |
---|
1654 | #if defined(TEST1) |
---|
1655 | # include <iostream> |
---|
1656 | #else |
---|
1657 | # include <iostream.h> |
---|
1658 | #endif |
---|
1659 | |
---|
1660 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1661 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1662 | #endif |
---|
1663 | |
---|
1664 | class NeedCXX |
---|
1665 | { |
---|
1666 | public: |
---|
1667 | NeedCXX() { this->Foo = 1; } |
---|
1668 | int GetFoo() { return this->Foo; } |
---|
1669 | private: |
---|
1670 | int Foo; |
---|
1671 | }; |
---|
1672 | int main() |
---|
1673 | { |
---|
1674 | NeedCXX c; |
---|
1675 | #ifdef TEST3 |
---|
1676 | cout << c.GetFoo() << endl; |
---|
1677 | #else |
---|
1678 | std::cout << c.GetFoo() << std::endl; |
---|
1679 | #endif |
---|
1680 | return 0; |
---|
1681 | } |
---|
1682 | |
---|
1683 | ------------------------------------------ |
---|
1684 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1685 | Test failed to compile |
---|
1686 | Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -qlanglvl=extended |
---|
1687 | Try: |
---|
1688 | Line: -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 -qlanglvl=extended -DTEST1 cmake_bootstrap_81730_test.cxx -o cmake_bootstrap_81730_test |
---|
1689 | ---------- file ----------------------- |
---|
1690 | |
---|
1691 | #if defined(TEST1) |
---|
1692 | # include <iostream> |
---|
1693 | #else |
---|
1694 | # include <iostream.h> |
---|
1695 | #endif |
---|
1696 | |
---|
1697 | #if __cplusplus >= 201103L && defined(__SUNPRO_CC) && __SUNPRO_CC < 0x5140 |
---|
1698 | #error "SunPro <= 5.13 C++ 11 mode not supported due to bug in move semantics." |
---|
1699 | #endif |
---|
1700 | |
---|
1701 | class NeedCXX |
---|
1702 | { |
---|
1703 | public: |
---|
1704 | NeedCXX() { this->Foo = 1; } |
---|
1705 | int GetFoo() { return this->Foo; } |
---|
1706 | private: |
---|
1707 | int Foo; |
---|
1708 | }; |
---|
1709 | int main() |
---|
1710 | { |
---|
1711 | NeedCXX c; |
---|
1712 | #ifdef TEST3 |
---|
1713 | cout << c.GetFoo() << endl; |
---|
1714 | #else |
---|
1715 | std::cout << c.GetFoo() << std::endl; |
---|
1716 | #endif |
---|
1717 | return 0; |
---|
1718 | } |
---|
1719 | |
---|
1720 | ------------------------------------------ |
---|
1721 | /Users/lukasoberhuber/macports-gimp3-x86_64/var/macports/build/_Users_lukasoberhuber_macports-gimp3-x86_64_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_devel_cmake-bootstrap/cmake-bootstrap/work/cmake-3.9.6/bootstrap: line 677: : command not found |
---|
1722 | Test failed to compile |
---|