Ticket #69812: cmake_bootstrap.log

File cmake_bootstrap.log, 52.9 KB (added by lukaso (Lukas Oberhuber), 4 weeks ago)

Configure failure

Line 
1Try: /usr/bin/clang
2Line: /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__)
12int main(argc, argv)
13  int argc;
14  char* argv[];
15#else
16int main(int argc, char* argv[])
17#endif
18{
19  printf("%d%c", (argv != 0), (char)0x0a);
20  return argc-1;
21}
22
23------------------------------------------
241
25Test succeeded
26Checking whether /usr/bin/clang supports -std=gnu11
27Try: /usr/bin/clang
28Line: /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__)
38int main(argc, argv)
39  int argc;
40  char* argv[];
41#else
42int main(int argc, char* argv[])
43#endif
44{
45  printf("%d%c", (argv != 0), (char)0x0a);
46  return argc-1;
47}
48
49------------------------------------------
501
51Test succeeded
52Try: /usr/bin/clang++
53Line: /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
66class NeedCXX
67{
68public:
69  NeedCXX() { this->Foo = 1; }
70  int GetFoo() { return this->Foo; }
71private:
72  int Foo;
73};
74int 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------------------------------------------
86cmake_bootstrap_81730_test.cxx:3:11: fatal error: 'iostream' file not found
87# include <iostream>
88          ^~~~~~~~~~
891 error generated.
90Test failed to compile
91Try: /usr/bin/clang++
92Line: /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
105class NeedCXX
106{
107public:
108  NeedCXX() { this->Foo = 1; }
109  int GetFoo() { return this->Foo; }
110private:
111  int Foo;
112};
113int 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------------------------------------------
125cmake_bootstrap_81730_test.cxx:5:11: fatal error: 'iostream.h' file not found
126# include <iostream.h>
127          ^~~~~~~~~~~~
1281 error generated.
129Test failed to compile
130Try: /usr/bin/clang++
131Line: /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
144class NeedCXX
145{
146public:
147  NeedCXX() { this->Foo = 1; }
148  int GetFoo() { return this->Foo; }
149private:
150  int Foo;
151};
152int 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------------------------------------------
164cmake_bootstrap_81730_test.cxx:5:11: fatal error: 'iostream.h' file not found
165# include <iostream.h>
166          ^~~~~~~~~~~~
1671 error generated.
168Test failed to compile
169Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++14
170Try:
171Line:  -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
184class NeedCXX
185{
186public:
187  NeedCXX() { this->Foo = 1; }
188  int GetFoo() { return this->Foo; }
189private:
190  int Foo;
191};
192int 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
205Test failed to compile
206Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++1y
207Try:
208Line:  -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
221class NeedCXX
222{
223public:
224  NeedCXX() { this->Foo = 1; }
225  int GetFoo() { return this->Foo; }
226private:
227  int Foo;
228};
229int 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
242Test failed to compile
243Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++14
244Try:
245Line:  -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
258class NeedCXX
259{
260public:
261  NeedCXX() { this->Foo = 1; }
262  int GetFoo() { return this->Foo; }
263private:
264  int Foo;
265};
266int 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
279Test failed to compile
280Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++1y
281Try:
282Line:  -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
295class NeedCXX
296{
297public:
298  NeedCXX() { this->Foo = 1; }
299  int GetFoo() { return this->Foo; }
300private:
301  int Foo;
302};
303int 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
316Test failed to compile
317Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++14
318Try:
319Line:  -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
332class NeedCXX
333{
334public:
335  NeedCXX() { this->Foo = 1; }
336  int GetFoo() { return this->Foo; }
337private:
338  int Foo;
339};
340int 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
353Test failed to compile
354Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++1y
355Try:
356Line:  -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
369class NeedCXX
370{
371public:
372  NeedCXX() { this->Foo = 1; }
373  int GetFoo() { return this->Foo; }
374private:
375  int Foo;
376};
377int 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
390Test failed to compile
391Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -Qstd=c++14
392Try:
393Line:  -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
406class NeedCXX
407{
408public:
409  NeedCXX() { this->Foo = 1; }
410  int GetFoo() { return this->Foo; }
411private:
412  int Foo;
413};
414int 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
427Test failed to compile
428Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=c++14
429Try:
430Line:  -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
443class NeedCXX
444{
445public:
446  NeedCXX() { this->Foo = 1; }
447  int GetFoo() { return this->Foo; }
448private:
449  int Foo;
450};
451int 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
464Test failed to compile
465Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=c++1y
466Try:
467Line:  -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
480class NeedCXX
481{
482public:
483  NeedCXX() { this->Foo = 1; }
484  int GetFoo() { return this->Foo; }
485private:
486  int Foo;
487};
488int 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
501Test failed to compile
502Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports --c++14
503Try:
504Line:  -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
517class NeedCXX
518{
519public:
520  NeedCXX() { this->Foo = 1; }
521  int GetFoo() { return this->Foo; }
522private:
523  int Foo;
524};
525int 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
538Test failed to compile
539Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports --gnu_extensions
540Try:
541Line:  -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
554class NeedCXX
555{
556public:
557  NeedCXX() { this->Foo = 1; }
558  int GetFoo() { return this->Foo; }
559private:
560  int Foo;
561};
562int 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
575Test failed to compile
576Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -qlanglvl=extended1y
577Try:
578Line:  -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
591class NeedCXX
592{
593public:
594  NeedCXX() { this->Foo = 1; }
595  int GetFoo() { return this->Foo; }
596private:
597  int Foo;
598};
599int 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
612Test failed to compile
613Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++11
614Try:
615Line:  -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
628class NeedCXX
629{
630public:
631  NeedCXX() { this->Foo = 1; }
632  int GetFoo() { return this->Foo; }
633private:
634  int Foo;
635};
636int 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
649Test failed to compile
650Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++11
651Try:
652Line:  -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
665class NeedCXX
666{
667public:
668  NeedCXX() { this->Foo = 1; }
669  int GetFoo() { return this->Foo; }
670private:
671  int Foo;
672};
673int 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
686Test failed to compile
687Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++0x
688Try:
689Line:  -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
702class NeedCXX
703{
704public:
705  NeedCXX() { this->Foo = 1; }
706  int GetFoo() { return this->Foo; }
707private:
708  int Foo;
709};
710int 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
723Test failed to compile
724Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -h
725Try:
726Line:  -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
739class NeedCXX
740{
741public:
742  NeedCXX() { this->Foo = 1; }
743  int GetFoo() { return this->Foo; }
744private:
745  int Foo;
746};
747int 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
760Test failed to compile
761Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports std=c++11,gnu
762Try:
763Line:  -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
776class NeedCXX
777{
778public:
779  NeedCXX() { this->Foo = 1; }
780  int GetFoo() { return this->Foo; }
781private:
782  int Foo;
783};
784int 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
797Test failed to compile
798Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++11
799Try:
800Line:  -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
813class NeedCXX
814{
815public:
816  NeedCXX() { this->Foo = 1; }
817  int GetFoo() { return this->Foo; }
818private:
819  int Foo;
820};
821int 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
834Test failed to compile
835Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++0x
836Try:
837Line:  -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
850class NeedCXX
851{
852public:
853  NeedCXX() { this->Foo = 1; }
854  int GetFoo() { return this->Foo; }
855private:
856  int Foo;
857};
858int 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
871Test failed to compile
872Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -Qstd=c++11
873Try:
874Line:  -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
887class NeedCXX
888{
889public:
890  NeedCXX() { this->Foo = 1; }
891  int GetFoo() { return this->Foo; }
892private:
893  int Foo;
894};
895int 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
908Test failed to compile
909Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -Qstd=c++0x
910Try:
911Line:  -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
924class NeedCXX
925{
926public:
927  NeedCXX() { this->Foo = 1; }
928  int GetFoo() { return this->Foo; }
929private:
930  int Foo;
931};
932int 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
945Test failed to compile
946Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++11
947Try:
948Line:  -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
961class NeedCXX
962{
963public:
964  NeedCXX() { this->Foo = 1; }
965  int GetFoo() { return this->Foo; }
966private:
967  int Foo;
968};
969int 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
982Test failed to compile
983Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++0x
984Try:
985Line:  -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
998class NeedCXX
999{
1000public:
1001  NeedCXX() { this->Foo = 1; }
1002  int GetFoo() { return this->Foo; }
1003private:
1004  int Foo;
1005};
1006int 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
1019Test failed to compile
1020Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports --c++11
1021Try:
1022Line:  -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
1035class NeedCXX
1036{
1037public:
1038  NeedCXX() { this->Foo = 1; }
1039  int GetFoo() { return this->Foo; }
1040private:
1041  int Foo;
1042};
1043int 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
1056Test failed to compile
1057Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports --gnu_extensions
1058Try:
1059Line:  -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
1072class NeedCXX
1073{
1074public:
1075  NeedCXX() { this->Foo = 1; }
1076  int GetFoo() { return this->Foo; }
1077private:
1078  int Foo;
1079};
1080int 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
1093Test failed to compile
1094Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=c++11
1095Try:
1096Line:  -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
1109class NeedCXX
1110{
1111public:
1112  NeedCXX() { this->Foo = 1; }
1113  int GetFoo() { return this->Foo; }
1114private:
1115  int Foo;
1116};
1117int 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
1130Test failed to compile
1131Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++11
1132Try:
1133Line:  -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
1146class NeedCXX
1147{
1148public:
1149  NeedCXX() { this->Foo = 1; }
1150  int GetFoo() { return this->Foo; }
1151private:
1152  int Foo;
1153};
1154int 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
1167Test failed to compile
1168Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -qlanglvl=extended0x
1169Try:
1170Line:  -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
1183class NeedCXX
1184{
1185public:
1186  NeedCXX() { this->Foo = 1; }
1187  int GetFoo() { return this->Foo; }
1188private:
1189  int Foo;
1190};
1191int 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
1204Test failed to compile
1205Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -qlanglvl=extended0x
1206Try:
1207Line:  -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
1220class NeedCXX
1221{
1222public:
1223  NeedCXX() { this->Foo = 1; }
1224  int GetFoo() { return this->Foo; }
1225private:
1226  int Foo;
1227};
1228int 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
1241Test failed to compile
1242Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -qlanglvl=extended0x
1243Try:
1244Line:  -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
1257class NeedCXX
1258{
1259public:
1260  NeedCXX() { this->Foo = 1; }
1261  int GetFoo() { return this->Foo; }
1262private:
1263  int Foo;
1264};
1265int 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
1278Test failed to compile
1279Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++98
1280Try:
1281Line:  -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
1294class NeedCXX
1295{
1296public:
1297  NeedCXX() { this->Foo = 1; }
1298  int GetFoo() { return this->Foo; }
1299private:
1300  int Foo;
1301};
1302int 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
1315Test failed to compile
1316Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++98
1317Try:
1318Line:  -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
1331class NeedCXX
1332{
1333public:
1334  NeedCXX() { this->Foo = 1; }
1335  int GetFoo() { return this->Foo; }
1336private:
1337  int Foo;
1338};
1339int 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
1352Test failed to compile
1353Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -h
1354Try:
1355Line:  -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
1368class NeedCXX
1369{
1370public:
1371  NeedCXX() { this->Foo = 1; }
1372  int GetFoo() { return this->Foo; }
1373private:
1374  int Foo;
1375};
1376int 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
1389Test failed to compile
1390Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports gnu
1391Try:
1392Line:  -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
1405class NeedCXX
1406{
1407public:
1408  NeedCXX() { this->Foo = 1; }
1409  int GetFoo() { return this->Foo; }
1410private:
1411  int Foo;
1412};
1413int 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
1426Test failed to compile
1427Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++98
1428Try:
1429Line:  -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
1442class NeedCXX
1443{
1444public:
1445  NeedCXX() { this->Foo = 1; }
1446  int GetFoo() { return this->Foo; }
1447private:
1448  int Foo;
1449};
1450int 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
1463Test failed to compile
1464Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++98
1465Try:
1466Line:  -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
1479class NeedCXX
1480{
1481public:
1482  NeedCXX() { this->Foo = 1; }
1483  int GetFoo() { return this->Foo; }
1484private:
1485  int Foo;
1486};
1487int 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
1500Test failed to compile
1501Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports --gnu_extensions
1502Try:
1503Line:  -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
1516class NeedCXX
1517{
1518public:
1519  NeedCXX() { this->Foo = 1; }
1520  int GetFoo() { return this->Foo; }
1521private:
1522  int Foo;
1523};
1524int 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
1537Test failed to compile
1538Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=c++03
1539Try:
1540Line:  -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
1553class NeedCXX
1554{
1555public:
1556  NeedCXX() { this->Foo = 1; }
1557  int GetFoo() { return this->Foo; }
1558private:
1559  int Foo;
1560};
1561int 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
1574Test failed to compile
1575Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -library=stlport4
1576Try:
1577Line:  -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
1590class NeedCXX
1591{
1592public:
1593  NeedCXX() { this->Foo = 1; }
1594  int GetFoo() { return this->Foo; }
1595private:
1596  int Foo;
1597};
1598int 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
1611Test failed to compile
1612Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -std=gnu++98
1613Try:
1614Line:  -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
1627class NeedCXX
1628{
1629public:
1630  NeedCXX() { this->Foo = 1; }
1631  int GetFoo() { return this->Foo; }
1632private:
1633  int Foo;
1634};
1635int 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
1648Test failed to compile
1649Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -qlanglvl=extended
1650Try:
1651Line:  -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
1664class NeedCXX
1665{
1666public:
1667  NeedCXX() { this->Foo = 1; }
1668  int GetFoo() { return this->Foo; }
1669private:
1670  int Foo;
1671};
1672int 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
1685Test failed to compile
1686Checking for wheter -pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX10.13.sdk -arch x86_64 supports -qlanglvl=extended
1687Try:
1688Line:  -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
1701class NeedCXX
1702{
1703public:
1704  NeedCXX() { this->Foo = 1; }
1705  int GetFoo() { return this->Foo; }
1706private:
1707  int Foo;
1708};
1709int 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
1722Test failed to compile