spacepaste

gcc

  1.  
  2. ~/Desktop% /usr/bin/gcc --version
  3. i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)
  4. Copyright (C) 2007 Free Software Foundation, Inc.
  5. This is free software; see the source for copying conditions. There is NO
  6. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  7. ~/Desktop% /usr/bin/gcc -O3 unicode.c -o unicode && ./unicode
  8. unicode.c: In function ‘main’:
  9. unicode.c:254: warning: format ‘%u’ expects type ‘unsigned int’, but argument 3 has type ‘long unsigned int’
  10. unicode.c:254: warning: format ‘%u’ expects type ‘unsigned int’, but argument 3 has type ‘long unsigned int’
  11. unicode.c:259: warning: format ‘%u’ expects type ‘unsigned int’, but argument 3 has type ‘long unsigned int’
  12. unicode.c:259: warning: format ‘%u’ expects type ‘unsigned int’, but argument 3 has type ‘long unsigned int’
  13. unicode.c:264: warning: format ‘%u’ expects type ‘unsigned int’, but argument 3 has type ‘long unsigned int’
  14. unicode.c:264: warning: format ‘%u’ expects type ‘unsigned int’, but argument 3 has type ‘long unsigned int’
  15. is ascii? 0
  16. is compact? 1
  17. is compact ascii? 1
  18. _PyUnicode_COMPACT_DATA: 64 vs 88
  19. PyUnicode_DATA: 64 vs 88
  20. explicit cast: 88 vs 88
  21.  

llvm-gcc

  1.  
  2. ~/Desktop% /usr/bin/gcc-4.2 --version
  3. i686-apple-darwin11-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5666) (dot 3)
  4. Copyright (C) 2007 Free Software Foundation, Inc.
  5. This is free software; see the source for copying conditions. There is NO
  6. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  7. ~/Desktop% /usr/bin/gcc-4.2 -O3 unicode.c -o unicode && ./unicode
  8. unicode.c: In function ‘main’:
  9. unicode.c:254: warning: format ‘%u’ expects type ‘unsigned int’, but argument 3 has type ‘long unsigned int’
  10. unicode.c:254: warning: format ‘%u’ expects type ‘unsigned int’, but argument 3 has type ‘long unsigned int’
  11. unicode.c:259: warning: format ‘%u’ expects type ‘unsigned int’, but argument 3 has type ‘long unsigned int’
  12. unicode.c:259: warning: format ‘%u’ expects type ‘unsigned int’, but argument 3 has type ‘long unsigned int’
  13. unicode.c:264: warning: format ‘%u’ expects type ‘unsigned int’, but argument 3 has type ‘long unsigned int’
  14. unicode.c:264: warning: format ‘%u’ expects type ‘unsigned int’, but argument 3 has type ‘long unsigned int’
  15. is ascii? 0
  16. is compact? 1
  17. is compact ascii? 0
  18. _PyUnicode_COMPACT_DATA: 88 vs 88
  19. PyUnicode_DATA: 88 vs 88
  20. explicit cast: 88 vs 88
  21.  

clang

  1.  
  2. ~/Desktop% /usr/bin/clang --version
  3. Apple clang version 2.1 (tags/Apple/clang-163.7.1) (based on LLVM 3.0svn)
  4. Target: x86_64-apple-darwin11.2.0
  5. Thread model: posix
  6. ~/Desktop% /usr/bin/clang -O3 unicode.c -o unicode && ./unicode
  7. unicode.c:252:45: warning: conversion specifies type 'unsigned int' but the argument has type 'unsigned long' [-Wformat]
  8. printf("_PyUnicode_COMPACT_DATA: %u vs %u\n",
  9. ~^
  10. %lu
  11. unicode.c:252:45: warning: conversion specifies type 'unsigned int' but the argument has type 'unsigned long' [-Wformat]
  12. printf("_PyUnicode_COMPACT_DATA: %u vs %u\n",
  13. ~^
  14. %lu
  15. unicode.c:257:36: warning: conversion specifies type 'unsigned int' but the argument has type 'unsigned long' [-Wformat]
  16. printf("PyUnicode_DATA: %u vs %u\n",
  17. ~^
  18. %lu
  19. unicode.c:257:36: warning: conversion specifies type 'unsigned int' but the argument has type 'unsigned long' [-Wformat]
  20. printf("PyUnicode_DATA: %u vs %u\n",
  21. ~^
  22. %lu
  23. unicode.c:262:35: warning: conversion specifies type 'unsigned int' but the argument has type 'unsigned long' [-Wformat]
  24. printf("explicit cast: %u vs %u\n",
  25. ~^
  26. %lu
  27. unicode.c:262:35: warning: conversion specifies type 'unsigned int' but the argument has type 'unsigned long' [-Wformat]
  28. printf("explicit cast: %u vs %u\n",
  29. ~^
  30. %lu
  31. 6 warnings generated.
  32. is ascii? 0
  33. is compact? 1
  34. is compact ascii? 0
  35. _PyUnicode_COMPACT_DATA: 88 vs 88
  36. PyUnicode_DATA: 88 vs 88
  37. explicit cast: 88 vs 88
  38.  

gcc-configure.log

  1.  
  2. checking for hg... found
  3. checking for --enable-universalsdk... no
  4. checking for --with-universal-archs... 32-bit
  5. checking MACHDEP... darwin
  6. checking machine type as reported by uname -m... x86_64
  7. checking for --without-gcc... no
  8. checking for gcc... /usr/bin/gcc
  9. checking whether the C compiler works... yes
  10. checking for C compiler default output file name... a.out
  11. checking for suffix of executables...
  12. checking whether we are cross compiling... no
  13. checking for suffix of object files... o
  14. checking whether we are using the GNU C compiler... yes
  15. checking whether /usr/bin/gcc accepts -g... yes
  16. checking for /usr/bin/gcc option to accept ISO C89... none needed
  17. checking for --with-cxx-main=<compiler>... no
  18. checking for c++... c++
  19. configure: WARNING:
  20. By default, distutils will build C++ extension modules with "c++".
  21. If this is not intended, then set CXX on the configure command line.
  22. checking for -Wl,--no-as-needed... no
  23. checking how to run the C preprocessor... /usr/bin/gcc -E
  24. checking for grep that handles long lines and -e... /usr/local/bin/grep
  25. checking for egrep... /usr/local/bin/grep -E
  26. checking for ANSI C header files... yes
  27. checking for sys/types.h... yes
  28. checking for sys/stat.h... yes
  29. checking for stdlib.h... yes
  30. checking for string.h... yes
  31. checking for memory.h... yes
  32. checking for strings.h... yes
  33. checking for inttypes.h... yes
  34. checking for stdint.h... yes
  35. checking for unistd.h... yes
  36. checking minix/config.h usability... no
  37. checking minix/config.h presence... no
  38. checking for minix/config.h... no
  39. checking whether it is safe to define __EXTENSIONS__... yes
  40. checking for --with-suffix...
  41. checking for case-insensitive build directory... yes
  42. checking LIBRARY... libpython$(VERSION)$(ABIFLAGS).a
  43. checking LINKCC... $(PURIFY) $(MAINCC)
  44. checking for GNU ld... no
  45. checking for inline... inline
  46. checking for --enable-shared... no
  47. checking for --enable-profiling...
  48. checking LDLIBRARY... libpython$(VERSION)$(ABIFLAGS).a
  49. checking for ranlib... ranlib
  50. checking for ar... ar
  51. checking for python... found
  52. checking for a BSD-compatible install... /usr/local/bin/install -c
  53. checking for --with-pydebug... yes
  54. checking whether /usr/bin/gcc accepts and needs -fno-strict-aliasing... yes
  55. checking if we can turn off /usr/bin/gcc unused result warning... no
  56. checking whether gcc supports ParseTuple __format__... no
  57. checking whether pthreads are available without options... yes
  58. checking whether c++ also accepts flags for thread support... no
  59. checking for ANSI C header files... (cached) yes
  60. checking asm/types.h usability... no
  61. checking asm/types.h presence... no
  62. checking for asm/types.h... no
  63. checking conio.h usability... no
  64. checking conio.h presence... no
  65. checking for conio.h... no
  66. checking curses.h usability... yes
  67. checking curses.h presence... yes
  68. checking for curses.h... yes
  69. checking direct.h usability... no
  70. checking direct.h presence... no
  71. checking for direct.h... no
  72. checking dlfcn.h usability... yes
  73. checking dlfcn.h presence... yes
  74. checking for dlfcn.h... yes
  75. checking errno.h usability... yes
  76. checking errno.h presence... yes
  77. checking for errno.h... yes
  78. checking fcntl.h usability... yes
  79. checking fcntl.h presence... yes
  80. checking for fcntl.h... yes
  81. checking grp.h usability... yes
  82. checking grp.h presence... yes
  83. checking for grp.h... yes
  84. checking ieeefp.h usability... no
  85. checking ieeefp.h presence... no
  86. checking for ieeefp.h... no
  87. checking io.h usability... no
  88. checking io.h presence... no
  89. checking for io.h... no
  90. checking langinfo.h usability... yes
  91. checking langinfo.h presence... yes
  92. checking for langinfo.h... yes
  93. checking libintl.h usability... no
  94. checking libintl.h presence... no
  95. checking for libintl.h... no
  96. checking ncurses.h usability... yes
  97. checking ncurses.h presence... yes
  98. checking for ncurses.h... yes
  99. checking poll.h usability... yes
  100. checking poll.h presence... yes
  101. checking for poll.h... yes
  102. checking process.h usability... no
  103. checking process.h presence... no
  104. checking for process.h... no
  105. checking pthread.h usability... yes
  106. checking pthread.h presence... yes
  107. checking for pthread.h... yes
  108. checking sched.h usability... yes
  109. checking sched.h presence... yes
  110. checking for sched.h... yes
  111. checking shadow.h usability... no
  112. checking shadow.h presence... no
  113. checking for shadow.h... no
  114. checking signal.h usability... yes
  115. checking signal.h presence... yes
  116. checking for signal.h... yes
  117. checking for stdint.h... (cached) yes
  118. checking stropts.h usability... no
  119. checking stropts.h presence... no
  120. checking for stropts.h... no
  121. checking termios.h usability... yes
  122. checking termios.h presence... yes
  123. checking for termios.h... yes
  124. checking for unistd.h... (cached) yes
  125. checking utime.h usability... yes
  126. checking utime.h presence... yes
  127. checking for utime.h... yes
  128. checking sys/audioio.h usability... no
  129. checking sys/audioio.h presence... no
  130. checking for sys/audioio.h... no
  131. checking sys/xattr.h usability... yes
  132. checking sys/xattr.h presence... yes
  133. checking for sys/xattr.h... yes
  134. checking sys/bsdtty.h usability... no
  135. checking sys/bsdtty.h presence... no
  136. checking for sys/bsdtty.h... no
  137. checking sys/epoll.h usability... no
  138. checking sys/epoll.h presence... no
  139. checking for sys/epoll.h... no
  140. checking sys/event.h usability... yes
  141. checking sys/event.h presence... yes
  142. checking for sys/event.h... yes
  143. checking sys/file.h usability... yes
  144. checking sys/file.h presence... yes
  145. checking for sys/file.h... yes
  146. checking sys/loadavg.h usability... no
  147. checking sys/loadavg.h presence... no
  148. checking for sys/loadavg.h... no
  149. checking sys/lock.h usability... yes
  150. checking sys/lock.h presence... yes
  151. checking for sys/lock.h... yes
  152. checking sys/mkdev.h usability... no
  153. checking sys/mkdev.h presence... no
  154. checking for sys/mkdev.h... no
  155. checking sys/modem.h usability... no
  156. checking sys/modem.h presence... no
  157. checking for sys/modem.h... no
  158. checking sys/param.h usability... yes
  159. checking sys/param.h presence... yes
  160. checking for sys/param.h... yes
  161. checking sys/poll.h usability... yes
  162. checking sys/poll.h presence... yes
  163. checking for sys/poll.h... yes
  164. checking sys/select.h usability... yes
  165. checking sys/select.h presence... yes
  166. checking for sys/select.h... yes
  167. checking sys/sendfile.h usability... no
  168. checking sys/sendfile.h presence... no
  169. checking for sys/sendfile.h... no
  170. checking sys/socket.h usability... yes
  171. checking sys/socket.h presence... yes
  172. checking for sys/socket.h... yes
  173. checking sys/statvfs.h usability... yes
  174. checking sys/statvfs.h presence... yes
  175. checking for sys/statvfs.h... yes
  176. checking for sys/stat.h... (cached) yes
  177. checking sys/termio.h usability... no
  178. checking sys/termio.h presence... no
  179. checking for sys/termio.h... no
  180. checking sys/time.h usability... yes
  181. checking sys/time.h presence... yes
  182. checking for sys/time.h... yes
  183. checking sys/times.h usability... yes
  184. checking sys/times.h presence... yes
  185. checking for sys/times.h... yes
  186. checking for sys/types.h... (cached) yes
  187. checking sys/uio.h usability... yes
  188. checking sys/uio.h presence... yes
  189. checking for sys/uio.h... yes
  190. checking sys/un.h usability... yes
  191. checking sys/un.h presence... yes
  192. checking for sys/un.h... yes
  193. checking sys/utsname.h usability... yes
  194. checking sys/utsname.h presence... yes
  195. checking for sys/utsname.h... yes
  196. checking sys/wait.h usability... yes
  197. checking sys/wait.h presence... yes
  198. checking for sys/wait.h... yes
  199. checking pty.h usability... no
  200. checking pty.h presence... no
  201. checking for pty.h... no
  202. checking libutil.h usability... no
  203. checking libutil.h presence... no
  204. checking for libutil.h... no
  205. checking sys/resource.h usability... yes
  206. checking sys/resource.h presence... yes
  207. checking for sys/resource.h... yes
  208. checking netpacket/packet.h usability... no
  209. checking netpacket/packet.h presence... no
  210. checking for netpacket/packet.h... no
  211. checking sysexits.h usability... yes
  212. checking sysexits.h presence... yes
  213. checking for sysexits.h... yes
  214. checking bluetooth.h usability... no
  215. checking bluetooth.h presence... no
  216. checking for bluetooth.h... no
  217. checking bluetooth/bluetooth.h usability... no
  218. checking bluetooth/bluetooth.h presence... no
  219. checking for bluetooth/bluetooth.h... no
  220. checking linux/tipc.h usability... no
  221. checking linux/tipc.h presence... no
  222. checking for linux/tipc.h... no
  223. checking spawn.h usability... yes
  224. checking spawn.h presence... yes
  225. checking for spawn.h... yes
  226. checking util.h usability... yes
  227. checking util.h presence... yes
  228. checking for util.h... yes
  229. checking for dirent.h that defines DIR... yes
  230. checking for library containing opendir... none required
  231. checking whether sys/types.h defines makedev... yes
  232. checking for net/if.h... yes
  233. checking for term.h... yes
  234. checking for linux/netlink.h... no
  235. checking for linux/can.h... no
  236. checking for linux/can/raw.h... no
  237. checking for clock_t in time.h... yes
  238. checking for makedev... yes
  239. checking Solaris LFS bug... no
  240. checking for mode_t... yes
  241. checking for off_t... yes
  242. checking for pid_t... yes
  243. checking for size_t... yes
  244. checking for uid_t in sys/types.h... yes
  245. checking for uint32_t... yes
  246. checking for uint64_t... yes
  247. checking for int32_t... yes
  248. checking for int64_t... yes
  249. checking for ssize_t... yes
  250. checking size of int... 4
  251. checking size of long... 8
  252. checking size of void *... 8
  253. checking size of short... 2
  254. checking size of float... 4
  255. checking size of double... 8
  256. checking size of fpos_t... 8
  257. checking size of size_t... 8
  258. checking size of pid_t... 4
  259. checking for long long support... yes
  260. checking size of long long... 8
  261. checking for long double support... yes
  262. checking size of long double... 16
  263. checking for _Bool support... yes
  264. checking size of _Bool... 1
  265. checking for uintptr_t... yes
  266. checking size of uintptr_t... 8
  267. checking size of off_t... 8
  268. checking whether to enable large file support... no
  269. checking size of time_t... 8
  270. checking for pthread_t... yes
  271. checking size of pthread_t... 8
  272. checking for --enable-framework... no
  273. checking for dyld... always on for Darwin
  274. checking LDSHARED... $(CC) -bundle -undefined dynamic_lookup
  275. checking CCSHARED...
  276. checking LINKFORSHARED... -framework CoreFoundation
  277. checking CFLAGSFORSHARED...
  278. checking SHLIBS... $(LIBS)
  279. checking for sendfile in -lsendfile... no
  280. checking for dlopen in -ldl... yes
  281. checking for shl_load in -ldld... no
  282. checking for library containing sem_init... none required
  283. checking for textdomain in -lintl... no
  284. checking for t_open in -lnsl... no
  285. checking for socket in -lsocket... no
  286. checking for --with-libs... no
  287. checking for pkg-config... /usr/local/bin/pkg-config
  288. checking for --with-system-expat... no
  289. checking for --with-system-ffi... no
  290. checking for --enable-loadable-sqlite-extensions... no
  291. checking for --with-dbmliborder...
  292. checking for --with-signal-module... yes
  293. checking for --with-threads... yes
  294. checking if PTHREAD_SCOPE_SYSTEM is supported... yes
  295. checking for pthread_sigmask... yes
  296. checking if --enable-ipv6 is specified... yes
  297. checking if RFC2553 API is available... yes
  298. checking ipv6 stack type... kame
  299. using libc
  300. checking for OSX 10.5 SDK or later... yes
  301. checking for --with-doc-strings... yes
  302. checking for --with-tsc... no
  303. checking for --with-pymalloc... yes
  304. checking for --with-valgrind... no
  305. checking for dlopen... yes
  306. checking DYNLOADFILE... dynload_shlib.o
  307. checking MACHDEP_OBJS... MACHDEP_OBJS
  308. checking for alarm... yes
  309. checking for accept4... no
  310. checking for setitimer... yes
  311. checking for getitimer... yes
  312. checking for bind_textdomain_codeset... no
  313. checking for chown... yes
  314. checking for clock... yes
  315. checking for confstr... yes
  316. checking for ctermid... yes
  317. checking for execv... yes
  318. checking for faccessat... no
  319. checking for fchmod... yes
  320. checking for fchmodat... no
  321. checking for fchown... yes
  322. checking for fchownat... no
  323. checking for fexecve... no
  324. checking for fdopendir... no
  325. checking for fork... yes
  326. checking for fpathconf... yes
  327. checking for fstatat... no
  328. checking for ftime... yes
  329. checking for ftruncate... yes
  330. checking for futimesat... no
  331. checking for futimens... no
  332. checking for futimes... yes
  333. checking for gai_strerror... yes
  334. checking for getgrouplist... yes
  335. checking for getgroups... yes
  336. checking for getlogin... yes
  337. checking for getloadavg... yes
  338. checking for getpeername... yes
  339. checking for getpgid... yes
  340. checking for getpid... yes
  341. checking for getpriority... yes
  342. checking for getresuid... no
  343. checking for getresgid... no
  344. checking for getpwent... yes
  345. checking for getspnam... no
  346. checking for getspent... no
  347. checking for getsid... yes
  348. checking for getwd... yes
  349. checking for if_nameindex... yes
  350. checking for initgroups... yes
  351. checking for kill... yes
  352. checking for killpg... yes
  353. checking for lchmod... yes
  354. checking for lchown... yes
  355. checking for lockf... yes
  356. checking for linkat... no
  357. checking for lstat... yes
  358. checking for lutimes... yes
  359. checking for memrchr... no
  360. checking for mbrtowc... yes
  361. checking for mkdirat... no
  362. checking for mkfifo... yes
  363. checking for mkfifoat... no
  364. checking for mknod... yes
  365. checking for mknodat... no
  366. checking for mktime... yes
  367. checking for mremap... no
  368. checking for nice... yes
  369. checking for openat... no
  370. checking for pathconf... yes
  371. checking for pause... yes
  372. checking for pipe2... no
  373. checking for plock... no
  374. checking for poll... yes
  375. checking for posix_fallocate... no
  376. checking for posix_fadvise... no
  377. checking for pread... yes
  378. checking for pthread_init... yes
  379. checking for pthread_kill... yes
  380. checking for putenv... yes
  381. checking for pwrite... yes
  382. checking for readlink... yes
  383. checking for readlinkat... no
  384. checking for readv... yes
  385. checking for realpath... yes
  386. checking for renameat... no
  387. checking for select... yes
  388. checking for sem_open... yes
  389. checking for sem_timedwait... no
  390. checking for sem_getvalue... yes
  391. checking for sem_unlink... yes
  392. checking for sendfile... yes
  393. checking for setegid... yes
  394. checking for seteuid... yes
  395. checking for setgid... yes
  396. checking for sethostname... yes
  397. checking for setlocale... yes
  398. checking for setregid... yes
  399. checking for setreuid... yes
  400. checking for setresuid... no
  401. checking for setresgid... no
  402. checking for setsid... yes
  403. checking for setpgid... yes
  404. checking for setpgrp... yes
  405. checking for setpriority... yes
  406. checking for setuid... yes
  407. checking for setvbuf... yes
  408. checking for sched_get_priority_max... yes
  409. checking for sched_setaffinity... no
  410. checking for sched_setscheduler... no
  411. checking for sched_setparam... no
  412. checking for sched_rr_get_interval... no
  413. checking for sigaction... yes
  414. checking for sigaltstack... yes
  415. checking for siginterrupt... yes
  416. checking for sigpending... yes
  417. checking for sigrelse... yes
  418. checking for sigtimedwait... no
  419. checking for sigwait... yes
  420. checking for sigwaitinfo... no
  421. checking for snprintf... yes
  422. checking for strftime... yes
  423. checking for strlcpy... yes
  424. checking for symlinkat... no
  425. checking for sync... yes
  426. checking for sysconf... yes
  427. checking for tcgetpgrp... yes
  428. checking for tcsetpgrp... yes
  429. checking for tempnam... yes
  430. checking for timegm... yes
  431. checking for times... yes
  432. checking for tmpfile... yes
  433. checking for tmpnam... yes
  434. checking for tmpnam_r... no
  435. checking for truncate... yes
  436. checking for uname... yes
  437. checking for unlinkat... no
  438. checking for unsetenv... yes
  439. checking for utimensat... no
  440. checking for utimes... yes
  441. checking for waitid... yes
  442. checking for waitpid... yes
  443. checking for wait3... yes
  444. checking for wait4... yes
  445. checking for wcscoll... yes
  446. checking for wcsftime... yes
  447. checking for wcsxfrm... yes
  448. checking for writev... yes
  449. checking for _getpty... no
  450. checking for chroot... yes
  451. checking for link... yes
  452. checking for symlink... yes
  453. checking for fchdir... yes
  454. checking for fsync... yes
  455. checking for fdatasync... no
  456. checking for epoll... no
  457. checking for kqueue... yes
  458. checking for ctermid_r... yes
  459. checking for flock declaration... yes
  460. checking for flock... yes
  461. checking for getpagesize... yes
  462. checking whether mallopt can set malloc mmap threshold... no
  463. checking for true... true
  464. checking for inet_aton in -lc... yes
  465. checking for chflags... yes
  466. checking for lchflags... yes
  467. checking for inflateCopy in -lz... yes
  468. checking for hstrerror... yes
  469. checking for inet_aton... yes
  470. checking for inet_pton... yes
  471. checking for setgroups... yes
  472. checking for openpty... yes
  473. checking for forkpty... yes
  474. checking for memmove... yes
  475. checking for fseek64... no
  476. checking for fseeko... yes
  477. checking for fstatvfs... yes
  478. checking for ftell64... no
  479. checking for ftello... yes
  480. checking for statvfs... yes
  481. checking for dup2... yes
  482. checking for getcwd... yes
  483. checking for strdup... yes
  484. checking for getpgrp... yes
  485. checking for setpgrp... (cached) yes
  486. checking for gettimeofday... yes
  487. checking for clock_gettime... no
  488. checking for clock_gettime in -lrt... no
  489. checking for clock_getres... no
  490. checking for clock_getres in -lrt... no
  491. checking for major... yes
  492. checking for getaddrinfo... yes
  493. checking getaddrinfo bug... no
  494. checking for getnameinfo... yes
  495. checking whether time.h and sys/time.h may both be included... yes
  496. checking whether struct tm is in sys/time.h or time.h... time.h
  497. checking for struct tm.tm_zone... yes
  498. checking for struct stat.st_rdev... yes
  499. checking for struct stat.st_blksize... yes
  500. checking for struct stat.st_flags... yes
  501. checking for struct stat.st_gen... yes
  502. checking for struct stat.st_birthtime... no
  503. checking for struct stat.st_blocks... yes
  504. checking for time.h that defines altzone... no
  505. checking whether sys/select.h and sys/time.h may both be included... yes
  506. checking for addrinfo... yes
  507. checking for sockaddr_storage... yes
  508. checking whether char is unsigned... no
  509. checking for an ANSI C-conforming const... yes
  510. checking for working volatile... yes
  511. checking for working signed char... yes
  512. checking for prototypes... yes
  513. checking for variable length prototypes and stdarg.h... yes
  514. checking for socketpair... yes
  515. checking if sockaddr has sa_len member... yes
  516. checking whether va_list is an array... yes
  517. checking for gethostbyname_r... no
  518. checking for gethostbyname... yes
  519. checking for __fpu_control... no
  520. checking for __fpu_control in -lieee... no
  521. checking for --with-fpectl... no
  522. checking for --with-libm=STRING... default LIBM=""
  523. checking for --with-libc=STRING... default LIBC=""
  524. checking whether C doubles are little-endian IEEE 754 binary64... yes
  525. checking whether C doubles are big-endian IEEE 754 binary64... no
  526. checking whether C doubles are ARM mixed-endian IEEE 754 binary64... no
  527. checking whether we can use gcc inline assembler to get and set x87 control word... yes
  528. checking for x87-style double rounding... no
  529. checking for acosh... yes
  530. checking for asinh... yes
  531. checking for atanh... yes
  532. checking for copysign... yes
  533. checking for erf... yes
  534. checking for erfc... yes
  535. checking for expm1... yes
  536. checking for finite... yes
  537. checking for gamma... yes
  538. checking for hypot... yes
  539. checking for lgamma... yes
  540. checking for log1p... yes
  541. checking for log2... yes
  542. checking for round... yes
  543. checking for tgamma... yes
  544. checking whether isinf is declared... yes
  545. checking whether isnan is declared... yes
  546. checking whether isfinite is declared... yes
  547. checking whether tanh preserves the sign of zero... yes
  548. checking whether log1p drops the sign of negative zero... no
  549. checking whether POSIX semaphores are enabled... yes
  550. checking for broken sem_getvalue... yes
  551. checking digit size for Python's longs... no value specified
  552. checking wchar.h usability... yes
  553. checking wchar.h presence... yes
  554. checking for wchar.h... yes
  555. checking size of wchar_t... 4
  556. checking for UCS-4 tcl... no
  557. checking whether wchar_t is signed... yes
  558. no usable wchar_t found
  559. checking whether byte ordering is bigendian... no
  560. checking ABIFLAGS... dm
  561. checking SOABI... cpython-33dm
  562. checking LDVERSION... $(VERSION)$(ABIFLAGS)
  563. checking SO... .so
  564. checking whether right shift extends the sign bit... yes
  565. checking for getc_unlocked() and friends... yes
  566. checking how to link readline libs... -lreadline
  567. checking for rl_callback_handler_install in -lreadline... yes
  568. checking for rl_pre_input_hook in -lreadline... yes
  569. checking for rl_completion_display_matches_hook in -lreadline... yes
  570. checking for rl_completion_matches in -lreadline... yes
  571. checking for broken nice()... no
  572. checking for broken poll()... no
  573. checking for struct tm.tm_zone... (cached) yes
  574. checking for working tzset()... yes
  575. checking for tv_nsec in struct stat... no
  576. checking for tv_nsec2 in struct stat... yes
  577. checking whether mvwdelch is an expression... yes
  578. checking whether WINDOW has _flags... no
  579. checking for is_term_resized... yes
  580. checking for resize_term... yes
  581. checking for resizeterm... yes
  582. checking for /dev/ptmx... yes
  583. checking for /dev/ptc... no
  584. checking for %lld and %llu printf() format support... yes
  585. checking for %zd printf() format support... yes
  586. checking for socklen_t... yes
  587. checking for broken mbstowcs... no
  588. checking whether /usr/bin/gcc supports computed gotos... yes
  589. checking for --with-computed-gotos... no value specified
  590. checking for build directories... done
  591. configure: creating ./config.status
  592. config.status: creating Makefile.pre
  593. config.status: creating Modules/Setup.config
  594. config.status: creating Misc/python.pc
  595. config.status: creating Modules/ld_so_aix
  596. config.status: creating pyconfig.h
  597. config.status: pyconfig.h is unchanged
  598. creating Modules/Setup
  599. creating Modules/Setup.local
  600. creating Makefile
  601.  

gcc-make.log

  1.  
  2. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(dynamic_annotations.o) has no symbols
  3. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(pymath.o) has no symbols
  4. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(dynamic_annotations.o) has no symbols
  5. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(pymath.o) has no symbols
  6. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(dynamic_annotations.o) has no symbols
  7. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(pymath.o) has no symbols
  8. ranlib: file: libpython3.3dm.a(dynamic_annotations.o) has no symbols
  9. ranlib: file: libpython3.3dm.a(pymath.o) has no symbols
  10. Could not find platform dependent libraries <exec_prefix>
  11. Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]
  12. Assertion failed: (compact->utf8_length == 0), function _PyUnicode_CheckConsistency, file Objects/unicodeobject.c, line 399.
  13. make: *** [sysconfig] Abort trap: 6
  14.  

llvm-gcc-configure.log

  1.  
  2. checking for hg... found
  3. checking for --enable-universalsdk... no
  4. checking for --with-universal-archs... 32-bit
  5. checking MACHDEP... darwin
  6. checking machine type as reported by uname -m... x86_64
  7. checking for --without-gcc... no
  8. checking for gcc... /usr/bin/gcc-4.2
  9. checking whether the C compiler works... yes
  10. checking for C compiler default output file name... a.out
  11. checking for suffix of executables...
  12. checking whether we are cross compiling... no
  13. checking for suffix of object files... o
  14. checking whether we are using the GNU C compiler... yes
  15. checking whether /usr/bin/gcc-4.2 accepts -g... yes
  16. checking for /usr/bin/gcc-4.2 option to accept ISO C89... none needed
  17. checking for --with-cxx-main=<compiler>... no
  18. checking for c++... c++
  19. configure: WARNING:
  20. By default, distutils will build C++ extension modules with "c++".
  21. If this is not intended, then set CXX on the configure command line.
  22. checking for -Wl,--no-as-needed... no
  23. checking how to run the C preprocessor... /usr/bin/gcc-4.2 -E
  24. checking for grep that handles long lines and -e... /usr/local/bin/grep
  25. checking for egrep... /usr/local/bin/grep -E
  26. checking for ANSI C header files... yes
  27. checking for sys/types.h... yes
  28. checking for sys/stat.h... yes
  29. checking for stdlib.h... yes
  30. checking for string.h... yes
  31. checking for memory.h... yes
  32. checking for strings.h... yes
  33. checking for inttypes.h... yes
  34. checking for stdint.h... yes
  35. checking for unistd.h... yes
  36. checking minix/config.h usability... no
  37. checking minix/config.h presence... no
  38. checking for minix/config.h... no
  39. checking whether it is safe to define __EXTENSIONS__... yes
  40. checking for --with-suffix...
  41. checking for case-insensitive build directory... yes
  42. checking LIBRARY... libpython$(VERSION)$(ABIFLAGS).a
  43. checking LINKCC... $(PURIFY) $(MAINCC)
  44. checking for GNU ld... no
  45. checking for inline... inline
  46. checking for --enable-shared... no
  47. checking for --enable-profiling...
  48. checking LDLIBRARY... libpython$(VERSION)$(ABIFLAGS).a
  49. checking for ranlib... ranlib
  50. checking for ar... ar
  51. checking for python... found
  52. checking for a BSD-compatible install... /usr/local/bin/install -c
  53. checking for --with-pydebug... yes
  54. checking whether /usr/bin/gcc-4.2 accepts and needs -fno-strict-aliasing... yes
  55. checking if we can turn off /usr/bin/gcc-4.2 unused result warning... no
  56. checking whether gcc supports ParseTuple __format__... no
  57. checking whether pthreads are available without options... yes
  58. checking whether c++ also accepts flags for thread support... no
  59. checking for ANSI C header files... (cached) yes
  60. checking asm/types.h usability... no
  61. checking asm/types.h presence... no
  62. checking for asm/types.h... no
  63. checking conio.h usability... no
  64. checking conio.h presence... no
  65. checking for conio.h... no
  66. checking curses.h usability... yes
  67. checking curses.h presence... yes
  68. checking for curses.h... yes
  69. checking direct.h usability... no
  70. checking direct.h presence... no
  71. checking for direct.h... no
  72. checking dlfcn.h usability... yes
  73. checking dlfcn.h presence... yes
  74. checking for dlfcn.h... yes
  75. checking errno.h usability... yes
  76. checking errno.h presence... yes
  77. checking for errno.h... yes
  78. checking fcntl.h usability... yes
  79. checking fcntl.h presence... yes
  80. checking for fcntl.h... yes
  81. checking grp.h usability... yes
  82. checking grp.h presence... yes
  83. checking for grp.h... yes
  84. checking ieeefp.h usability... no
  85. checking ieeefp.h presence... no
  86. checking for ieeefp.h... no
  87. checking io.h usability... no
  88. checking io.h presence... no
  89. checking for io.h... no
  90. checking langinfo.h usability... yes
  91. checking langinfo.h presence... yes
  92. checking for langinfo.h... yes
  93. checking libintl.h usability... no
  94. checking libintl.h presence... no
  95. checking for libintl.h... no
  96. checking ncurses.h usability... yes
  97. checking ncurses.h presence... yes
  98. checking for ncurses.h... yes
  99. checking poll.h usability... yes
  100. checking poll.h presence... yes
  101. checking for poll.h... yes
  102. checking process.h usability... no
  103. checking process.h presence... no
  104. checking for process.h... no
  105. checking pthread.h usability... yes
  106. checking pthread.h presence... yes
  107. checking for pthread.h... yes
  108. checking sched.h usability... yes
  109. checking sched.h presence... yes
  110. checking for sched.h... yes
  111. checking shadow.h usability... no
  112. checking shadow.h presence... no
  113. checking for shadow.h... no
  114. checking signal.h usability... yes
  115. checking signal.h presence... yes
  116. checking for signal.h... yes
  117. checking for stdint.h... (cached) yes
  118. checking stropts.h usability... no
  119. checking stropts.h presence... no
  120. checking for stropts.h... no
  121. checking termios.h usability... yes
  122. checking termios.h presence... yes
  123. checking for termios.h... yes
  124. checking for unistd.h... (cached) yes
  125. checking utime.h usability... yes
  126. checking utime.h presence... yes
  127. checking for utime.h... yes
  128. checking sys/audioio.h usability... no
  129. checking sys/audioio.h presence... no
  130. checking for sys/audioio.h... no
  131. checking sys/xattr.h usability... yes
  132. checking sys/xattr.h presence... yes
  133. checking for sys/xattr.h... yes
  134. checking sys/bsdtty.h usability... no
  135. checking sys/bsdtty.h presence... no
  136. checking for sys/bsdtty.h... no
  137. checking sys/epoll.h usability... no
  138. checking sys/epoll.h presence... no
  139. checking for sys/epoll.h... no
  140. checking sys/event.h usability... yes
  141. checking sys/event.h presence... yes
  142. checking for sys/event.h... yes
  143. checking sys/file.h usability... yes
  144. checking sys/file.h presence... yes
  145. checking for sys/file.h... yes
  146. checking sys/loadavg.h usability... no
  147. checking sys/loadavg.h presence... no
  148. checking for sys/loadavg.h... no
  149. checking sys/lock.h usability... yes
  150. checking sys/lock.h presence... yes
  151. checking for sys/lock.h... yes
  152. checking sys/mkdev.h usability... no
  153. checking sys/mkdev.h presence... no
  154. checking for sys/mkdev.h... no
  155. checking sys/modem.h usability... no
  156. checking sys/modem.h presence... no
  157. checking for sys/modem.h... no
  158. checking sys/param.h usability... yes
  159. checking sys/param.h presence... yes
  160. checking for sys/param.h... yes
  161. checking sys/poll.h usability... yes
  162. checking sys/poll.h presence... yes
  163. checking for sys/poll.h... yes
  164. checking sys/select.h usability... yes
  165. checking sys/select.h presence... yes
  166. checking for sys/select.h... yes
  167. checking sys/sendfile.h usability... no
  168. checking sys/sendfile.h presence... no
  169. checking for sys/sendfile.h... no
  170. checking sys/socket.h usability... yes
  171. checking sys/socket.h presence... yes
  172. checking for sys/socket.h... yes
  173. checking sys/statvfs.h usability... yes
  174. checking sys/statvfs.h presence... yes
  175. checking for sys/statvfs.h... yes
  176. checking for sys/stat.h... (cached) yes
  177. checking sys/termio.h usability... no
  178. checking sys/termio.h presence... no
  179. checking for sys/termio.h... no
  180. checking sys/time.h usability... yes
  181. checking sys/time.h presence... yes
  182. checking for sys/time.h... yes
  183. checking sys/times.h usability... yes
  184. checking sys/times.h presence... yes
  185. checking for sys/times.h... yes
  186. checking for sys/types.h... (cached) yes
  187. checking sys/uio.h usability... yes
  188. checking sys/uio.h presence... yes
  189. checking for sys/uio.h... yes
  190. checking sys/un.h usability... yes
  191. checking sys/un.h presence... yes
  192. checking for sys/un.h... yes
  193. checking sys/utsname.h usability... yes
  194. checking sys/utsname.h presence... yes
  195. checking for sys/utsname.h... yes
  196. checking sys/wait.h usability... yes
  197. checking sys/wait.h presence... yes
  198. checking for sys/wait.h... yes
  199. checking pty.h usability... no
  200. checking pty.h presence... no
  201. checking for pty.h... no
  202. checking libutil.h usability... no
  203. checking libutil.h presence... no
  204. checking for libutil.h... no
  205. checking sys/resource.h usability... yes
  206. checking sys/resource.h presence... yes
  207. checking for sys/resource.h... yes
  208. checking netpacket/packet.h usability... no
  209. checking netpacket/packet.h presence... no
  210. checking for netpacket/packet.h... no
  211. checking sysexits.h usability... yes
  212. checking sysexits.h presence... yes
  213. checking for sysexits.h... yes
  214. checking bluetooth.h usability... no
  215. checking bluetooth.h presence... no
  216. checking for bluetooth.h... no
  217. checking bluetooth/bluetooth.h usability... no
  218. checking bluetooth/bluetooth.h presence... no
  219. checking for bluetooth/bluetooth.h... no
  220. checking linux/tipc.h usability... no
  221. checking linux/tipc.h presence... no
  222. checking for linux/tipc.h... no
  223. checking spawn.h usability... yes
  224. checking spawn.h presence... yes
  225. checking for spawn.h... yes
  226. checking util.h usability... yes
  227. checking util.h presence... yes
  228. checking for util.h... yes
  229. checking for dirent.h that defines DIR... yes
  230. checking for library containing opendir... none required
  231. checking whether sys/types.h defines makedev... yes
  232. checking for net/if.h... yes
  233. checking for term.h... yes
  234. checking for linux/netlink.h... no
  235. checking for linux/can.h... no
  236. checking for linux/can/raw.h... no
  237. checking for clock_t in time.h... yes
  238. checking for makedev... yes
  239. checking Solaris LFS bug... no
  240. checking for mode_t... yes
  241. checking for off_t... yes
  242. checking for pid_t... yes
  243. checking for size_t... yes
  244. checking for uid_t in sys/types.h... yes
  245. checking for uint32_t... yes
  246. checking for uint64_t... yes
  247. checking for int32_t... yes
  248. checking for int64_t... yes
  249. checking for ssize_t... yes
  250. checking size of int... 4
  251. checking size of long... 8
  252. checking size of void *... 8
  253. checking size of short... 2
  254. checking size of float... 4
  255. checking size of double... 8
  256. checking size of fpos_t... 8
  257. checking size of size_t... 8
  258. checking size of pid_t... 4
  259. checking for long long support... yes
  260. checking size of long long... 8
  261. checking for long double support... yes
  262. checking size of long double... 16
  263. checking for _Bool support... yes
  264. checking size of _Bool... 1
  265. checking for uintptr_t... yes
  266. checking size of uintptr_t... 8
  267. checking size of off_t... 8
  268. checking whether to enable large file support... no
  269. checking size of time_t... 8
  270. checking for pthread_t... yes
  271. checking size of pthread_t... 8
  272. checking for --enable-framework... no
  273. checking for dyld... always on for Darwin
  274. checking LDSHARED... $(CC) -bundle -undefined dynamic_lookup
  275. checking CCSHARED...
  276. checking LINKFORSHARED... -framework CoreFoundation
  277. checking CFLAGSFORSHARED...
  278. checking SHLIBS... $(LIBS)
  279. checking for sendfile in -lsendfile... no
  280. checking for dlopen in -ldl... yes
  281. checking for shl_load in -ldld... no
  282. checking for library containing sem_init... none required
  283. checking for textdomain in -lintl... no
  284. checking for t_open in -lnsl... no
  285. checking for socket in -lsocket... no
  286. checking for --with-libs... no
  287. checking for pkg-config... /usr/local/bin/pkg-config
  288. checking for --with-system-expat... no
  289. checking for --with-system-ffi... no
  290. checking for --enable-loadable-sqlite-extensions... no
  291. checking for --with-dbmliborder...
  292. checking for --with-signal-module... yes
  293. checking for --with-threads... yes
  294. checking if PTHREAD_SCOPE_SYSTEM is supported... yes
  295. checking for pthread_sigmask... yes
  296. checking if --enable-ipv6 is specified... yes
  297. checking if RFC2553 API is available... yes
  298. checking ipv6 stack type... kame
  299. using libc
  300. checking for OSX 10.5 SDK or later... yes
  301. checking for --with-doc-strings... yes
  302. checking for --with-tsc... no
  303. checking for --with-pymalloc... yes
  304. checking for --with-valgrind... no
  305. checking for dlopen... yes
  306. checking DYNLOADFILE... dynload_shlib.o
  307. checking MACHDEP_OBJS... MACHDEP_OBJS
  308. checking for alarm... yes
  309. checking for accept4... no
  310. checking for setitimer... yes
  311. checking for getitimer... yes
  312. checking for bind_textdomain_codeset... no
  313. checking for chown... yes
  314. checking for clock... yes
  315. checking for confstr... yes
  316. checking for ctermid... yes
  317. checking for execv... yes
  318. checking for faccessat... no
  319. checking for fchmod... yes
  320. checking for fchmodat... no
  321. checking for fchown... yes
  322. checking for fchownat... no
  323. checking for fexecve... no
  324. checking for fdopendir... no
  325. checking for fork... yes
  326. checking for fpathconf... yes
  327. checking for fstatat... no
  328. checking for ftime... yes
  329. checking for ftruncate... yes
  330. checking for futimesat... no
  331. checking for futimens... no
  332. checking for futimes... yes
  333. checking for gai_strerror... yes
  334. checking for getgrouplist... yes
  335. checking for getgroups... yes
  336. checking for getlogin... yes
  337. checking for getloadavg... yes
  338. checking for getpeername... yes
  339. checking for getpgid... yes
  340. checking for getpid... yes
  341. checking for getpriority... yes
  342. checking for getresuid... no
  343. checking for getresgid... no
  344. checking for getpwent... yes
  345. checking for getspnam... no
  346. checking for getspent... no
  347. checking for getsid... yes
  348. checking for getwd... yes
  349. checking for if_nameindex... yes
  350. checking for initgroups... yes
  351. checking for kill... yes
  352. checking for killpg... yes
  353. checking for lchmod... yes
  354. checking for lchown... yes
  355. checking for lockf... yes
  356. checking for linkat... no
  357. checking for lstat... yes
  358. checking for lutimes... yes
  359. checking for memrchr... no
  360. checking for mbrtowc... yes
  361. checking for mkdirat... no
  362. checking for mkfifo... yes
  363. checking for mkfifoat... no
  364. checking for mknod... yes
  365. checking for mknodat... no
  366. checking for mktime... yes
  367. checking for mremap... no
  368. checking for nice... yes
  369. checking for openat... no
  370. checking for pathconf... yes
  371. checking for pause... yes
  372. checking for pipe2... no
  373. checking for plock... no
  374. checking for poll... yes
  375. checking for posix_fallocate... no
  376. checking for posix_fadvise... no
  377. checking for pread... yes
  378. checking for pthread_init... yes
  379. checking for pthread_kill... yes
  380. checking for putenv... yes
  381. checking for pwrite... yes
  382. checking for readlink... yes
  383. checking for readlinkat... no
  384. checking for readv... yes
  385. checking for realpath... yes
  386. checking for renameat... no
  387. checking for select... yes
  388. checking for sem_open... yes
  389. checking for sem_timedwait... no
  390. checking for sem_getvalue... yes
  391. checking for sem_unlink... yes
  392. checking for sendfile... yes
  393. checking for setegid... yes
  394. checking for seteuid... yes
  395. checking for setgid... yes
  396. checking for sethostname... yes
  397. checking for setlocale... yes
  398. checking for setregid... yes
  399. checking for setreuid... yes
  400. checking for setresuid... no
  401. checking for setresgid... no
  402. checking for setsid... yes
  403. checking for setpgid... yes
  404. checking for setpgrp... yes
  405. checking for setpriority... yes
  406. checking for setuid... yes
  407. checking for setvbuf... yes
  408. checking for sched_get_priority_max... yes
  409. checking for sched_setaffinity... no
  410. checking for sched_setscheduler... no
  411. checking for sched_setparam... no
  412. checking for sched_rr_get_interval... no
  413. checking for sigaction... yes
  414. checking for sigaltstack... yes
  415. checking for siginterrupt... yes
  416. checking for sigpending... yes
  417. checking for sigrelse... yes
  418. checking for sigtimedwait... no
  419. checking for sigwait... yes
  420. checking for sigwaitinfo... no
  421. checking for snprintf... yes
  422. checking for strftime... yes
  423. checking for strlcpy... yes
  424. checking for symlinkat... no
  425. checking for sync... yes
  426. checking for sysconf... yes
  427. checking for tcgetpgrp... yes
  428. checking for tcsetpgrp... yes
  429. checking for tempnam... yes
  430. checking for timegm... yes
  431. checking for times... yes
  432. checking for tmpfile... yes
  433. checking for tmpnam... yes
  434. checking for tmpnam_r... no
  435. checking for truncate... yes
  436. checking for uname... yes
  437. checking for unlinkat... no
  438. checking for unsetenv... yes
  439. checking for utimensat... no
  440. checking for utimes... yes
  441. checking for waitid... yes
  442. checking for waitpid... yes
  443. checking for wait3... yes
  444. checking for wait4... yes
  445. checking for wcscoll... yes
  446. checking for wcsftime... yes
  447. checking for wcsxfrm... yes
  448. checking for writev... yes
  449. checking for _getpty... no
  450. checking for chroot... yes
  451. checking for link... yes
  452. checking for symlink... yes
  453. checking for fchdir... yes
  454. checking for fsync... yes
  455. checking for fdatasync... no
  456. checking for epoll... no
  457. checking for kqueue... yes
  458. checking for ctermid_r... yes
  459. checking for flock declaration... yes
  460. checking for flock... yes
  461. checking for getpagesize... yes
  462. checking whether mallopt can set malloc mmap threshold... no
  463. checking for true... true
  464. checking for inet_aton in -lc... yes
  465. checking for chflags... yes
  466. checking for lchflags... yes
  467. checking for inflateCopy in -lz... yes
  468. checking for hstrerror... yes
  469. checking for inet_aton... yes
  470. checking for inet_pton... yes
  471. checking for setgroups... yes
  472. checking for openpty... yes
  473. checking for forkpty... yes
  474. checking for memmove... yes
  475. checking for fseek64... no
  476. checking for fseeko... yes
  477. checking for fstatvfs... yes
  478. checking for ftell64... no
  479. checking for ftello... yes
  480. checking for statvfs... yes
  481. checking for dup2... yes
  482. checking for getcwd... yes
  483. checking for strdup... yes
  484. checking for getpgrp... yes
  485. checking for setpgrp... (cached) yes
  486. checking for gettimeofday... yes
  487. checking for clock_gettime... no
  488. checking for clock_gettime in -lrt... no
  489. checking for clock_getres... no
  490. checking for clock_getres in -lrt... no
  491. checking for major... yes
  492. checking for getaddrinfo... yes
  493. checking getaddrinfo bug... no
  494. checking for getnameinfo... yes
  495. checking whether time.h and sys/time.h may both be included... yes
  496. checking whether struct tm is in sys/time.h or time.h... time.h
  497. checking for struct tm.tm_zone... yes
  498. checking for struct stat.st_rdev... yes
  499. checking for struct stat.st_blksize... yes
  500. checking for struct stat.st_flags... yes
  501. checking for struct stat.st_gen... yes
  502. checking for struct stat.st_birthtime... no
  503. checking for struct stat.st_blocks... yes
  504. checking for time.h that defines altzone... no
  505. checking whether sys/select.h and sys/time.h may both be included... yes
  506. checking for addrinfo... yes
  507. checking for sockaddr_storage... yes
  508. checking whether char is unsigned... no
  509. checking for an ANSI C-conforming const... yes
  510. checking for working volatile... yes
  511. checking for working signed char... yes
  512. checking for prototypes... yes
  513. checking for variable length prototypes and stdarg.h... yes
  514. checking for socketpair... yes
  515. checking if sockaddr has sa_len member... yes
  516. checking whether va_list is an array... yes
  517. checking for gethostbyname_r... no
  518. checking for gethostbyname... yes
  519. checking for __fpu_control... no
  520. checking for __fpu_control in -lieee... no
  521. checking for --with-fpectl... no
  522. checking for --with-libm=STRING... default LIBM=""
  523. checking for --with-libc=STRING... default LIBC=""
  524. checking whether C doubles are little-endian IEEE 754 binary64... yes
  525. checking whether C doubles are big-endian IEEE 754 binary64... no
  526. checking whether C doubles are ARM mixed-endian IEEE 754 binary64... no
  527. checking whether we can use gcc inline assembler to get and set x87 control word... yes
  528. checking for x87-style double rounding... no
  529. checking for acosh... yes
  530. checking for asinh... yes
  531. checking for atanh... yes
  532. checking for copysign... yes
  533. checking for erf... yes
  534. checking for erfc... yes
  535. checking for expm1... yes
  536. checking for finite... yes
  537. checking for gamma... yes
  538. checking for hypot... yes
  539. checking for lgamma... yes
  540. checking for log1p... yes
  541. checking for log2... yes
  542. checking for round... yes
  543. checking for tgamma... yes
  544. checking whether isinf is declared... yes
  545. checking whether isnan is declared... yes
  546. checking whether isfinite is declared... yes
  547. checking whether tanh preserves the sign of zero... yes
  548. checking whether log1p drops the sign of negative zero... no
  549. checking whether POSIX semaphores are enabled... yes
  550. checking for broken sem_getvalue... yes
  551. checking digit size for Python's longs... no value specified
  552. checking wchar.h usability... yes
  553. checking wchar.h presence... yes
  554. checking for wchar.h... yes
  555. checking size of wchar_t... 4
  556. checking for UCS-4 tcl... no
  557. checking whether wchar_t is signed... yes
  558. no usable wchar_t found
  559. checking whether byte ordering is bigendian... no
  560. checking ABIFLAGS... dm
  561. checking SOABI... cpython-33dm
  562. checking LDVERSION... $(VERSION)$(ABIFLAGS)
  563. checking SO... .so
  564. checking whether right shift extends the sign bit... yes
  565. checking for getc_unlocked() and friends... yes
  566. checking how to link readline libs... -lreadline
  567. checking for rl_callback_handler_install in -lreadline... yes
  568. checking for rl_pre_input_hook in -lreadline... yes
  569. checking for rl_completion_display_matches_hook in -lreadline... yes
  570. checking for rl_completion_matches in -lreadline... yes
  571. checking for broken nice()... no
  572. checking for broken poll()... no
  573. checking for struct tm.tm_zone... (cached) yes
  574. checking for working tzset()... yes
  575. checking for tv_nsec in struct stat... no
  576. checking for tv_nsec2 in struct stat... yes
  577. checking whether mvwdelch is an expression... yes
  578. checking whether WINDOW has _flags... no
  579. checking for is_term_resized... yes
  580. checking for resize_term... yes
  581. checking for resizeterm... yes
  582. checking for /dev/ptmx... yes
  583. checking for /dev/ptc... no
  584. checking for %lld and %llu printf() format support... yes
  585. checking for %zd printf() format support... yes
  586. checking for socklen_t... yes
  587. checking for broken mbstowcs... no
  588. checking whether /usr/bin/gcc-4.2 supports computed gotos... yes
  589. checking for --with-computed-gotos... no value specified
  590. checking for build directories... done
  591. configure: creating ./config.status
  592. config.status: creating Makefile.pre
  593. config.status: creating Modules/Setup.config
  594. config.status: creating Misc/python.pc
  595. config.status: creating Modules/ld_so_aix
  596. config.status: creating pyconfig.h
  597. config.status: pyconfig.h is unchanged
  598. creating Modules/Setup
  599. creating Modules/Setup.local
  600. creating Makefile
  601.  

llvm-gcc-make.log

  1.  
  2. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(dynamic_annotations.o) has no symbols
  3. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(pymath.o) has no symbols
  4. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(dynamic_annotations.o) has no symbols
  5. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(pymath.o) has no symbols
  6. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(dynamic_annotations.o) has no symbols
  7. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(pymath.o) has no symbols
  8. ranlib: file: libpython3.3dm.a(dynamic_annotations.o) has no symbols
  9. ranlib: file: libpython3.3dm.a(pymath.o) has no symbols
  10. Could not find platform dependent libraries <exec_prefix>
  11. Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]
  12. Assertion failed: (compact->utf8_length == 0), function _PyUnicode_CheckConsistency, file Objects/unicodeobject.c, line 399.
  13. make: *** [sysconfig] Abort trap: 6
  14.  

clang-gcc-configure.log

  1.  
  2. checking for hg... found
  3. checking for --enable-universalsdk... no
  4. checking for --with-universal-archs... 32-bit
  5. checking MACHDEP... darwin
  6. checking machine type as reported by uname -m... x86_64
  7. checking for --without-gcc... no
  8. checking for gcc... /usr/bin/clang
  9. checking whether the C compiler works... yes
  10. checking for C compiler default output file name... a.out
  11. checking for suffix of executables...
  12. checking whether we are cross compiling... no
  13. checking for suffix of object files... o
  14. checking whether we are using the GNU C compiler... yes
  15. checking whether /usr/bin/clang accepts -g... yes
  16. checking for /usr/bin/clang option to accept ISO C89... none needed
  17. checking for --with-cxx-main=<compiler>... no
  18. checking for c++... c++
  19. configure: WARNING:
  20. By default, distutils will build C++ extension modules with "c++".
  21. If this is not intended, then set CXX on the configure command line.
  22. checking for -Wl,--no-as-needed... no
  23. checking how to run the C preprocessor... /usr/bin/clang -E
  24. checking for grep that handles long lines and -e... /usr/local/bin/grep
  25. checking for egrep... /usr/local/bin/grep -E
  26. checking for ANSI C header files... yes
  27. checking for sys/types.h... yes
  28. checking for sys/stat.h... yes
  29. checking for stdlib.h... yes
  30. checking for string.h... yes
  31. checking for memory.h... yes
  32. checking for strings.h... yes
  33. checking for inttypes.h... yes
  34. checking for stdint.h... yes
  35. checking for unistd.h... yes
  36. checking minix/config.h usability... no
  37. checking minix/config.h presence... no
  38. checking for minix/config.h... no
  39. checking whether it is safe to define __EXTENSIONS__... yes
  40. checking for --with-suffix...
  41. checking for case-insensitive build directory... yes
  42. checking LIBRARY... libpython$(VERSION)$(ABIFLAGS).a
  43. checking LINKCC... $(PURIFY) $(MAINCC)
  44. checking for GNU ld... no
  45. checking for inline... inline
  46. checking for --enable-shared... no
  47. checking for --enable-profiling...
  48. checking LDLIBRARY... libpython$(VERSION)$(ABIFLAGS).a
  49. checking for ranlib... ranlib
  50. checking for ar... ar
  51. checking for python... found
  52. checking for a BSD-compatible install... /usr/local/bin/install -c
  53. checking for --with-pydebug... yes
  54. checking whether /usr/bin/clang accepts and needs -fno-strict-aliasing... no
  55. checking if we can turn off /usr/bin/clang unused result warning... yes
  56. checking whether gcc supports ParseTuple __format__... no
  57. checking whether pthreads are available without options... yes
  58. checking whether c++ also accepts flags for thread support... no
  59. checking for ANSI C header files... (cached) yes
  60. checking asm/types.h usability... no
  61. checking asm/types.h presence... no
  62. checking for asm/types.h... no
  63. checking conio.h usability... no
  64. checking conio.h presence... no
  65. checking for conio.h... no
  66. checking curses.h usability... yes
  67. checking curses.h presence... yes
  68. checking for curses.h... yes
  69. checking direct.h usability... no
  70. checking direct.h presence... no
  71. checking for direct.h... no
  72. checking dlfcn.h usability... yes
  73. checking dlfcn.h presence... yes
  74. checking for dlfcn.h... yes
  75. checking errno.h usability... yes
  76. checking errno.h presence... yes
  77. checking for errno.h... yes
  78. checking fcntl.h usability... yes
  79. checking fcntl.h presence... yes
  80. checking for fcntl.h... yes
  81. checking grp.h usability... yes
  82. checking grp.h presence... yes
  83. checking for grp.h... yes
  84. checking ieeefp.h usability... no
  85. checking ieeefp.h presence... no
  86. checking for ieeefp.h... no
  87. checking io.h usability... no
  88. checking io.h presence... no
  89. checking for io.h... no
  90. checking langinfo.h usability... yes
  91. checking langinfo.h presence... yes
  92. checking for langinfo.h... yes
  93. checking libintl.h usability... no
  94. checking libintl.h presence... no
  95. checking for libintl.h... no
  96. checking ncurses.h usability... yes
  97. checking ncurses.h presence... yes
  98. checking for ncurses.h... yes
  99. checking poll.h usability... yes
  100. checking poll.h presence... yes
  101. checking for poll.h... yes
  102. checking process.h usability... no
  103. checking process.h presence... no
  104. checking for process.h... no
  105. checking pthread.h usability... yes
  106. checking pthread.h presence... yes
  107. checking for pthread.h... yes
  108. checking sched.h usability... yes
  109. checking sched.h presence... yes
  110. checking for sched.h... yes
  111. checking shadow.h usability... no
  112. checking shadow.h presence... no
  113. checking for shadow.h... no
  114. checking signal.h usability... yes
  115. checking signal.h presence... yes
  116. checking for signal.h... yes
  117. checking for stdint.h... (cached) yes
  118. checking stropts.h usability... no
  119. checking stropts.h presence... no
  120. checking for stropts.h... no
  121. checking termios.h usability... yes
  122. checking termios.h presence... yes
  123. checking for termios.h... yes
  124. checking for unistd.h... (cached) yes
  125. checking utime.h usability... yes
  126. checking utime.h presence... yes
  127. checking for utime.h... yes
  128. checking sys/audioio.h usability... no
  129. checking sys/audioio.h presence... no
  130. checking for sys/audioio.h... no
  131. checking sys/xattr.h usability... yes
  132. checking sys/xattr.h presence... yes
  133. checking for sys/xattr.h... yes
  134. checking sys/bsdtty.h usability... no
  135. checking sys/bsdtty.h presence... no
  136. checking for sys/bsdtty.h... no
  137. checking sys/epoll.h usability... no
  138. checking sys/epoll.h presence... no
  139. checking for sys/epoll.h... no
  140. checking sys/event.h usability... yes
  141. checking sys/event.h presence... yes
  142. checking for sys/event.h... yes
  143. checking sys/file.h usability... yes
  144. checking sys/file.h presence... yes
  145. checking for sys/file.h... yes
  146. checking sys/loadavg.h usability... no
  147. checking sys/loadavg.h presence... no
  148. checking for sys/loadavg.h... no
  149. checking sys/lock.h usability... yes
  150. checking sys/lock.h presence... yes
  151. checking for sys/lock.h... yes
  152. checking sys/mkdev.h usability... no
  153. checking sys/mkdev.h presence... no
  154. checking for sys/mkdev.h... no
  155. checking sys/modem.h usability... no
  156. checking sys/modem.h presence... no
  157. checking for sys/modem.h... no
  158. checking sys/param.h usability... yes
  159. checking sys/param.h presence... yes
  160. checking for sys/param.h... yes
  161. checking sys/poll.h usability... yes
  162. checking sys/poll.h presence... yes
  163. checking for sys/poll.h... yes
  164. checking sys/select.h usability... yes
  165. checking sys/select.h presence... yes
  166. checking for sys/select.h... yes
  167. checking sys/sendfile.h usability... no
  168. checking sys/sendfile.h presence... no
  169. checking for sys/sendfile.h... no
  170. checking sys/socket.h usability... yes
  171. checking sys/socket.h presence... yes
  172. checking for sys/socket.h... yes
  173. checking sys/statvfs.h usability... yes
  174. checking sys/statvfs.h presence... yes
  175. checking for sys/statvfs.h... yes
  176. checking for sys/stat.h... (cached) yes
  177. checking sys/termio.h usability... no
  178. checking sys/termio.h presence... no
  179. checking for sys/termio.h... no
  180. checking sys/time.h usability... yes
  181. checking sys/time.h presence... yes
  182. checking for sys/time.h... yes
  183. checking sys/times.h usability... yes
  184. checking sys/times.h presence... yes
  185. checking for sys/times.h... yes
  186. checking for sys/types.h... (cached) yes
  187. checking sys/uio.h usability... yes
  188. checking sys/uio.h presence... yes
  189. checking for sys/uio.h... yes
  190. checking sys/un.h usability... yes
  191. checking sys/un.h presence... yes
  192. checking for sys/un.h... yes
  193. checking sys/utsname.h usability... yes
  194. checking sys/utsname.h presence... yes
  195. checking for sys/utsname.h... yes
  196. checking sys/wait.h usability... yes
  197. checking sys/wait.h presence... yes
  198. checking for sys/wait.h... yes
  199. checking pty.h usability... no
  200. checking pty.h presence... no
  201. checking for pty.h... no
  202. checking libutil.h usability... no
  203. checking libutil.h presence... no
  204. checking for libutil.h... no
  205. checking sys/resource.h usability... yes
  206. checking sys/resource.h presence... yes
  207. checking for sys/resource.h... yes
  208. checking netpacket/packet.h usability... no
  209. checking netpacket/packet.h presence... no
  210. checking for netpacket/packet.h... no
  211. checking sysexits.h usability... yes
  212. checking sysexits.h presence... yes
  213. checking for sysexits.h... yes
  214. checking bluetooth.h usability... no
  215. checking bluetooth.h presence... no
  216. checking for bluetooth.h... no
  217. checking bluetooth/bluetooth.h usability... no
  218. checking bluetooth/bluetooth.h presence... no
  219. checking for bluetooth/bluetooth.h... no
  220. checking linux/tipc.h usability... no
  221. checking linux/tipc.h presence... no
  222. checking for linux/tipc.h... no
  223. checking spawn.h usability... yes
  224. checking spawn.h presence... yes
  225. checking for spawn.h... yes
  226. checking util.h usability... yes
  227. checking util.h presence... yes
  228. checking for util.h... yes
  229. checking for dirent.h that defines DIR... yes
  230. checking for library containing opendir... none required
  231. checking whether sys/types.h defines makedev... yes
  232. checking for net/if.h... yes
  233. checking for term.h... yes
  234. checking for linux/netlink.h... no
  235. checking for linux/can.h... no
  236. checking for linux/can/raw.h... no
  237. checking for clock_t in time.h... yes
  238. checking for makedev... yes
  239. checking Solaris LFS bug... no
  240. checking for mode_t... yes
  241. checking for off_t... yes
  242. checking for pid_t... yes
  243. checking for size_t... yes
  244. checking for uid_t in sys/types.h... yes
  245. checking for uint32_t... yes
  246. checking for uint64_t... yes
  247. checking for int32_t... yes
  248. checking for int64_t... yes
  249. checking for ssize_t... yes
  250. checking size of int... 4
  251. checking size of long... 8
  252. checking size of void *... 8
  253. checking size of short... 2
  254. checking size of float... 4
  255. checking size of double... 8
  256. checking size of fpos_t... 8
  257. checking size of size_t... 8
  258. checking size of pid_t... 4
  259. checking for long long support... yes
  260. checking size of long long... 8
  261. checking for long double support... yes
  262. checking size of long double... 16
  263. checking for _Bool support... yes
  264. checking size of _Bool... 1
  265. checking for uintptr_t... yes
  266. checking size of uintptr_t... 8
  267. checking size of off_t... 8
  268. checking whether to enable large file support... no
  269. checking size of time_t... 8
  270. checking for pthread_t... yes
  271. checking size of pthread_t... 8
  272. checking for --enable-framework... no
  273. checking for dyld... always on for Darwin
  274. checking LDSHARED... $(CC) -bundle -undefined dynamic_lookup
  275. checking CCSHARED...
  276. checking LINKFORSHARED... -framework CoreFoundation
  277. checking CFLAGSFORSHARED...
  278. checking SHLIBS... $(LIBS)
  279. checking for sendfile in -lsendfile... no
  280. checking for dlopen in -ldl... yes
  281. checking for shl_load in -ldld... no
  282. checking for library containing sem_init... none required
  283. checking for textdomain in -lintl... no
  284. checking for t_open in -lnsl... no
  285. checking for socket in -lsocket... no
  286. checking for --with-libs... no
  287. checking for pkg-config... /usr/local/bin/pkg-config
  288. checking for --with-system-expat... no
  289. checking for --with-system-ffi... no
  290. checking for --enable-loadable-sqlite-extensions... no
  291. checking for --with-dbmliborder...
  292. checking for --with-signal-module... yes
  293. checking for --with-threads... yes
  294. checking if PTHREAD_SCOPE_SYSTEM is supported... yes
  295. checking for pthread_sigmask... yes
  296. checking if --enable-ipv6 is specified... yes
  297. checking if RFC2553 API is available... yes
  298. checking ipv6 stack type... kame
  299. using libc
  300. checking for OSX 10.5 SDK or later... yes
  301. checking for --with-doc-strings... yes
  302. checking for --with-tsc... no
  303. checking for --with-pymalloc... yes
  304. checking for --with-valgrind... no
  305. checking for dlopen... yes
  306. checking DYNLOADFILE... dynload_shlib.o
  307. checking MACHDEP_OBJS... MACHDEP_OBJS
  308. checking for alarm... yes
  309. checking for accept4... no
  310. checking for setitimer... yes
  311. checking for getitimer... yes
  312. checking for bind_textdomain_codeset... no
  313. checking for chown... yes
  314. checking for clock... yes
  315. checking for confstr... yes
  316. checking for ctermid... yes
  317. checking for execv... yes
  318. checking for faccessat... no
  319. checking for fchmod... yes
  320. checking for fchmodat... no
  321. checking for fchown... yes
  322. checking for fchownat... no
  323. checking for fexecve... no
  324. checking for fdopendir... no
  325. checking for fork... yes
  326. checking for fpathconf... yes
  327. checking for fstatat... no
  328. checking for ftime... yes
  329. checking for ftruncate... yes
  330. checking for futimesat... no
  331. checking for futimens... no
  332. checking for futimes... yes
  333. checking for gai_strerror... yes
  334. checking for getgrouplist... yes
  335. checking for getgroups... yes
  336. checking for getlogin... yes
  337. checking for getloadavg... yes
  338. checking for getpeername... yes
  339. checking for getpgid... yes
  340. checking for getpid... yes
  341. checking for getpriority... yes
  342. checking for getresuid... no
  343. checking for getresgid... no
  344. checking for getpwent... yes
  345. checking for getspnam... no
  346. checking for getspent... no
  347. checking for getsid... yes
  348. checking for getwd... yes
  349. checking for if_nameindex... yes
  350. checking for initgroups... yes
  351. checking for kill... yes
  352. checking for killpg... yes
  353. checking for lchmod... yes
  354. checking for lchown... yes
  355. checking for lockf... yes
  356. checking for linkat... no
  357. checking for lstat... yes
  358. checking for lutimes... yes
  359. checking for memrchr... no
  360. checking for mbrtowc... yes
  361. checking for mkdirat... no
  362. checking for mkfifo... yes
  363. checking for mkfifoat... no
  364. checking for mknod... yes
  365. checking for mknodat... no
  366. checking for mktime... yes
  367. checking for mremap... no
  368. checking for nice... yes
  369. checking for openat... no
  370. checking for pathconf... yes
  371. checking for pause... yes
  372. checking for pipe2... no
  373. checking for plock... no
  374. checking for poll... yes
  375. checking for posix_fallocate... no
  376. checking for posix_fadvise... no
  377. checking for pread... yes
  378. checking for pthread_init... yes
  379. checking for pthread_kill... yes
  380. checking for putenv... yes
  381. checking for pwrite... yes
  382. checking for readlink... yes
  383. checking for readlinkat... no
  384. checking for readv... yes
  385. checking for realpath... yes
  386. checking for renameat... no
  387. checking for select... yes
  388. checking for sem_open... yes
  389. checking for sem_timedwait... no
  390. checking for sem_getvalue... yes
  391. checking for sem_unlink... yes
  392. checking for sendfile... yes
  393. checking for setegid... yes
  394. checking for seteuid... yes
  395. checking for setgid... yes
  396. checking for sethostname... yes
  397. checking for setlocale... yes
  398. checking for setregid... yes
  399. checking for setreuid... yes
  400. checking for setresuid... no
  401. checking for setresgid... no
  402. checking for setsid... yes
  403. checking for setpgid... yes
  404. checking for setpgrp... yes
  405. checking for setpriority... yes
  406. checking for setuid... yes
  407. checking for setvbuf... yes
  408. checking for sched_get_priority_max... yes
  409. checking for sched_setaffinity... no
  410. checking for sched_setscheduler... no
  411. checking for sched_setparam... no
  412. checking for sched_rr_get_interval... no
  413. checking for sigaction... yes
  414. checking for sigaltstack... yes
  415. checking for siginterrupt... yes
  416. checking for sigpending... yes
  417. checking for sigrelse... yes
  418. checking for sigtimedwait... no
  419. checking for sigwait... yes
  420. checking for sigwaitinfo... no
  421. checking for snprintf... yes
  422. checking for strftime... yes
  423. checking for strlcpy... yes
  424. checking for symlinkat... no
  425. checking for sync... yes
  426. checking for sysconf... yes
  427. checking for tcgetpgrp... yes
  428. checking for tcsetpgrp... yes
  429. checking for tempnam... yes
  430. checking for timegm... yes
  431. checking for times... yes
  432. checking for tmpfile... yes
  433. checking for tmpnam... yes
  434. checking for tmpnam_r... no
  435. checking for truncate... yes
  436. checking for uname... yes
  437. checking for unlinkat... no
  438. checking for unsetenv... yes
  439. checking for utimensat... no
  440. checking for utimes... yes
  441. checking for waitid... yes
  442. checking for waitpid... yes
  443. checking for wait3... yes
  444. checking for wait4... yes
  445. checking for wcscoll... yes
  446. checking for wcsftime... yes
  447. checking for wcsxfrm... yes
  448. checking for writev... yes
  449. checking for _getpty... no
  450. checking for chroot... yes
  451. checking for link... yes
  452. checking for symlink... yes
  453. checking for fchdir... yes
  454. checking for fsync... yes
  455. checking for fdatasync... no
  456. checking for epoll... no
  457. checking for kqueue... yes
  458. checking for ctermid_r... yes
  459. checking for flock declaration... yes
  460. checking for flock... yes
  461. checking for getpagesize... yes
  462. checking whether mallopt can set malloc mmap threshold... no
  463. checking for true... true
  464. checking for inet_aton in -lc... yes
  465. checking for chflags... yes
  466. checking for lchflags... yes
  467. checking for inflateCopy in -lz... yes
  468. checking for hstrerror... yes
  469. checking for inet_aton... yes
  470. checking for inet_pton... yes
  471. checking for setgroups... yes
  472. checking for openpty... yes
  473. checking for forkpty... yes
  474. checking for memmove... yes
  475. checking for fseek64... no
  476. checking for fseeko... yes
  477. checking for fstatvfs... yes
  478. checking for ftell64... no
  479. checking for ftello... yes
  480. checking for statvfs... yes
  481. checking for dup2... yes
  482. checking for getcwd... yes
  483. checking for strdup... yes
  484. checking for getpgrp... yes
  485. checking for setpgrp... (cached) yes
  486. checking for gettimeofday... yes
  487. checking for clock_gettime... no
  488. checking for clock_gettime in -lrt... no
  489. checking for clock_getres... no
  490. checking for clock_getres in -lrt... no
  491. checking for major... yes
  492. checking for getaddrinfo... yes
  493. checking getaddrinfo bug... no
  494. checking for getnameinfo... yes
  495. checking whether time.h and sys/time.h may both be included... yes
  496. checking whether struct tm is in sys/time.h or time.h... time.h
  497. checking for struct tm.tm_zone... yes
  498. checking for struct stat.st_rdev... yes
  499. checking for struct stat.st_blksize... yes
  500. checking for struct stat.st_flags... yes
  501. checking for struct stat.st_gen... yes
  502. checking for struct stat.st_birthtime... no
  503. checking for struct stat.st_blocks... yes
  504. checking for time.h that defines altzone... no
  505. checking whether sys/select.h and sys/time.h may both be included... yes
  506. checking for addrinfo... yes
  507. checking for sockaddr_storage... yes
  508. checking whether char is unsigned... no
  509. checking for an ANSI C-conforming const... yes
  510. checking for working volatile... yes
  511. checking for working signed char... yes
  512. checking for prototypes... yes
  513. checking for variable length prototypes and stdarg.h... yes
  514. checking for socketpair... yes
  515. checking if sockaddr has sa_len member... yes
  516. checking whether va_list is an array... yes
  517. checking for gethostbyname_r... no
  518. checking for gethostbyname... yes
  519. checking for __fpu_control... no
  520. checking for __fpu_control in -lieee... no
  521. checking for --with-fpectl... no
  522. checking for --with-libm=STRING... default LIBM=""
  523. checking for --with-libc=STRING... default LIBC=""
  524. checking whether C doubles are little-endian IEEE 754 binary64... yes
  525. checking whether C doubles are big-endian IEEE 754 binary64... no
  526. checking whether C doubles are ARM mixed-endian IEEE 754 binary64... no
  527. checking whether we can use gcc inline assembler to get and set x87 control word... yes
  528. checking for x87-style double rounding... no
  529. checking for acosh... yes
  530. checking for asinh... yes
  531. checking for atanh... yes
  532. checking for copysign... yes
  533. checking for erf... yes
  534. checking for erfc... yes
  535. checking for expm1... yes
  536. checking for finite... yes
  537. checking for gamma... yes
  538. checking for hypot... yes
  539. checking for lgamma... yes
  540. checking for log1p... yes
  541. checking for log2... yes
  542. checking for round... yes
  543. checking for tgamma... yes
  544. checking whether isinf is declared... yes
  545. checking whether isnan is declared... yes
  546. checking whether isfinite is declared... yes
  547. checking whether tanh preserves the sign of zero... yes
  548. checking whether log1p drops the sign of negative zero... no
  549. checking whether POSIX semaphores are enabled... yes
  550. checking for broken sem_getvalue... yes
  551. checking digit size for Python's longs... no value specified
  552. checking wchar.h usability... yes
  553. checking wchar.h presence... yes
  554. checking for wchar.h... yes
  555. checking size of wchar_t... 4
  556. checking for UCS-4 tcl... no
  557. checking whether wchar_t is signed... yes
  558. no usable wchar_t found
  559. checking whether byte ordering is bigendian... no
  560. checking ABIFLAGS... dm
  561. checking SOABI... cpython-33dm
  562. checking LDVERSION... $(VERSION)$(ABIFLAGS)
  563. checking SO... .so
  564. checking whether right shift extends the sign bit... yes
  565. checking for getc_unlocked() and friends... yes
  566. checking how to link readline libs... -lreadline
  567. checking for rl_callback_handler_install in -lreadline... yes
  568. checking for rl_pre_input_hook in -lreadline... yes
  569. checking for rl_completion_display_matches_hook in -lreadline... yes
  570. checking for rl_completion_matches in -lreadline... yes
  571. checking for broken nice()... no
  572. checking for broken poll()... no
  573. checking for struct tm.tm_zone... (cached) yes
  574. checking for working tzset()... yes
  575. checking for tv_nsec in struct stat... no
  576. checking for tv_nsec2 in struct stat... yes
  577. checking whether mvwdelch is an expression... yes
  578. checking whether WINDOW has _flags... no
  579. checking for is_term_resized... yes
  580. checking for resize_term... yes
  581. checking for resizeterm... yes
  582. checking for /dev/ptmx... yes
  583. checking for /dev/ptc... no
  584. checking for %lld and %llu printf() format support... yes
  585. checking for %zd printf() format support... yes
  586. checking for socklen_t... yes
  587. checking for broken mbstowcs... no
  588. checking whether /usr/bin/clang supports computed gotos... yes
  589. checking for --with-computed-gotos... no value specified
  590. checking for build directories... done
  591. configure: creating ./config.status
  592. config.status: creating Makefile.pre
  593. config.status: creating Modules/Setup.config
  594. config.status: creating Misc/python.pc
  595. config.status: creating Modules/ld_so_aix
  596. config.status: creating pyconfig.h
  597. config.status: pyconfig.h is unchanged
  598. creating Modules/Setup
  599. creating Modules/Setup.local
  600. creating Makefile
  601.  

clang-gcc-make.log

  1.  
  2. warning: unknown warning option '-Wno-unused-result' [-Wunknown-warning-option]
  3. warning: unknown warning option '-Wno-unused-result' [-Wunknown-warning-option]
  4. 1 warning generated.
  5. ./Python/sysmodule.c:348:5: warning: array index of '1' indexes past the end of an array (that contains 1 elements) [-Warray-bounds]
  6. PyTuple_SET_ITEM(args, 1, whatstr);
  7. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  8. In file included from ./Python/sysmodule.c:17:
  9. In file included from ./Include/Python.h:84:
  10. ./Include/tupleobject.h:62:37: note: instantiated from:
  11. #define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = v)
  12. ^
  13. ./Include/tupleobject.h:27:5: note: array 'ob_item' declared here
  14. PyObject *ob_item[1];
  15. ^
  16. ./Python/sysmodule.c:349:5: warning: array index of '2' indexes past the end of an array (that contains 1 elements) [-Warray-bounds]
  17. PyTuple_SET_ITEM(args, 2, arg);
  18. ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  19. In file included from ./Python/sysmodule.c:17:
  20. In file included from ./Include/Python.h:84:
  21. ./Include/tupleobject.h:62:37: note: instantiated from:
  22. #define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = v)
  23. ^
  24. ./Include/tupleobject.h:27:5: note: array 'ob_item' declared here
  25. PyObject *ob_item[1];
  26. ^
  27. warning: unknown warning option '-Wno-unused-result' [-Wunknown-warning-option]
  28. 1 warning generated.
  29. warning: unknown warning option '-Wno-unused-result' [-Wunknown-warning-option]
  30. 3 warnings generated.
  31. 1 warning generated.
  32. warning: unknown warning option '-Wno-unused-result' [-Wunknown-warning-option]
  33. 1 warning generated.
  34. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(dynamic_annotations.o) has no symbols
  35. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(pymath.o) has no symbols
  36. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(dynamic_annotations.o) has no symbols
  37. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(pymath.o) has no symbols
  38. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(dynamic_annotations.o) has no symbols
  39. /Developer/usr/bin/ranlib: file: libpython3.3dm.a(pymath.o) has no symbols
  40. ranlib: file: libpython3.3dm.a(dynamic_annotations.o) has no symbols
  41. ranlib: file: libpython3.3dm.a(pymath.o) has no symbols
  42. Could not find platform dependent libraries <exec_prefix>
  43. Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]
  44. Assertion failed: (compact->utf8_length == 0), function _PyUnicode_CheckConsistency, file Objects/unicodeobject.c, line 399.
  45. make: *** [sysconfig] Abort trap: 6
  46.