Advertisement
Guest User

log

a guest
Aug 30th, 2013
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.93 KB | None | 0 0
  1. Checking for GNU toolchain
  2. Try: gcc
  3. Line: gcc cmake_bootstrap_12545_test.c -o cmake_bootstrap_12545_test
  4. ---------- file -----------------------
  5. int main() { return 0; }
  6. ------------------------------------------
  7. Test succeded
  8. Try: g++
  9. Line: g++ cmake_bootstrap_12545_test.cpp -o cmake_bootstrap_12545_test
  10. ---------- file -----------------------
  11. int main() { return 0; }
  12. ------------------------------------------
  13. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__adddf3@GLIBC_2.3.3'
  14. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__muldf3@GLIBC_2.3.3'
  15. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__fixunsdfsi@GLIBC_2.3.3'
  16. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__floatsidf@GLIBC_2.3.3'
  17. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__extendsfdf2@GLIBC_2.3.3'
  18. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__subdf3@GLIBC_2.3.3'
  19. collect2: ld returned 1 exit status
  20. Test failed to compile
  21. Checking for Clang toolchain
  22. Try: clang
  23. Line: clang cmake_bootstrap_12545_test.c -o cmake_bootstrap_12545_test
  24. ---------- file -----------------------
  25. int main() { return 0; }
  26. ------------------------------------------
  27. ./bootstrap: line 1: clang: not found
  28. Test failed to compile
  29. Checking for XL toolchain
  30. Try: xlc
  31. Line: xlc cmake_bootstrap_12545_test.c -o cmake_bootstrap_12545_test
  32. ---------- file -----------------------
  33. int main() { return 0; }
  34. ------------------------------------------
  35. ./bootstrap: line 1: xlc: not found
  36. Test failed to compile
  37. Checking for PGI toolchain
  38. Try: pgcc
  39. Line: pgcc cmake_bootstrap_12545_test.c -o cmake_bootstrap_12545_test
  40. ---------- file -----------------------
  41. int main() { return 0; }
  42. ------------------------------------------
  43. ./bootstrap: line 1: pgcc: not found
  44. Test failed to compile
  45. Checking for PathScale toolchain
  46. Try: pathcc
  47. Line: pathcc cmake_bootstrap_12545_test.c -o cmake_bootstrap_12545_test
  48. ---------- file -----------------------
  49. int main() { return 0; }
  50. ------------------------------------------
  51. ./bootstrap: line 1: pathcc: not found
  52. Test failed to compile
  53. Try: cc
  54. Line: cc cmake_bootstrap_12545_test.c -o cmake_bootstrap_12545_test
  55. ---------- file -----------------------
  56.  
  57. #ifdef __cplusplus
  58. # error "The CMAKE_C_COMPILER is set to a C++ compiler"
  59. #endif
  60.  
  61. #include<stdio.h>
  62.  
  63. #if defined(__CLASSIC_C__)
  64. int main(argc, argv)
  65. int argc;
  66. char* argv[];
  67. #else
  68. int main(int argc, char* argv[])
  69. #endif
  70. {
  71. printf("%d%c", (argv != 0), (char)0x0a);
  72. return argc-1;
  73. }
  74.  
  75. ------------------------------------------
  76. ./bootstrap: line 675: cc: not found
  77. Test failed to compile
  78. Try: gcc
  79. Line: gcc cmake_bootstrap_12545_test.c -o cmake_bootstrap_12545_test
  80. ---------- file -----------------------
  81.  
  82. #ifdef __cplusplus
  83. # error "The CMAKE_C_COMPILER is set to a C++ compiler"
  84. #endif
  85.  
  86. #include<stdio.h>
  87.  
  88. #if defined(__CLASSIC_C__)
  89. int main(argc, argv)
  90. int argc;
  91. char* argv[];
  92. #else
  93. int main(int argc, char* argv[])
  94. #endif
  95. {
  96. printf("%d%c", (argv != 0), (char)0x0a);
  97. return argc-1;
  98. }
  99.  
  100. ------------------------------------------
  101. 1
  102. Test succeded
  103. Try: aCC
  104. Line: aCC -DTEST1 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  105. ---------- file -----------------------
  106.  
  107. #if defined(TEST1)
  108. # include <iostream>
  109. #else
  110. # include <iostream.h>
  111. #endif
  112.  
  113. class NeedCXX
  114. {
  115. public:
  116. NeedCXX() { this->Foo = 1; }
  117. int GetFoo() { return this->Foo; }
  118. private:
  119. int Foo;
  120. };
  121. int main()
  122. {
  123. NeedCXX c;
  124. #ifdef TEST3
  125. cout << c.GetFoo() << endl;
  126. #else
  127. std::cout << c.GetFoo() << std::endl;
  128. #endif
  129. return 0;
  130. }
  131.  
  132. ------------------------------------------
  133. ./bootstrap: line 736: aCC: not found
  134. Test failed to compile
  135. Try: aCC
  136. Line: aCC -DTEST2 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  137. ---------- file -----------------------
  138.  
  139. #if defined(TEST1)
  140. # include <iostream>
  141. #else
  142. # include <iostream.h>
  143. #endif
  144.  
  145. class NeedCXX
  146. {
  147. public:
  148. NeedCXX() { this->Foo = 1; }
  149. int GetFoo() { return this->Foo; }
  150. private:
  151. int Foo;
  152. };
  153. int main()
  154. {
  155. NeedCXX c;
  156. #ifdef TEST3
  157. cout << c.GetFoo() << endl;
  158. #else
  159. std::cout << c.GetFoo() << std::endl;
  160. #endif
  161. return 0;
  162. }
  163.  
  164. ------------------------------------------
  165. ./bootstrap: line 736: aCC: not found
  166. Test failed to compile
  167. Try: aCC
  168. Line: aCC -DTEST3 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  169. ---------- file -----------------------
  170.  
  171. #if defined(TEST1)
  172. # include <iostream>
  173. #else
  174. # include <iostream.h>
  175. #endif
  176.  
  177. class NeedCXX
  178. {
  179. public:
  180. NeedCXX() { this->Foo = 1; }
  181. int GetFoo() { return this->Foo; }
  182. private:
  183. int Foo;
  184. };
  185. int main()
  186. {
  187. NeedCXX c;
  188. #ifdef TEST3
  189. cout << c.GetFoo() << endl;
  190. #else
  191. std::cout << c.GetFoo() << std::endl;
  192. #endif
  193. return 0;
  194. }
  195.  
  196. ------------------------------------------
  197. ./bootstrap: line 736: aCC: not found
  198. Test failed to compile
  199. Try: xlC
  200. Line: xlC -DTEST1 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  201. ---------- file -----------------------
  202.  
  203. #if defined(TEST1)
  204. # include <iostream>
  205. #else
  206. # include <iostream.h>
  207. #endif
  208.  
  209. class NeedCXX
  210. {
  211. public:
  212. NeedCXX() { this->Foo = 1; }
  213. int GetFoo() { return this->Foo; }
  214. private:
  215. int Foo;
  216. };
  217. int main()
  218. {
  219. NeedCXX c;
  220. #ifdef TEST3
  221. cout << c.GetFoo() << endl;
  222. #else
  223. std::cout << c.GetFoo() << std::endl;
  224. #endif
  225. return 0;
  226. }
  227.  
  228. ------------------------------------------
  229. ./bootstrap: line 736: xlC: not found
  230. Test failed to compile
  231. Try: xlC
  232. Line: xlC -DTEST2 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  233. ---------- file -----------------------
  234.  
  235. #if defined(TEST1)
  236. # include <iostream>
  237. #else
  238. # include <iostream.h>
  239. #endif
  240.  
  241. class NeedCXX
  242. {
  243. public:
  244. NeedCXX() { this->Foo = 1; }
  245. int GetFoo() { return this->Foo; }
  246. private:
  247. int Foo;
  248. };
  249. int main()
  250. {
  251. NeedCXX c;
  252. #ifdef TEST3
  253. cout << c.GetFoo() << endl;
  254. #else
  255. std::cout << c.GetFoo() << std::endl;
  256. #endif
  257. return 0;
  258. }
  259.  
  260. ------------------------------------------
  261. ./bootstrap: line 736: xlC: not found
  262. Test failed to compile
  263. Try: xlC
  264. Line: xlC -DTEST3 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  265. ---------- file -----------------------
  266.  
  267. #if defined(TEST1)
  268. # include <iostream>
  269. #else
  270. # include <iostream.h>
  271. #endif
  272.  
  273. class NeedCXX
  274. {
  275. public:
  276. NeedCXX() { this->Foo = 1; }
  277. int GetFoo() { return this->Foo; }
  278. private:
  279. int Foo;
  280. };
  281. int main()
  282. {
  283. NeedCXX c;
  284. #ifdef TEST3
  285. cout << c.GetFoo() << endl;
  286. #else
  287. std::cout << c.GetFoo() << std::endl;
  288. #endif
  289. return 0;
  290. }
  291.  
  292. ------------------------------------------
  293. ./bootstrap: line 736: xlC: not found
  294. Test failed to compile
  295. Try: CC
  296. Line: CC -DTEST1 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  297. ---------- file -----------------------
  298.  
  299. #if defined(TEST1)
  300. # include <iostream>
  301. #else
  302. # include <iostream.h>
  303. #endif
  304.  
  305. class NeedCXX
  306. {
  307. public:
  308. NeedCXX() { this->Foo = 1; }
  309. int GetFoo() { return this->Foo; }
  310. private:
  311. int Foo;
  312. };
  313. int main()
  314. {
  315. NeedCXX c;
  316. #ifdef TEST3
  317. cout << c.GetFoo() << endl;
  318. #else
  319. std::cout << c.GetFoo() << std::endl;
  320. #endif
  321. return 0;
  322. }
  323.  
  324. ------------------------------------------
  325. ./bootstrap: line 736: CC: not found
  326. Test failed to compile
  327. Try: CC
  328. Line: CC -DTEST2 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  329. ---------- file -----------------------
  330.  
  331. #if defined(TEST1)
  332. # include <iostream>
  333. #else
  334. # include <iostream.h>
  335. #endif
  336.  
  337. class NeedCXX
  338. {
  339. public:
  340. NeedCXX() { this->Foo = 1; }
  341. int GetFoo() { return this->Foo; }
  342. private:
  343. int Foo;
  344. };
  345. int main()
  346. {
  347. NeedCXX c;
  348. #ifdef TEST3
  349. cout << c.GetFoo() << endl;
  350. #else
  351. std::cout << c.GetFoo() << std::endl;
  352. #endif
  353. return 0;
  354. }
  355.  
  356. ------------------------------------------
  357. ./bootstrap: line 736: CC: not found
  358. Test failed to compile
  359. Try: CC
  360. Line: CC -DTEST3 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  361. ---------- file -----------------------
  362.  
  363. #if defined(TEST1)
  364. # include <iostream>
  365. #else
  366. # include <iostream.h>
  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. ./bootstrap: line 736: CC: not found
  390. Test failed to compile
  391. Try: g++
  392. Line: g++ -DTEST1 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  393. ---------- file -----------------------
  394.  
  395. #if defined(TEST1)
  396. # include <iostream>
  397. #else
  398. # include <iostream.h>
  399. #endif
  400.  
  401. class NeedCXX
  402. {
  403. public:
  404. NeedCXX() { this->Foo = 1; }
  405. int GetFoo() { return this->Foo; }
  406. private:
  407. int Foo;
  408. };
  409. int main()
  410. {
  411. NeedCXX c;
  412. #ifdef TEST3
  413. cout << c.GetFoo() << endl;
  414. #else
  415. std::cout << c.GetFoo() << std::endl;
  416. #endif
  417. return 0;
  418. }
  419.  
  420. ------------------------------------------
  421. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__adddf3@GLIBC_2.3.3'
  422. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__muldf3@GLIBC_2.3.3'
  423. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__fixunsdfsi@GLIBC_2.3.3'
  424. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__floatsidf@GLIBC_2.3.3'
  425. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__extendsfdf2@GLIBC_2.3.3'
  426. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__subdf3@GLIBC_2.3.3'
  427. collect2: ld returned 1 exit status
  428. Test failed to compile
  429. Try: g++
  430. Line: g++ -DTEST2 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  431. ---------- file -----------------------
  432.  
  433. #if defined(TEST1)
  434. # include <iostream>
  435. #else
  436. # include <iostream.h>
  437. #endif
  438.  
  439. class NeedCXX
  440. {
  441. public:
  442. NeedCXX() { this->Foo = 1; }
  443. int GetFoo() { return this->Foo; }
  444. private:
  445. int Foo;
  446. };
  447. int main()
  448. {
  449. NeedCXX c;
  450. #ifdef TEST3
  451. cout << c.GetFoo() << endl;
  452. #else
  453. std::cout << c.GetFoo() << std::endl;
  454. #endif
  455. return 0;
  456. }
  457.  
  458. ------------------------------------------
  459. In file included from /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../include/c++/3.4.6/backward/iostream.h:31,
  460. from cmake_bootstrap_12545_test.cxx:5:
  461. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../include/c++/3.4.6/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <iostream> instead of the deprecated header <iostream.h>. To disable this warning use -Wno-deprecated.
  462. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__adddf3@GLIBC_2.3.3'
  463. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__muldf3@GLIBC_2.3.3'
  464. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__fixunsdfsi@GLIBC_2.3.3'
  465. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__floatsidf@GLIBC_2.3.3'
  466. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__extendsfdf2@GLIBC_2.3.3'
  467. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__subdf3@GLIBC_2.3.3'
  468. collect2: ld returned 1 exit status
  469. Test failed to compile
  470. Try: g++
  471. Line: g++ -DTEST3 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  472. ---------- file -----------------------
  473.  
  474. #if defined(TEST1)
  475. # include <iostream>
  476. #else
  477. # include <iostream.h>
  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. In file included from /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../include/c++/3.4.6/backward/iostream.h:31,
  501. from cmake_bootstrap_12545_test.cxx:5:
  502. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../include/c++/3.4.6/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <iostream> instead of the deprecated header <iostream.h>. To disable this warning use -Wno-deprecated.
  503. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__adddf3@GLIBC_2.3.3'
  504. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__muldf3@GLIBC_2.3.3'
  505. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__fixunsdfsi@GLIBC_2.3.3'
  506. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__floatsidf@GLIBC_2.3.3'
  507. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__extendsfdf2@GLIBC_2.3.3'
  508. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__subdf3@GLIBC_2.3.3'
  509. collect2: ld returned 1 exit status
  510. Test failed to compile
  511. Try: c++
  512. Line: c++ -DTEST1 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  513. ---------- file -----------------------
  514.  
  515. #if defined(TEST1)
  516. # include <iostream>
  517. #else
  518. # include <iostream.h>
  519. #endif
  520.  
  521. class NeedCXX
  522. {
  523. public:
  524. NeedCXX() { this->Foo = 1; }
  525. int GetFoo() { return this->Foo; }
  526. private:
  527. int Foo;
  528. };
  529. int main()
  530. {
  531. NeedCXX c;
  532. #ifdef TEST3
  533. cout << c.GetFoo() << endl;
  534. #else
  535. std::cout << c.GetFoo() << std::endl;
  536. #endif
  537. return 0;
  538. }
  539.  
  540. ------------------------------------------
  541. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__adddf3@GLIBC_2.3.3'
  542. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__muldf3@GLIBC_2.3.3'
  543. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__fixunsdfsi@GLIBC_2.3.3'
  544. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__floatsidf@GLIBC_2.3.3'
  545. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__extendsfdf2@GLIBC_2.3.3'
  546. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__subdf3@GLIBC_2.3.3'
  547. collect2: ld returned 1 exit status
  548. Test failed to compile
  549. Try: c++
  550. Line: c++ -DTEST2 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  551. ---------- file -----------------------
  552.  
  553. #if defined(TEST1)
  554. # include <iostream>
  555. #else
  556. # include <iostream.h>
  557. #endif
  558.  
  559. class NeedCXX
  560. {
  561. public:
  562. NeedCXX() { this->Foo = 1; }
  563. int GetFoo() { return this->Foo; }
  564. private:
  565. int Foo;
  566. };
  567. int main()
  568. {
  569. NeedCXX c;
  570. #ifdef TEST3
  571. cout << c.GetFoo() << endl;
  572. #else
  573. std::cout << c.GetFoo() << std::endl;
  574. #endif
  575. return 0;
  576. }
  577.  
  578. ------------------------------------------
  579. In file included from /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../include/c++/3.4.6/backward/iostream.h:31,
  580. from cmake_bootstrap_12545_test.cxx:5:
  581. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../include/c++/3.4.6/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <iostream> instead of the deprecated header <iostream.h>. To disable this warning use -Wno-deprecated.
  582. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__adddf3@GLIBC_2.3.3'
  583. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__muldf3@GLIBC_2.3.3'
  584. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__fixunsdfsi@GLIBC_2.3.3'
  585. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__floatsidf@GLIBC_2.3.3'
  586. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__extendsfdf2@GLIBC_2.3.3'
  587. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__subdf3@GLIBC_2.3.3'
  588. collect2: ld returned 1 exit status
  589. Test failed to compile
  590. Try: c++
  591. Line: c++ -DTEST3 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  592. ---------- file -----------------------
  593.  
  594. #if defined(TEST1)
  595. # include <iostream>
  596. #else
  597. # include <iostream.h>
  598. #endif
  599.  
  600. class NeedCXX
  601. {
  602. public:
  603. NeedCXX() { this->Foo = 1; }
  604. int GetFoo() { return this->Foo; }
  605. private:
  606. int Foo;
  607. };
  608. int main()
  609. {
  610. NeedCXX c;
  611. #ifdef TEST3
  612. cout << c.GetFoo() << endl;
  613. #else
  614. std::cout << c.GetFoo() << std::endl;
  615. #endif
  616. return 0;
  617. }
  618.  
  619. ------------------------------------------
  620. In file included from /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../include/c++/3.4.6/backward/iostream.h:31,
  621. from cmake_bootstrap_12545_test.cxx:5:
  622. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../include/c++/3.4.6/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <iostream> instead of the deprecated header <iostream.h>. To disable this warning use -Wno-deprecated.
  623. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__adddf3@GLIBC_2.3.3'
  624. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__muldf3@GLIBC_2.3.3'
  625. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__fixunsdfsi@GLIBC_2.3.3'
  626. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__floatsidf@GLIBC_2.3.3'
  627. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__extendsfdf2@GLIBC_2.3.3'
  628. /opt/lib/gcc/powerpc-linux-gnuspe/3.4.6/../../../../powerpc-linux-gnuspe/lib/libm.so: undefined reference to `__subdf3@GLIBC_2.3.3'
  629. collect2: ld returned 1 exit status
  630. Test failed to compile
  631. Try: icc
  632. Line: icc -DTEST1 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  633. ---------- file -----------------------
  634.  
  635. #if defined(TEST1)
  636. # include <iostream>
  637. #else
  638. # include <iostream.h>
  639. #endif
  640.  
  641. class NeedCXX
  642. {
  643. public:
  644. NeedCXX() { this->Foo = 1; }
  645. int GetFoo() { return this->Foo; }
  646. private:
  647. int Foo;
  648. };
  649. int main()
  650. {
  651. NeedCXX c;
  652. #ifdef TEST3
  653. cout << c.GetFoo() << endl;
  654. #else
  655. std::cout << c.GetFoo() << std::endl;
  656. #endif
  657. return 0;
  658. }
  659.  
  660. ------------------------------------------
  661. ./bootstrap: line 736: icc: not found
  662. Test failed to compile
  663. Try: icc
  664. Line: icc -DTEST2 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  665. ---------- file -----------------------
  666.  
  667. #if defined(TEST1)
  668. # include <iostream>
  669. #else
  670. # include <iostream.h>
  671. #endif
  672.  
  673. class NeedCXX
  674. {
  675. public:
  676. NeedCXX() { this->Foo = 1; }
  677. int GetFoo() { return this->Foo; }
  678. private:
  679. int Foo;
  680. };
  681. int main()
  682. {
  683. NeedCXX c;
  684. #ifdef TEST3
  685. cout << c.GetFoo() << endl;
  686. #else
  687. std::cout << c.GetFoo() << std::endl;
  688. #endif
  689. return 0;
  690. }
  691.  
  692. ------------------------------------------
  693. ./bootstrap: line 736: icc: not found
  694. Test failed to compile
  695. Try: icc
  696. Line: icc -DTEST3 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  697. ---------- file -----------------------
  698.  
  699. #if defined(TEST1)
  700. # include <iostream>
  701. #else
  702. # include <iostream.h>
  703. #endif
  704.  
  705. class NeedCXX
  706. {
  707. public:
  708. NeedCXX() { this->Foo = 1; }
  709. int GetFoo() { return this->Foo; }
  710. private:
  711. int Foo;
  712. };
  713. int main()
  714. {
  715. NeedCXX c;
  716. #ifdef TEST3
  717. cout << c.GetFoo() << endl;
  718. #else
  719. std::cout << c.GetFoo() << std::endl;
  720. #endif
  721. return 0;
  722. }
  723.  
  724. ------------------------------------------
  725. ./bootstrap: line 736: icc: not found
  726. Test failed to compile
  727. Try: como
  728. Line: como -DTEST1 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  729. ---------- file -----------------------
  730.  
  731. #if defined(TEST1)
  732. # include <iostream>
  733. #else
  734. # include <iostream.h>
  735. #endif
  736.  
  737. class NeedCXX
  738. {
  739. public:
  740. NeedCXX() { this->Foo = 1; }
  741. int GetFoo() { return this->Foo; }
  742. private:
  743. int Foo;
  744. };
  745. int main()
  746. {
  747. NeedCXX c;
  748. #ifdef TEST3
  749. cout << c.GetFoo() << endl;
  750. #else
  751. std::cout << c.GetFoo() << std::endl;
  752. #endif
  753. return 0;
  754. }
  755.  
  756. ------------------------------------------
  757. ./bootstrap: line 736: como: not found
  758. Test failed to compile
  759. Try: como
  760. Line: como -DTEST2 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  761. ---------- file -----------------------
  762.  
  763. #if defined(TEST1)
  764. # include <iostream>
  765. #else
  766. # include <iostream.h>
  767. #endif
  768.  
  769. class NeedCXX
  770. {
  771. public:
  772. NeedCXX() { this->Foo = 1; }
  773. int GetFoo() { return this->Foo; }
  774. private:
  775. int Foo;
  776. };
  777. int main()
  778. {
  779. NeedCXX c;
  780. #ifdef TEST3
  781. cout << c.GetFoo() << endl;
  782. #else
  783. std::cout << c.GetFoo() << std::endl;
  784. #endif
  785. return 0;
  786. }
  787.  
  788. ------------------------------------------
  789. ./bootstrap: line 736: como: not found
  790. Test failed to compile
  791. Try: como
  792. Line: como -DTEST3 cmake_bootstrap_12545_test.cxx -o cmake_bootstrap_12545_test
  793. ---------- file -----------------------
  794.  
  795. #if defined(TEST1)
  796. # include <iostream>
  797. #else
  798. # include <iostream.h>
  799. #endif
  800.  
  801. class NeedCXX
  802. {
  803. public:
  804. NeedCXX() { this->Foo = 1; }
  805. int GetFoo() { return this->Foo; }
  806. private:
  807. int Foo;
  808. };
  809. int main()
  810. {
  811. NeedCXX c;
  812. #ifdef TEST3
  813. cout << c.GetFoo() << endl;
  814. #else
  815. std::cout << c.GetFoo() << std::endl;
  816. #endif
  817. return 0;
  818. }
  819.  
  820. ------------------------------------------
  821. ./bootstrap: line 736: como: not found
  822. Test failed to compile
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement