commonmarker 0.17.5 → 0.17.6

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of commonmarker might be problematic. Click here for more details.

Files changed (199) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -0
  3. data/ext/commonmarker/cmark/CMakeLists.txt +1 -1
  4. data/ext/commonmarker/cmark/README.md +3 -2
  5. data/ext/commonmarker/cmark/api_test/CMakeLists.txt +1 -1
  6. data/ext/commonmarker/cmark/api_test/main.c +91 -0
  7. data/ext/commonmarker/cmark/changelog.txt +24 -1
  8. data/ext/commonmarker/cmark/extensions/core-extensions.c +1 -0
  9. data/ext/commonmarker/cmark/extensions/core-extensions.h +1 -0
  10. data/ext/commonmarker/cmark/extensions/strikethrough.c +2 -1
  11. data/ext/commonmarker/cmark/extensions/table.c +1 -0
  12. data/ext/commonmarker/cmark/man/man3/cmark-gfm.3 +41 -1
  13. data/ext/commonmarker/cmark/src/CMakeLists.txt +12 -4
  14. data/ext/commonmarker/cmark/src/blocks.c +115 -3
  15. data/ext/commonmarker/cmark/src/buffer.h +0 -2
  16. data/ext/commonmarker/cmark/src/chunk.h +1 -1
  17. data/ext/commonmarker/cmark/src/cmark.c +2 -2
  18. data/ext/commonmarker/cmark/src/cmark.h +9 -0
  19. data/ext/commonmarker/cmark/src/cmark_extension_api.h +9 -7
  20. data/ext/commonmarker/cmark/src/commonmark.c +23 -0
  21. data/ext/commonmarker/cmark/src/footnotes.c +40 -0
  22. data/ext/commonmarker/cmark/src/footnotes.h +25 -0
  23. data/ext/commonmarker/cmark/src/html.c +56 -1
  24. data/ext/commonmarker/cmark/src/inlines.c +46 -25
  25. data/ext/commonmarker/cmark/src/inlines.h +2 -2
  26. data/ext/commonmarker/cmark/src/latex.c +5 -0
  27. data/ext/commonmarker/cmark/src/libcmark-gfm.pc.in +1 -1
  28. data/ext/commonmarker/cmark/src/main.c +3 -0
  29. data/ext/commonmarker/cmark/src/man.c +5 -0
  30. data/ext/commonmarker/cmark/src/map.c +122 -0
  31. data/ext/commonmarker/cmark/src/map.h +42 -0
  32. data/ext/commonmarker/cmark/src/node.c +5 -0
  33. data/ext/commonmarker/cmark/src/parser.h +1 -1
  34. data/ext/commonmarker/cmark/src/plaintext.c +1 -0
  35. data/ext/commonmarker/cmark/src/references.c +11 -125
  36. data/ext/commonmarker/cmark/src/references.h +5 -20
  37. data/ext/commonmarker/cmark/src/render.c +2 -1
  38. data/ext/commonmarker/cmark/src/render.h +3 -0
  39. data/ext/commonmarker/cmark/src/scanners.c +168 -32
  40. data/ext/commonmarker/cmark/src/scanners.h +2 -0
  41. data/ext/commonmarker/cmark/src/scanners.re +10 -0
  42. data/ext/commonmarker/cmark/src/syntax_extension.c +3 -2
  43. data/ext/commonmarker/cmark/src/syntax_extension.h +1 -0
  44. data/ext/commonmarker/cmark/test/CMakeLists.txt +7 -2
  45. data/ext/commonmarker/cmark/test/extensions.txt +59 -0
  46. data/ext/commonmarker/cmark/test/pathological_tests.py +21 -3
  47. data/ext/commonmarker/cmark/wrappers/wrapper.js +6 -0
  48. data/ext/commonmarker/commonmarker.c +14 -0
  49. data/lib/commonmarker/config.rb +1 -0
  50. data/lib/commonmarker/renderer/html_renderer.rb +41 -0
  51. data/lib/commonmarker/version.rb +1 -1
  52. data/test/test_footnotes.rb +25 -0
  53. metadata +9 -148
  54. data/ext/commonmarker/cmark/build/CMakeCache.txt +0 -481
  55. data/ext/commonmarker/cmark/build/CMakeFiles/3.8.2/CMakeCCompiler.cmake +0 -68
  56. data/ext/commonmarker/cmark/build/CMakeFiles/3.8.2/CMakeCXXCompiler.cmake +0 -70
  57. data/ext/commonmarker/cmark/build/CMakeFiles/3.8.2/CMakeDetermineCompilerABI_C.bin +0 -0
  58. data/ext/commonmarker/cmark/build/CMakeFiles/3.8.2/CMakeDetermineCompilerABI_CXX.bin +0 -0
  59. data/ext/commonmarker/cmark/build/CMakeFiles/3.8.2/CMakeSystem.cmake +0 -15
  60. data/ext/commonmarker/cmark/build/CMakeFiles/3.8.2/CompilerIdC/CMakeCCompilerId.c +0 -567
  61. data/ext/commonmarker/cmark/build/CMakeFiles/3.8.2/CompilerIdC/a.out +0 -0
  62. data/ext/commonmarker/cmark/build/CMakeFiles/3.8.2/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -539
  63. data/ext/commonmarker/cmark/build/CMakeFiles/3.8.2/CompilerIdCXX/a.out +0 -0
  64. data/ext/commonmarker/cmark/build/CMakeFiles/3.9.4/CMakeCCompiler.cmake +0 -71
  65. data/ext/commonmarker/cmark/build/CMakeFiles/3.9.4/CMakeCXXCompiler.cmake +0 -73
  66. data/ext/commonmarker/cmark/build/CMakeFiles/3.9.4/CMakeDetermineCompilerABI_C.bin +0 -0
  67. data/ext/commonmarker/cmark/build/CMakeFiles/3.9.4/CMakeDetermineCompilerABI_CXX.bin +0 -0
  68. data/ext/commonmarker/cmark/build/CMakeFiles/3.9.4/CMakeSystem.cmake +0 -15
  69. data/ext/commonmarker/cmark/build/CMakeFiles/3.9.4/CompilerIdC/CMakeCCompilerId.c +0 -567
  70. data/ext/commonmarker/cmark/build/CMakeFiles/3.9.4/CompilerIdC/a.out +0 -0
  71. data/ext/commonmarker/cmark/build/CMakeFiles/3.9.4/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -539
  72. data/ext/commonmarker/cmark/build/CMakeFiles/3.9.4/CompilerIdCXX/a.out +0 -0
  73. data/ext/commonmarker/cmark/build/CMakeFiles/CMakeDirectoryInformation.cmake +0 -16
  74. data/ext/commonmarker/cmark/build/CMakeFiles/CMakeError.log +0 -14
  75. data/ext/commonmarker/cmark/build/CMakeFiles/CMakeOutput.log +0 -1169
  76. data/ext/commonmarker/cmark/build/CMakeFiles/Makefile.cmake +0 -155
  77. data/ext/commonmarker/cmark/build/CMakeFiles/Makefile2 +0 -391
  78. data/ext/commonmarker/cmark/build/CMakeFiles/TargetDirectories.txt +0 -48
  79. data/ext/commonmarker/cmark/build/CMakeFiles/cmake.check_cache +0 -1
  80. data/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.bin +0 -0
  81. data/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c +0 -34
  82. data/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx +0 -405
  83. data/ext/commonmarker/cmark/build/CMakeFiles/progress.marks +0 -1
  84. data/ext/commonmarker/cmark/build/CTestTestfile.cmake +0 -11
  85. data/ext/commonmarker/cmark/build/Makefile +0 -280
  86. data/ext/commonmarker/cmark/build/api_test/CMakeFiles/CMakeDirectoryInformation.cmake +0 -16
  87. data/ext/commonmarker/cmark/build/api_test/CMakeFiles/api_test.dir/DependInfo.cmake +0 -38
  88. data/ext/commonmarker/cmark/build/api_test/CMakeFiles/api_test.dir/build.make +0 -169
  89. data/ext/commonmarker/cmark/build/api_test/CMakeFiles/api_test.dir/cmake_clean.cmake +0 -12
  90. data/ext/commonmarker/cmark/build/api_test/CMakeFiles/api_test.dir/depend.make +0 -2
  91. data/ext/commonmarker/cmark/build/api_test/CMakeFiles/api_test.dir/flags.make +0 -17
  92. data/ext/commonmarker/cmark/build/api_test/CMakeFiles/api_test.dir/link.txt +0 -1
  93. data/ext/commonmarker/cmark/build/api_test/CMakeFiles/api_test.dir/progress.make +0 -5
  94. data/ext/commonmarker/cmark/build/api_test/CMakeFiles/progress.marks +0 -1
  95. data/ext/commonmarker/cmark/build/api_test/Makefile +0 -302
  96. data/ext/commonmarker/cmark/build/api_test/cmake_install.cmake +0 -29
  97. data/ext/commonmarker/cmark/build/cmake_install.cmake +0 -49
  98. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/CMakeDirectoryInformation.cmake +0 -16
  99. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/Export/lib/cmake-gfmextensions/cmark-gfmextensions-release.cmake +0 -30
  100. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/Export/lib/cmake-gfmextensions/cmark-gfmextensions.cmake +0 -108
  101. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions.dir/DependInfo.cmake +0 -36
  102. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions.dir/build.make +0 -253
  103. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions.dir/cmake_clean.cmake +0 -16
  104. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions.dir/depend.make +0 -2
  105. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions.dir/flags.make +0 -10
  106. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions.dir/link.txt +0 -1
  107. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions.dir/progress.make +0 -8
  108. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions_static.dir/C.includecache +0 -236
  109. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions_static.dir/DependInfo.cmake +0 -29
  110. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions_static.dir/autolink.c.o +0 -0
  111. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions_static.dir/build.make +0 -249
  112. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions_static.dir/cmake_clean.cmake +0 -15
  113. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions_static.dir/cmake_clean_target.cmake +0 -3
  114. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions_static.dir/core-extensions.c.o +0 -0
  115. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions_static.dir/depend.internal +0 -102
  116. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions_static.dir/depend.make +0 -102
  117. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions_static.dir/ext_scanners.c.o +0 -0
  118. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions_static.dir/flags.make +0 -10
  119. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions_static.dir/link.txt +0 -2
  120. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions_static.dir/progress.make +0 -8
  121. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions_static.dir/strikethrough.c.o +0 -0
  122. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions_static.dir/table.c.o +0 -0
  123. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/libcmark-gfmextensions_static.dir/tagfilter.c.o +0 -0
  124. data/ext/commonmarker/cmark/build/extensions/CMakeFiles/progress.marks +0 -1
  125. data/ext/commonmarker/cmark/build/extensions/Makefile +0 -426
  126. data/ext/commonmarker/cmark/build/extensions/cmake_install.cmake +0 -84
  127. data/ext/commonmarker/cmark/build/extensions/cmarkextensions_export.h +0 -42
  128. data/ext/commonmarker/cmark/build/extensions/libcmark-gfmextensions.a +0 -0
  129. data/ext/commonmarker/cmark/build/man/CMakeFiles/CMakeDirectoryInformation.cmake +0 -16
  130. data/ext/commonmarker/cmark/build/man/CMakeFiles/progress.marks +0 -1
  131. data/ext/commonmarker/cmark/build/man/Makefile +0 -196
  132. data/ext/commonmarker/cmark/build/man/cmake_install.cmake +0 -37
  133. data/ext/commonmarker/cmark/build/src/CMakeFiles/CMakeDirectoryInformation.cmake +0 -16
  134. data/ext/commonmarker/cmark/build/src/CMakeFiles/Export/lib/cmake-gfm/cmark-gfm-release.cmake +0 -38
  135. data/ext/commonmarker/cmark/build/src/CMakeFiles/Export/lib/cmake-gfm/cmark-gfm.cmake +0 -95
  136. data/ext/commonmarker/cmark/build/src/CMakeFiles/Export/lib/cmake/cmark-release.cmake +0 -38
  137. data/ext/commonmarker/cmark/build/src/CMakeFiles/Export/lib/cmake/cmark.cmake +0 -95
  138. data/ext/commonmarker/cmark/build/src/CMakeFiles/cmark-gfm.dir/DependInfo.cmake +0 -30
  139. data/ext/commonmarker/cmark/build/src/CMakeFiles/cmark-gfm.dir/build.make +0 -115
  140. data/ext/commonmarker/cmark/build/src/CMakeFiles/cmark-gfm.dir/cmake_clean.cmake +0 -10
  141. data/ext/commonmarker/cmark/build/src/CMakeFiles/cmark-gfm.dir/depend.make +0 -2
  142. data/ext/commonmarker/cmark/build/src/CMakeFiles/cmark-gfm.dir/flags.make +0 -10
  143. data/ext/commonmarker/cmark/build/src/CMakeFiles/cmark-gfm.dir/link.txt +0 -1
  144. data/ext/commonmarker/cmark/build/src/CMakeFiles/cmark-gfm.dir/progress.make +0 -3
  145. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm.dir/DependInfo.cmake +0 -58
  146. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm.dir/build.make +0 -765
  147. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm.dir/cmake_clean.cmake +0 -35
  148. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm.dir/depend.make +0 -2
  149. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm.dir/flags.make +0 -10
  150. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm.dir/link.txt +0 -1
  151. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm.dir/progress.make +0 -27
  152. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/C.includecache +0 -624
  153. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/DependInfo.cmake +0 -52
  154. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/arena.c.o +0 -0
  155. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/blocks.c.o +0 -0
  156. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/buffer.c.o +0 -0
  157. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/build.make +0 -762
  158. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/cmake_clean.cmake +0 -34
  159. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/cmake_clean_target.cmake +0 -3
  160. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/cmark.c.o +0 -0
  161. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/cmark_ctype.c.o +0 -0
  162. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/commonmark.c.o +0 -0
  163. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/depend.internal +0 -310
  164. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/depend.make +0 -310
  165. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/flags.make +0 -10
  166. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/houdini_href_e.c.o +0 -0
  167. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/houdini_html_e.c.o +0 -0
  168. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/houdini_html_u.c.o +0 -0
  169. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/html.c.o +0 -0
  170. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/inlines.c.o +0 -0
  171. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/iterator.c.o +0 -0
  172. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/latex.c.o +0 -0
  173. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/link.txt +0 -2
  174. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/linked_list.c.o +0 -0
  175. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/man.c.o +0 -0
  176. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/node.c.o +0 -0
  177. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/plaintext.c.o +0 -0
  178. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/plugin.c.o +0 -0
  179. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/progress.make +0 -27
  180. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/references.c.o +0 -0
  181. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/registry.c.o +0 -0
  182. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/render.c.o +0 -0
  183. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/scanners.c.o +0 -0
  184. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/syntax_extension.c.o +0 -0
  185. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/utf8.c.o +0 -0
  186. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark-gfm_static.dir/xml.c.o +0 -0
  187. data/ext/commonmarker/cmark/build/src/CMakeFiles/progress.marks +0 -1
  188. data/ext/commonmarker/cmark/build/src/Makefile +0 -1099
  189. data/ext/commonmarker/cmark/build/src/cmake_install.cmake +0 -97
  190. data/ext/commonmarker/cmark/build/src/cmark_export.h +0 -42
  191. data/ext/commonmarker/cmark/build/src/cmark_version.h +0 -8
  192. data/ext/commonmarker/cmark/build/src/config.h +0 -76
  193. data/ext/commonmarker/cmark/build/src/libcmark-gfm.a +0 -0
  194. data/ext/commonmarker/cmark/build/src/libcmark-gfm.pc +0 -10
  195. data/ext/commonmarker/cmark/build/testdir/CMakeFiles/CMakeDirectoryInformation.cmake +0 -16
  196. data/ext/commonmarker/cmark/build/testdir/CMakeFiles/progress.marks +0 -1
  197. data/ext/commonmarker/cmark/build/testdir/CTestTestfile.cmake +0 -17
  198. data/ext/commonmarker/cmark/build/testdir/Makefile +0 -196
  199. data/ext/commonmarker/cmark/build/testdir/cmake_install.cmake +0 -29
@@ -1,16 +0,0 @@
1
- # CMAKE generated file: DO NOT EDIT!
2
- # Generated by "Unix Makefiles" Generator, CMake Version 3.9
3
-
4
- # Relative path conversion top directories.
5
- set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark")
6
- set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build")
7
-
8
- # Force unix paths in dependencies.
9
- set(CMAKE_FORCE_UNIX_PATHS 1)
10
-
11
-
12
- # The C and CXX include file regular expressions for this directory.
13
- set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
14
- set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
15
- set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
16
- set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
@@ -1,14 +0,0 @@
1
- Performing C SOURCE FILE Test HAVE_FLAG_ADDRESS_SANITIZER failed with the following output:
2
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
3
-
4
- Run Build Command:"/usr/bin/make" "cmTC_d748c/fast"
5
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_d748c.dir/build.make CMakeFiles/cmTC_d748c.dir/build
6
- Building C object CMakeFiles/cmTC_d748c.dir/src.c.o
7
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -DHAVE_FLAG_ADDRESS_SANITIZER -Werror -faddress-sanitizer -faddress-sanitizer -o CMakeFiles/cmTC_d748c.dir/src.c.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
8
- clang: error: unknown argument: '-faddress-sanitizer'
9
- clang: error: unknown argument: '-faddress-sanitizer'
10
- make[1]: *** [CMakeFiles/cmTC_d748c.dir/src.c.o] Error 1
11
- make: *** [cmTC_d748c/fast] Error 2
12
-
13
- Source file was:
14
- int main(void) { return 0; }
@@ -1,1169 +0,0 @@
1
- The system is: Darwin - 16.6.0 - x86_64
2
- Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
3
- Compiler: /Library/Developer/CommandLineTools/usr/bin/cc
4
- Build flags: -fPIC
5
- Id flags:
6
-
7
- The output was:
8
- 0
9
-
10
-
11
- Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
12
-
13
- The C compiler identification is AppleClang, found in "/Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/3.8.2/CompilerIdC/a.out"
14
-
15
- Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
16
- Compiler: /Library/Developer/CommandLineTools/usr/bin/c++
17
- Build flags:
18
- Id flags:
19
-
20
- The output was:
21
- 0
22
-
23
-
24
- Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
25
-
26
- The CXX compiler identification is AppleClang, found in "/Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/3.8.2/CompilerIdCXX/a.out"
27
-
28
- Determining if the C compiler works passed with the following output:
29
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
30
-
31
- Run Build Command:"/usr/bin/make" "cmTC_c1cc6/fast"
32
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_c1cc6.dir/build.make CMakeFiles/cmTC_c1cc6.dir/build
33
- Building C object CMakeFiles/cmTC_c1cc6.dir/testCCompiler.c.o
34
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -o CMakeFiles/cmTC_c1cc6.dir/testCCompiler.c.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/testCCompiler.c
35
- Linking C executable cmTC_c1cc6
36
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c1cc6.dir/link.txt --verbose=1
37
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_c1cc6.dir/testCCompiler.c.o -o cmTC_c1cc6
38
-
39
-
40
- Detecting C compiler ABI info compiled with the following output:
41
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
42
-
43
- Run Build Command:"/usr/bin/make" "cmTC_52029/fast"
44
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_52029.dir/build.make CMakeFiles/cmTC_52029.dir/build
45
- Building C object CMakeFiles/cmTC_52029.dir/CMakeCCompilerABI.c.o
46
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -o CMakeFiles/cmTC_52029.dir/CMakeCCompilerABI.c.o -c /usr/local/Cellar/cmake/3.8.2/share/cmake/Modules/CMakeCCompilerABI.c
47
- Linking C executable cmTC_52029
48
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_52029.dir/link.txt --verbose=1
49
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_52029.dir/CMakeCCompilerABI.c.o -o cmTC_52029
50
- Apple LLVM version 8.1.0 (clang-802.0.42)
51
- Target: x86_64-apple-darwin16.6.0
52
- Thread model: posix
53
- InstalledDir: /Library/Developer/CommandLineTools/usr/bin
54
- "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.12.0 -o cmTC_52029 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_52029.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/bin/../lib/clang/8.1.0/lib/darwin/libclang_rt.osx.a
55
- @(#)PROGRAM:ld PROJECT:ld64-278.4
56
- configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em (tvOS)
57
- Library search paths:
58
- /usr/lib
59
- /usr/local/lib
60
- Framework search paths:
61
- /Library/Frameworks/
62
- /System/Library/Frameworks/
63
-
64
-
65
- Parsed C implicit link information from above output:
66
- link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)]
67
- ignore line: [Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp]
68
- ignore line: []
69
- ignore line: [Run Build Command:"/usr/bin/make" "cmTC_52029/fast"]
70
- ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_52029.dir/build.make CMakeFiles/cmTC_52029.dir/build]
71
- ignore line: [Building C object CMakeFiles/cmTC_52029.dir/CMakeCCompilerABI.c.o]
72
- ignore line: [/Library/Developer/CommandLineTools/usr/bin/cc -fPIC -o CMakeFiles/cmTC_52029.dir/CMakeCCompilerABI.c.o -c /usr/local/Cellar/cmake/3.8.2/share/cmake/Modules/CMakeCCompilerABI.c]
73
- ignore line: [Linking C executable cmTC_52029]
74
- ignore line: [/usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_52029.dir/link.txt --verbose=1]
75
- ignore line: [/Library/Developer/CommandLineTools/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_52029.dir/CMakeCCompilerABI.c.o -o cmTC_52029 ]
76
- ignore line: [Apple LLVM version 8.1.0 (clang-802.0.42)]
77
- ignore line: [Target: x86_64-apple-darwin16.6.0]
78
- ignore line: [Thread model: posix]
79
- ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
80
- link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.12.0 -o cmTC_52029 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_52029.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/bin/../lib/clang/8.1.0/lib/darwin/libclang_rt.osx.a]
81
- arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore
82
- arg [-demangle] ==> ignore
83
- arg [-lto_library] ==> ignore, skip following value
84
- arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library
85
- arg [-dynamic] ==> ignore
86
- arg [-arch] ==> ignore
87
- arg [x86_64] ==> ignore
88
- arg [-macosx_version_min] ==> ignore
89
- arg [10.12.0] ==> ignore
90
- arg [-o] ==> ignore
91
- arg [cmTC_52029] ==> ignore
92
- arg [-search_paths_first] ==> ignore
93
- arg [-headerpad_max_install_names] ==> ignore
94
- arg [-v] ==> ignore
95
- arg [CMakeFiles/cmTC_52029.dir/CMakeCCompilerABI.c.o] ==> ignore
96
- arg [-lSystem] ==> lib [System]
97
- arg [/Library/Developer/CommandLineTools/usr/bin/../lib/clang/8.1.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/bin/../lib/clang/8.1.0/lib/darwin/libclang_rt.osx.a]
98
- Library search paths: [;/usr/lib;/usr/local/lib]
99
- Framework search paths: [;/Library/Frameworks/;/System/Library/Frameworks/]
100
- remove lib [System]
101
- remove lib [/Library/Developer/CommandLineTools/usr/bin/../lib/clang/8.1.0/lib/darwin/libclang_rt.osx.a]
102
- collapse library dir [/usr/lib] ==> [/usr/lib]
103
- collapse library dir [/usr/local/lib] ==> [/usr/local/lib]
104
- collapse framework dir [/Library/Frameworks/] ==> [/Library/Frameworks]
105
- collapse framework dir [/System/Library/Frameworks/] ==> [/System/Library/Frameworks]
106
- implicit libs: []
107
- implicit dirs: [/usr/lib;/usr/local/lib]
108
- implicit fwks: [/Library/Frameworks;/System/Library/Frameworks]
109
-
110
-
111
-
112
-
113
- Detecting C [-std=c11] compiler features compiled with the following output:
114
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
115
-
116
- Run Build Command:"/usr/bin/make" "cmTC_f74c4/fast"
117
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_f74c4.dir/build.make CMakeFiles/cmTC_f74c4.dir/build
118
- Building C object CMakeFiles/cmTC_f74c4.dir/feature_tests.c.o
119
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -std=c11 -o CMakeFiles/cmTC_f74c4.dir/feature_tests.c.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
120
- Linking C executable cmTC_f74c4
121
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f74c4.dir/link.txt --verbose=1
122
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_f74c4.dir/feature_tests.c.o -o cmTC_f74c4
123
-
124
-
125
- Feature record: C_FEATURE:1c_function_prototypes
126
- Feature record: C_FEATURE:1c_restrict
127
- Feature record: C_FEATURE:1c_static_assert
128
- Feature record: C_FEATURE:1c_variadic_macros
129
-
130
-
131
- Detecting C [-std=c99] compiler features compiled with the following output:
132
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
133
-
134
- Run Build Command:"/usr/bin/make" "cmTC_679b9/fast"
135
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_679b9.dir/build.make CMakeFiles/cmTC_679b9.dir/build
136
- Building C object CMakeFiles/cmTC_679b9.dir/feature_tests.c.o
137
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -std=c99 -o CMakeFiles/cmTC_679b9.dir/feature_tests.c.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
138
- Linking C executable cmTC_679b9
139
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_679b9.dir/link.txt --verbose=1
140
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_679b9.dir/feature_tests.c.o -o cmTC_679b9
141
-
142
-
143
- Feature record: C_FEATURE:1c_function_prototypes
144
- Feature record: C_FEATURE:1c_restrict
145
- Feature record: C_FEATURE:0c_static_assert
146
- Feature record: C_FEATURE:1c_variadic_macros
147
-
148
-
149
- Detecting C [-std=c90] compiler features compiled with the following output:
150
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
151
-
152
- Run Build Command:"/usr/bin/make" "cmTC_ec6f6/fast"
153
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_ec6f6.dir/build.make CMakeFiles/cmTC_ec6f6.dir/build
154
- Building C object CMakeFiles/cmTC_ec6f6.dir/feature_tests.c.o
155
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -std=c90 -o CMakeFiles/cmTC_ec6f6.dir/feature_tests.c.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
156
- Linking C executable cmTC_ec6f6
157
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ec6f6.dir/link.txt --verbose=1
158
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_ec6f6.dir/feature_tests.c.o -o cmTC_ec6f6
159
-
160
-
161
- Feature record: C_FEATURE:1c_function_prototypes
162
- Feature record: C_FEATURE:0c_restrict
163
- Feature record: C_FEATURE:0c_static_assert
164
- Feature record: C_FEATURE:0c_variadic_macros
165
- Determining if the CXX compiler works passed with the following output:
166
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
167
-
168
- Run Build Command:"/usr/bin/make" "cmTC_c0b46/fast"
169
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_c0b46.dir/build.make CMakeFiles/cmTC_c0b46.dir/build
170
- Building CXX object CMakeFiles/cmTC_c0b46.dir/testCXXCompiler.cxx.o
171
- /Library/Developer/CommandLineTools/usr/bin/c++ -o CMakeFiles/cmTC_c0b46.dir/testCXXCompiler.cxx.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
172
- Linking CXX executable cmTC_c0b46
173
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c0b46.dir/link.txt --verbose=1
174
- /Library/Developer/CommandLineTools/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_c0b46.dir/testCXXCompiler.cxx.o -o cmTC_c0b46
175
-
176
-
177
- Detecting CXX compiler ABI info compiled with the following output:
178
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
179
-
180
- Run Build Command:"/usr/bin/make" "cmTC_4326c/fast"
181
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_4326c.dir/build.make CMakeFiles/cmTC_4326c.dir/build
182
- Building CXX object CMakeFiles/cmTC_4326c.dir/CMakeCXXCompilerABI.cpp.o
183
- /Library/Developer/CommandLineTools/usr/bin/c++ -o CMakeFiles/cmTC_4326c.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/3.8.2/share/cmake/Modules/CMakeCXXCompilerABI.cpp
184
- Linking CXX executable cmTC_4326c
185
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4326c.dir/link.txt --verbose=1
186
- /Library/Developer/CommandLineTools/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_4326c.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4326c
187
- Apple LLVM version 8.1.0 (clang-802.0.42)
188
- Target: x86_64-apple-darwin16.6.0
189
- Thread model: posix
190
- InstalledDir: /Library/Developer/CommandLineTools/usr/bin
191
- "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.12.0 -o cmTC_4326c -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_4326c.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/bin/../lib/clang/8.1.0/lib/darwin/libclang_rt.osx.a
192
- @(#)PROGRAM:ld PROJECT:ld64-278.4
193
- configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em (tvOS)
194
- Library search paths:
195
- /usr/lib
196
- /usr/local/lib
197
- Framework search paths:
198
- /Library/Frameworks/
199
- /System/Library/Frameworks/
200
-
201
-
202
- Parsed CXX implicit link information from above output:
203
- link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)]
204
- ignore line: [Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp]
205
- ignore line: []
206
- ignore line: [Run Build Command:"/usr/bin/make" "cmTC_4326c/fast"]
207
- ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_4326c.dir/build.make CMakeFiles/cmTC_4326c.dir/build]
208
- ignore line: [Building CXX object CMakeFiles/cmTC_4326c.dir/CMakeCXXCompilerABI.cpp.o]
209
- ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -o CMakeFiles/cmTC_4326c.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/3.8.2/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
210
- ignore line: [Linking CXX executable cmTC_4326c]
211
- ignore line: [/usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4326c.dir/link.txt --verbose=1]
212
- ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_4326c.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_4326c ]
213
- ignore line: [Apple LLVM version 8.1.0 (clang-802.0.42)]
214
- ignore line: [Target: x86_64-apple-darwin16.6.0]
215
- ignore line: [Thread model: posix]
216
- ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
217
- link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.12.0 -o cmTC_4326c -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_4326c.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/bin/../lib/clang/8.1.0/lib/darwin/libclang_rt.osx.a]
218
- arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore
219
- arg [-demangle] ==> ignore
220
- arg [-lto_library] ==> ignore, skip following value
221
- arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library
222
- arg [-dynamic] ==> ignore
223
- arg [-arch] ==> ignore
224
- arg [x86_64] ==> ignore
225
- arg [-macosx_version_min] ==> ignore
226
- arg [10.12.0] ==> ignore
227
- arg [-o] ==> ignore
228
- arg [cmTC_4326c] ==> ignore
229
- arg [-search_paths_first] ==> ignore
230
- arg [-headerpad_max_install_names] ==> ignore
231
- arg [-v] ==> ignore
232
- arg [CMakeFiles/cmTC_4326c.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
233
- arg [-lc++] ==> lib [c++]
234
- arg [-lSystem] ==> lib [System]
235
- arg [/Library/Developer/CommandLineTools/usr/bin/../lib/clang/8.1.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/bin/../lib/clang/8.1.0/lib/darwin/libclang_rt.osx.a]
236
- Library search paths: [;/usr/lib;/usr/local/lib]
237
- Framework search paths: [;/Library/Frameworks/;/System/Library/Frameworks/]
238
- remove lib [System]
239
- remove lib [/Library/Developer/CommandLineTools/usr/bin/../lib/clang/8.1.0/lib/darwin/libclang_rt.osx.a]
240
- collapse library dir [/usr/lib] ==> [/usr/lib]
241
- collapse library dir [/usr/local/lib] ==> [/usr/local/lib]
242
- collapse framework dir [/Library/Frameworks/] ==> [/Library/Frameworks]
243
- collapse framework dir [/System/Library/Frameworks/] ==> [/System/Library/Frameworks]
244
- implicit libs: [c++]
245
- implicit dirs: [/usr/lib;/usr/local/lib]
246
- implicit fwks: [/Library/Frameworks;/System/Library/Frameworks]
247
-
248
-
249
-
250
-
251
- Detecting CXX [-std=c++1z] compiler features compiled with the following output:
252
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
253
-
254
- Run Build Command:"/usr/bin/make" "cmTC_bb59c/fast"
255
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_bb59c.dir/build.make CMakeFiles/cmTC_bb59c.dir/build
256
- Building CXX object CMakeFiles/cmTC_bb59c.dir/feature_tests.cxx.o
257
- /Library/Developer/CommandLineTools/usr/bin/c++ -std=c++1z -o CMakeFiles/cmTC_bb59c.dir/feature_tests.cxx.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
258
- Linking CXX executable cmTC_bb59c
259
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bb59c.dir/link.txt --verbose=1
260
- /Library/Developer/CommandLineTools/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_bb59c.dir/feature_tests.cxx.o -o cmTC_bb59c
261
-
262
-
263
- Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
264
- Feature record: CXX_FEATURE:1cxx_alias_templates
265
- Feature record: CXX_FEATURE:1cxx_alignas
266
- Feature record: CXX_FEATURE:1cxx_alignof
267
- Feature record: CXX_FEATURE:1cxx_attributes
268
- Feature record: CXX_FEATURE:1cxx_attribute_deprecated
269
- Feature record: CXX_FEATURE:1cxx_auto_type
270
- Feature record: CXX_FEATURE:1cxx_binary_literals
271
- Feature record: CXX_FEATURE:1cxx_constexpr
272
- Feature record: CXX_FEATURE:1cxx_contextual_conversions
273
- Feature record: CXX_FEATURE:1cxx_decltype
274
- Feature record: CXX_FEATURE:1cxx_decltype_auto
275
- Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
276
- Feature record: CXX_FEATURE:1cxx_default_function_template_args
277
- Feature record: CXX_FEATURE:1cxx_defaulted_functions
278
- Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
279
- Feature record: CXX_FEATURE:1cxx_delegating_constructors
280
- Feature record: CXX_FEATURE:1cxx_deleted_functions
281
- Feature record: CXX_FEATURE:1cxx_digit_separators
282
- Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
283
- Feature record: CXX_FEATURE:1cxx_explicit_conversions
284
- Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
285
- Feature record: CXX_FEATURE:1cxx_extern_templates
286
- Feature record: CXX_FEATURE:1cxx_final
287
- Feature record: CXX_FEATURE:1cxx_func_identifier
288
- Feature record: CXX_FEATURE:1cxx_generalized_initializers
289
- Feature record: CXX_FEATURE:1cxx_generic_lambdas
290
- Feature record: CXX_FEATURE:1cxx_inheriting_constructors
291
- Feature record: CXX_FEATURE:1cxx_inline_namespaces
292
- Feature record: CXX_FEATURE:1cxx_lambdas
293
- Feature record: CXX_FEATURE:1cxx_lambda_init_captures
294
- Feature record: CXX_FEATURE:1cxx_local_type_template_args
295
- Feature record: CXX_FEATURE:1cxx_long_long_type
296
- Feature record: CXX_FEATURE:1cxx_noexcept
297
- Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
298
- Feature record: CXX_FEATURE:1cxx_nullptr
299
- Feature record: CXX_FEATURE:1cxx_override
300
- Feature record: CXX_FEATURE:1cxx_range_for
301
- Feature record: CXX_FEATURE:1cxx_raw_string_literals
302
- Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
303
- Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
304
- Feature record: CXX_FEATURE:1cxx_return_type_deduction
305
- Feature record: CXX_FEATURE:1cxx_right_angle_brackets
306
- Feature record: CXX_FEATURE:1cxx_rvalue_references
307
- Feature record: CXX_FEATURE:1cxx_sizeof_member
308
- Feature record: CXX_FEATURE:1cxx_static_assert
309
- Feature record: CXX_FEATURE:1cxx_strong_enums
310
- Feature record: CXX_FEATURE:1cxx_template_template_parameters
311
- Feature record: CXX_FEATURE:1cxx_thread_local
312
- Feature record: CXX_FEATURE:1cxx_trailing_return_types
313
- Feature record: CXX_FEATURE:1cxx_unicode_literals
314
- Feature record: CXX_FEATURE:1cxx_uniform_initialization
315
- Feature record: CXX_FEATURE:1cxx_unrestricted_unions
316
- Feature record: CXX_FEATURE:1cxx_user_literals
317
- Feature record: CXX_FEATURE:1cxx_variable_templates
318
- Feature record: CXX_FEATURE:1cxx_variadic_macros
319
- Feature record: CXX_FEATURE:1cxx_variadic_templates
320
-
321
-
322
- Detecting CXX [-std=c++14] compiler features compiled with the following output:
323
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
324
-
325
- Run Build Command:"/usr/bin/make" "cmTC_3bff8/fast"
326
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_3bff8.dir/build.make CMakeFiles/cmTC_3bff8.dir/build
327
- Building CXX object CMakeFiles/cmTC_3bff8.dir/feature_tests.cxx.o
328
- /Library/Developer/CommandLineTools/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_3bff8.dir/feature_tests.cxx.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
329
- Linking CXX executable cmTC_3bff8
330
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3bff8.dir/link.txt --verbose=1
331
- /Library/Developer/CommandLineTools/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_3bff8.dir/feature_tests.cxx.o -o cmTC_3bff8
332
-
333
-
334
- Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
335
- Feature record: CXX_FEATURE:1cxx_alias_templates
336
- Feature record: CXX_FEATURE:1cxx_alignas
337
- Feature record: CXX_FEATURE:1cxx_alignof
338
- Feature record: CXX_FEATURE:1cxx_attributes
339
- Feature record: CXX_FEATURE:1cxx_attribute_deprecated
340
- Feature record: CXX_FEATURE:1cxx_auto_type
341
- Feature record: CXX_FEATURE:1cxx_binary_literals
342
- Feature record: CXX_FEATURE:1cxx_constexpr
343
- Feature record: CXX_FEATURE:1cxx_contextual_conversions
344
- Feature record: CXX_FEATURE:1cxx_decltype
345
- Feature record: CXX_FEATURE:1cxx_decltype_auto
346
- Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
347
- Feature record: CXX_FEATURE:1cxx_default_function_template_args
348
- Feature record: CXX_FEATURE:1cxx_defaulted_functions
349
- Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
350
- Feature record: CXX_FEATURE:1cxx_delegating_constructors
351
- Feature record: CXX_FEATURE:1cxx_deleted_functions
352
- Feature record: CXX_FEATURE:1cxx_digit_separators
353
- Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
354
- Feature record: CXX_FEATURE:1cxx_explicit_conversions
355
- Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
356
- Feature record: CXX_FEATURE:1cxx_extern_templates
357
- Feature record: CXX_FEATURE:1cxx_final
358
- Feature record: CXX_FEATURE:1cxx_func_identifier
359
- Feature record: CXX_FEATURE:1cxx_generalized_initializers
360
- Feature record: CXX_FEATURE:1cxx_generic_lambdas
361
- Feature record: CXX_FEATURE:1cxx_inheriting_constructors
362
- Feature record: CXX_FEATURE:1cxx_inline_namespaces
363
- Feature record: CXX_FEATURE:1cxx_lambdas
364
- Feature record: CXX_FEATURE:1cxx_lambda_init_captures
365
- Feature record: CXX_FEATURE:1cxx_local_type_template_args
366
- Feature record: CXX_FEATURE:1cxx_long_long_type
367
- Feature record: CXX_FEATURE:1cxx_noexcept
368
- Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
369
- Feature record: CXX_FEATURE:1cxx_nullptr
370
- Feature record: CXX_FEATURE:1cxx_override
371
- Feature record: CXX_FEATURE:1cxx_range_for
372
- Feature record: CXX_FEATURE:1cxx_raw_string_literals
373
- Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
374
- Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
375
- Feature record: CXX_FEATURE:1cxx_return_type_deduction
376
- Feature record: CXX_FEATURE:1cxx_right_angle_brackets
377
- Feature record: CXX_FEATURE:1cxx_rvalue_references
378
- Feature record: CXX_FEATURE:1cxx_sizeof_member
379
- Feature record: CXX_FEATURE:1cxx_static_assert
380
- Feature record: CXX_FEATURE:1cxx_strong_enums
381
- Feature record: CXX_FEATURE:1cxx_template_template_parameters
382
- Feature record: CXX_FEATURE:1cxx_thread_local
383
- Feature record: CXX_FEATURE:1cxx_trailing_return_types
384
- Feature record: CXX_FEATURE:1cxx_unicode_literals
385
- Feature record: CXX_FEATURE:1cxx_uniform_initialization
386
- Feature record: CXX_FEATURE:1cxx_unrestricted_unions
387
- Feature record: CXX_FEATURE:1cxx_user_literals
388
- Feature record: CXX_FEATURE:1cxx_variable_templates
389
- Feature record: CXX_FEATURE:1cxx_variadic_macros
390
- Feature record: CXX_FEATURE:1cxx_variadic_templates
391
-
392
-
393
- Detecting CXX [-std=c++11] compiler features compiled with the following output:
394
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
395
-
396
- Run Build Command:"/usr/bin/make" "cmTC_efa64/fast"
397
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_efa64.dir/build.make CMakeFiles/cmTC_efa64.dir/build
398
- Building CXX object CMakeFiles/cmTC_efa64.dir/feature_tests.cxx.o
399
- /Library/Developer/CommandLineTools/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_efa64.dir/feature_tests.cxx.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
400
- Linking CXX executable cmTC_efa64
401
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_efa64.dir/link.txt --verbose=1
402
- /Library/Developer/CommandLineTools/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_efa64.dir/feature_tests.cxx.o -o cmTC_efa64
403
-
404
-
405
- Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
406
- Feature record: CXX_FEATURE:1cxx_alias_templates
407
- Feature record: CXX_FEATURE:1cxx_alignas
408
- Feature record: CXX_FEATURE:1cxx_alignof
409
- Feature record: CXX_FEATURE:1cxx_attributes
410
- Feature record: CXX_FEATURE:0cxx_attribute_deprecated
411
- Feature record: CXX_FEATURE:1cxx_auto_type
412
- Feature record: CXX_FEATURE:0cxx_binary_literals
413
- Feature record: CXX_FEATURE:1cxx_constexpr
414
- Feature record: CXX_FEATURE:0cxx_contextual_conversions
415
- Feature record: CXX_FEATURE:1cxx_decltype
416
- Feature record: CXX_FEATURE:0cxx_decltype_auto
417
- Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
418
- Feature record: CXX_FEATURE:1cxx_default_function_template_args
419
- Feature record: CXX_FEATURE:1cxx_defaulted_functions
420
- Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
421
- Feature record: CXX_FEATURE:1cxx_delegating_constructors
422
- Feature record: CXX_FEATURE:1cxx_deleted_functions
423
- Feature record: CXX_FEATURE:0cxx_digit_separators
424
- Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
425
- Feature record: CXX_FEATURE:1cxx_explicit_conversions
426
- Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
427
- Feature record: CXX_FEATURE:1cxx_extern_templates
428
- Feature record: CXX_FEATURE:1cxx_final
429
- Feature record: CXX_FEATURE:1cxx_func_identifier
430
- Feature record: CXX_FEATURE:1cxx_generalized_initializers
431
- Feature record: CXX_FEATURE:0cxx_generic_lambdas
432
- Feature record: CXX_FEATURE:1cxx_inheriting_constructors
433
- Feature record: CXX_FEATURE:1cxx_inline_namespaces
434
- Feature record: CXX_FEATURE:1cxx_lambdas
435
- Feature record: CXX_FEATURE:0cxx_lambda_init_captures
436
- Feature record: CXX_FEATURE:1cxx_local_type_template_args
437
- Feature record: CXX_FEATURE:1cxx_long_long_type
438
- Feature record: CXX_FEATURE:1cxx_noexcept
439
- Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
440
- Feature record: CXX_FEATURE:1cxx_nullptr
441
- Feature record: CXX_FEATURE:1cxx_override
442
- Feature record: CXX_FEATURE:1cxx_range_for
443
- Feature record: CXX_FEATURE:1cxx_raw_string_literals
444
- Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
445
- Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
446
- Feature record: CXX_FEATURE:0cxx_return_type_deduction
447
- Feature record: CXX_FEATURE:1cxx_right_angle_brackets
448
- Feature record: CXX_FEATURE:1cxx_rvalue_references
449
- Feature record: CXX_FEATURE:1cxx_sizeof_member
450
- Feature record: CXX_FEATURE:1cxx_static_assert
451
- Feature record: CXX_FEATURE:1cxx_strong_enums
452
- Feature record: CXX_FEATURE:1cxx_template_template_parameters
453
- Feature record: CXX_FEATURE:1cxx_thread_local
454
- Feature record: CXX_FEATURE:1cxx_trailing_return_types
455
- Feature record: CXX_FEATURE:1cxx_unicode_literals
456
- Feature record: CXX_FEATURE:1cxx_uniform_initialization
457
- Feature record: CXX_FEATURE:1cxx_unrestricted_unions
458
- Feature record: CXX_FEATURE:1cxx_user_literals
459
- Feature record: CXX_FEATURE:0cxx_variable_templates
460
- Feature record: CXX_FEATURE:1cxx_variadic_macros
461
- Feature record: CXX_FEATURE:1cxx_variadic_templates
462
-
463
-
464
- Detecting CXX [-std=c++98] compiler features compiled with the following output:
465
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
466
-
467
- Run Build Command:"/usr/bin/make" "cmTC_19fff/fast"
468
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_19fff.dir/build.make CMakeFiles/cmTC_19fff.dir/build
469
- Building CXX object CMakeFiles/cmTC_19fff.dir/feature_tests.cxx.o
470
- /Library/Developer/CommandLineTools/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_19fff.dir/feature_tests.cxx.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
471
- Linking CXX executable cmTC_19fff
472
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_19fff.dir/link.txt --verbose=1
473
- /Library/Developer/CommandLineTools/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_19fff.dir/feature_tests.cxx.o -o cmTC_19fff
474
-
475
-
476
- Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
477
- Feature record: CXX_FEATURE:0cxx_alias_templates
478
- Feature record: CXX_FEATURE:0cxx_alignas
479
- Feature record: CXX_FEATURE:0cxx_alignof
480
- Feature record: CXX_FEATURE:0cxx_attributes
481
- Feature record: CXX_FEATURE:0cxx_attribute_deprecated
482
- Feature record: CXX_FEATURE:0cxx_auto_type
483
- Feature record: CXX_FEATURE:0cxx_binary_literals
484
- Feature record: CXX_FEATURE:0cxx_constexpr
485
- Feature record: CXX_FEATURE:0cxx_contextual_conversions
486
- Feature record: CXX_FEATURE:0cxx_decltype
487
- Feature record: CXX_FEATURE:0cxx_decltype_auto
488
- Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types
489
- Feature record: CXX_FEATURE:0cxx_default_function_template_args
490
- Feature record: CXX_FEATURE:0cxx_defaulted_functions
491
- Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
492
- Feature record: CXX_FEATURE:0cxx_delegating_constructors
493
- Feature record: CXX_FEATURE:0cxx_deleted_functions
494
- Feature record: CXX_FEATURE:0cxx_digit_separators
495
- Feature record: CXX_FEATURE:0cxx_enum_forward_declarations
496
- Feature record: CXX_FEATURE:0cxx_explicit_conversions
497
- Feature record: CXX_FEATURE:0cxx_extended_friend_declarations
498
- Feature record: CXX_FEATURE:0cxx_extern_templates
499
- Feature record: CXX_FEATURE:0cxx_final
500
- Feature record: CXX_FEATURE:0cxx_func_identifier
501
- Feature record: CXX_FEATURE:0cxx_generalized_initializers
502
- Feature record: CXX_FEATURE:0cxx_generic_lambdas
503
- Feature record: CXX_FEATURE:0cxx_inheriting_constructors
504
- Feature record: CXX_FEATURE:0cxx_inline_namespaces
505
- Feature record: CXX_FEATURE:0cxx_lambdas
506
- Feature record: CXX_FEATURE:0cxx_lambda_init_captures
507
- Feature record: CXX_FEATURE:0cxx_local_type_template_args
508
- Feature record: CXX_FEATURE:0cxx_long_long_type
509
- Feature record: CXX_FEATURE:0cxx_noexcept
510
- Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
511
- Feature record: CXX_FEATURE:0cxx_nullptr
512
- Feature record: CXX_FEATURE:0cxx_override
513
- Feature record: CXX_FEATURE:0cxx_range_for
514
- Feature record: CXX_FEATURE:0cxx_raw_string_literals
515
- Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
516
- Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
517
- Feature record: CXX_FEATURE:0cxx_return_type_deduction
518
- Feature record: CXX_FEATURE:0cxx_right_angle_brackets
519
- Feature record: CXX_FEATURE:0cxx_rvalue_references
520
- Feature record: CXX_FEATURE:0cxx_sizeof_member
521
- Feature record: CXX_FEATURE:0cxx_static_assert
522
- Feature record: CXX_FEATURE:0cxx_strong_enums
523
- Feature record: CXX_FEATURE:1cxx_template_template_parameters
524
- Feature record: CXX_FEATURE:0cxx_thread_local
525
- Feature record: CXX_FEATURE:0cxx_trailing_return_types
526
- Feature record: CXX_FEATURE:0cxx_unicode_literals
527
- Feature record: CXX_FEATURE:0cxx_uniform_initialization
528
- Feature record: CXX_FEATURE:0cxx_unrestricted_unions
529
- Feature record: CXX_FEATURE:0cxx_user_literals
530
- Feature record: CXX_FEATURE:0cxx_variable_templates
531
- Feature record: CXX_FEATURE:0cxx_variadic_macros
532
- Feature record: CXX_FEATURE:0cxx_variadic_templates
533
- Performing C SOURCE FILE Test HAVE_FLAG_SANITIZE_ADDRESS succeeded with the following output:
534
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
535
-
536
- Run Build Command:"/usr/bin/make" "cmTC_60b35/fast"
537
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_60b35.dir/build.make CMakeFiles/cmTC_60b35.dir/build
538
- Building C object CMakeFiles/cmTC_60b35.dir/src.c.o
539
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -DHAVE_FLAG_SANITIZE_ADDRESS -Werror -fsanitize=address -fsanitize=address -o CMakeFiles/cmTC_60b35.dir/src.c.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
540
- Linking C executable cmTC_60b35
541
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_60b35.dir/link.txt --verbose=1
542
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -DHAVE_FLAG_SANITIZE_ADDRESS -Werror -fsanitize=address -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_60b35.dir/src.c.o -o cmTC_60b35
543
-
544
- Source file was:
545
- int main(void) { return 0; }
546
- Performing C++ SOURCE FILE Test COMPILER_HAS_HIDDEN_VISIBILITY succeeded with the following output:
547
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
548
-
549
- Run Build Command:"/usr/bin/make" "cmTC_c703f/fast"
550
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_c703f.dir/build.make CMakeFiles/cmTC_c703f.dir/build
551
- Building CXX object CMakeFiles/cmTC_c703f.dir/src.cxx.o
552
- /Library/Developer/CommandLineTools/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_VISIBILITY -fvisibility=hidden -o CMakeFiles/cmTC_c703f.dir/src.cxx.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx
553
- Linking CXX executable cmTC_c703f
554
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c703f.dir/link.txt --verbose=1
555
- /Library/Developer/CommandLineTools/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_VISIBILITY -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_c703f.dir/src.cxx.o -o cmTC_c703f
556
-
557
- Source file was:
558
- int main() { return 0; }
559
- Performing C++ SOURCE FILE Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY succeeded with the following output:
560
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
561
-
562
- Run Build Command:"/usr/bin/make" "cmTC_3c87e/fast"
563
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_3c87e.dir/build.make CMakeFiles/cmTC_3c87e.dir/build
564
- Building CXX object CMakeFiles/cmTC_3c87e.dir/src.cxx.o
565
- /Library/Developer/CommandLineTools/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_INLINE_VISIBILITY -fvisibility-inlines-hidden -o CMakeFiles/cmTC_3c87e.dir/src.cxx.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx
566
- Linking CXX executable cmTC_3c87e
567
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3c87e.dir/link.txt --verbose=1
568
- /Library/Developer/CommandLineTools/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_INLINE_VISIBILITY -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_3c87e.dir/src.cxx.o -o cmTC_3c87e
569
-
570
- Source file was:
571
- int main() { return 0; }
572
- Performing C++ SOURCE FILE Test COMPILER_HAS_DEPRECATED_ATTR succeeded with the following output:
573
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
574
-
575
- Run Build Command:"/usr/bin/make" "cmTC_658aa/fast"
576
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_658aa.dir/build.make CMakeFiles/cmTC_658aa.dir/build
577
- Building CXX object CMakeFiles/cmTC_658aa.dir/src.cxx.o
578
- /Library/Developer/CommandLineTools/usr/bin/c++ -DCOMPILER_HAS_DEPRECATED_ATTR -o CMakeFiles/cmTC_658aa.dir/src.cxx.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx
579
- /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx:2:25: warning: 'somefunc' is deprecated [-Wdeprecated-declarations]
580
- int main() { return somefunc();}
581
- ^
582
- /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx:1:37: note: 'somefunc' has been explicitly marked deprecated here
583
- __attribute__((__deprecated__)) int somefunc() { return 0; }
584
- ^
585
- 1 warning generated.
586
- Linking CXX executable cmTC_658aa
587
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_658aa.dir/link.txt --verbose=1
588
- /Library/Developer/CommandLineTools/usr/bin/c++ -DCOMPILER_HAS_DEPRECATED_ATTR -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_658aa.dir/src.cxx.o -o cmTC_658aa
589
-
590
- Source file was:
591
- __attribute__((__deprecated__)) int somefunc() { return 0; }
592
- int main() { return somefunc();}
593
- Determining if the include file stdbool.h exists passed with the following output:
594
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
595
-
596
- Run Build Command:"/usr/bin/make" "cmTC_fc7e5/fast"
597
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_fc7e5.dir/build.make CMakeFiles/cmTC_fc7e5.dir/build
598
- Building C object CMakeFiles/cmTC_fc7e5.dir/CheckIncludeFile.c.o
599
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -o CMakeFiles/cmTC_fc7e5.dir/CheckIncludeFile.c.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
600
- Linking C executable cmTC_fc7e5
601
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fc7e5.dir/link.txt --verbose=1
602
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_fc7e5.dir/CheckIncludeFile.c.o -o cmTC_fc7e5
603
-
604
-
605
- Performing C SOURCE FILE Test HAVE___BUILTIN_EXPECT succeeded with the following output:
606
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
607
-
608
- Run Build Command:"/usr/bin/make" "cmTC_ee203/fast"
609
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_ee203.dir/build.make CMakeFiles/cmTC_ee203.dir/build
610
- Building C object CMakeFiles/cmTC_ee203.dir/src.c.o
611
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -DHAVE___BUILTIN_EXPECT -o CMakeFiles/cmTC_ee203.dir/src.c.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
612
- /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c:1:14: warning: ignoring return value of function declared with const attribute [-Wunused-value]
613
- int main() { __builtin_expect(0,0); return 0; }
614
- ^~~~~~~~~~~~~~~~ ~~~
615
- 1 warning generated.
616
- Linking C executable cmTC_ee203
617
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ee203.dir/link.txt --verbose=1
618
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -DHAVE___BUILTIN_EXPECT -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_ee203.dir/src.c.o -o cmTC_ee203
619
-
620
- Source file was:
621
- int main() { __builtin_expect(0,0); return 0; }
622
- Performing C SOURCE FILE Test HAVE___ATTRIBUTE__ succeeded with the following output:
623
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
624
-
625
- Run Build Command:"/usr/bin/make" "cmTC_3fa90/fast"
626
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_3fa90.dir/build.make CMakeFiles/cmTC_3fa90.dir/build
627
- Building C object CMakeFiles/cmTC_3fa90.dir/src.c.o
628
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -DHAVE___ATTRIBUTE__ -o CMakeFiles/cmTC_3fa90.dir/src.c.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
629
- Linking C executable cmTC_3fa90
630
- /usr/local/Cellar/cmake/3.8.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3fa90.dir/link.txt --verbose=1
631
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -DHAVE___ATTRIBUTE__ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_3fa90.dir/src.c.o -o cmTC_3fa90
632
-
633
- Source file was:
634
-
635
- int f(void) __attribute__ (());
636
- int main() { return 0; }
637
-
638
- The system is: Darwin - 17.0.0 - x86_64
639
- Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
640
- Compiler: /Library/Developer/CommandLineTools/usr/bin/cc
641
- Build flags: -fPIC
642
- Id flags:
643
-
644
- The output was:
645
- 0
646
-
647
-
648
- Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
649
-
650
- The C compiler identification is AppleClang, found in "/Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/3.9.4/CompilerIdC/a.out"
651
-
652
- Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
653
- Compiler: /Library/Developer/CommandLineTools/usr/bin/c++
654
- Build flags:
655
- Id flags:
656
-
657
- The output was:
658
- 0
659
-
660
-
661
- Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
662
-
663
- The CXX compiler identification is AppleClang, found in "/Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/3.9.4/CompilerIdCXX/a.out"
664
-
665
- Determining if the C compiler works passed with the following output:
666
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
667
-
668
- Run Build Command:"/usr/bin/make" "cmTC_b6e23/fast"
669
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_b6e23.dir/build.make CMakeFiles/cmTC_b6e23.dir/build
670
- Building C object CMakeFiles/cmTC_b6e23.dir/testCCompiler.c.o
671
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -o CMakeFiles/cmTC_b6e23.dir/testCCompiler.c.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/testCCompiler.c
672
- Linking C executable cmTC_b6e23
673
- /usr/local/Cellar/cmake/3.9.4/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b6e23.dir/link.txt --verbose=1
674
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_b6e23.dir/testCCompiler.c.o -o cmTC_b6e23
675
-
676
-
677
- Detecting C compiler ABI info compiled with the following output:
678
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
679
-
680
- Run Build Command:"/usr/bin/make" "cmTC_da240/fast"
681
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_da240.dir/build.make CMakeFiles/cmTC_da240.dir/build
682
- Building C object CMakeFiles/cmTC_da240.dir/CMakeCCompilerABI.c.o
683
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -o CMakeFiles/cmTC_da240.dir/CMakeCCompilerABI.c.o -c /usr/local/Cellar/cmake/3.9.4/share/cmake/Modules/CMakeCCompilerABI.c
684
- Linking C executable cmTC_da240
685
- /usr/local/Cellar/cmake/3.9.4/bin/cmake -E cmake_link_script CMakeFiles/cmTC_da240.dir/link.txt --verbose=1
686
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_da240.dir/CMakeCCompilerABI.c.o -o cmTC_da240
687
- Apple LLVM version 9.0.0 (clang-900.0.38)
688
- Target: x86_64-apple-darwin17.0.0
689
- Thread model: posix
690
- InstalledDir: /Library/Developer/CommandLineTools/usr/bin
691
- "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.13.0 -o cmTC_da240 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_da240.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a
692
- @(#)PROGRAM:ld PROJECT:ld64-302.3
693
- configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em (tvOS)
694
- Library search paths:
695
- /usr/lib
696
- /usr/local/lib
697
- Framework search paths:
698
- /Library/Frameworks/
699
- /System/Library/Frameworks/
700
-
701
-
702
- Parsed C implicit link information from above output:
703
- link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
704
- ignore line: [Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp]
705
- ignore line: []
706
- ignore line: [Run Build Command:"/usr/bin/make" "cmTC_da240/fast"]
707
- ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_da240.dir/build.make CMakeFiles/cmTC_da240.dir/build]
708
- ignore line: [Building C object CMakeFiles/cmTC_da240.dir/CMakeCCompilerABI.c.o]
709
- ignore line: [/Library/Developer/CommandLineTools/usr/bin/cc -fPIC -o CMakeFiles/cmTC_da240.dir/CMakeCCompilerABI.c.o -c /usr/local/Cellar/cmake/3.9.4/share/cmake/Modules/CMakeCCompilerABI.c]
710
- ignore line: [Linking C executable cmTC_da240]
711
- ignore line: [/usr/local/Cellar/cmake/3.9.4/bin/cmake -E cmake_link_script CMakeFiles/cmTC_da240.dir/link.txt --verbose=1]
712
- ignore line: [/Library/Developer/CommandLineTools/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_da240.dir/CMakeCCompilerABI.c.o -o cmTC_da240 ]
713
- ignore line: [Apple LLVM version 9.0.0 (clang-900.0.38)]
714
- ignore line: [Target: x86_64-apple-darwin17.0.0]
715
- ignore line: [Thread model: posix]
716
- ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
717
- link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.13.0 -o cmTC_da240 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_da240.dir/CMakeCCompilerABI.c.o -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
718
- arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore
719
- arg [-demangle] ==> ignore
720
- arg [-lto_library] ==> ignore, skip following value
721
- arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library
722
- arg [-dynamic] ==> ignore
723
- arg [-arch] ==> ignore
724
- arg [x86_64] ==> ignore
725
- arg [-macosx_version_min] ==> ignore
726
- arg [10.13.0] ==> ignore
727
- arg [-o] ==> ignore
728
- arg [cmTC_da240] ==> ignore
729
- arg [-search_paths_first] ==> ignore
730
- arg [-headerpad_max_install_names] ==> ignore
731
- arg [-v] ==> ignore
732
- arg [CMakeFiles/cmTC_da240.dir/CMakeCCompilerABI.c.o] ==> ignore
733
- arg [-lSystem] ==> lib [System]
734
- arg [/Library/Developer/CommandLineTools/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
735
- Library search paths: [;/usr/lib;/usr/local/lib]
736
- Framework search paths: [;/Library/Frameworks/;/System/Library/Frameworks/]
737
- remove lib [System]
738
- remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
739
- collapse library dir [/usr/lib] ==> [/usr/lib]
740
- collapse library dir [/usr/local/lib] ==> [/usr/local/lib]
741
- collapse framework dir [/Library/Frameworks/] ==> [/Library/Frameworks]
742
- collapse framework dir [/System/Library/Frameworks/] ==> [/System/Library/Frameworks]
743
- implicit libs: []
744
- implicit dirs: [/usr/lib;/usr/local/lib]
745
- implicit fwks: [/Library/Frameworks;/System/Library/Frameworks]
746
-
747
-
748
-
749
-
750
- Detecting C [-std=c11] compiler features compiled with the following output:
751
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
752
-
753
- Run Build Command:"/usr/bin/make" "cmTC_ad327/fast"
754
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_ad327.dir/build.make CMakeFiles/cmTC_ad327.dir/build
755
- Building C object CMakeFiles/cmTC_ad327.dir/feature_tests.c.o
756
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -std=c11 -o CMakeFiles/cmTC_ad327.dir/feature_tests.c.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
757
- Linking C executable cmTC_ad327
758
- /usr/local/Cellar/cmake/3.9.4/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ad327.dir/link.txt --verbose=1
759
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_ad327.dir/feature_tests.c.o -o cmTC_ad327
760
-
761
-
762
- Feature record: C_FEATURE:1c_function_prototypes
763
- Feature record: C_FEATURE:1c_restrict
764
- Feature record: C_FEATURE:1c_static_assert
765
- Feature record: C_FEATURE:1c_variadic_macros
766
-
767
-
768
- Detecting C [-std=c99] compiler features compiled with the following output:
769
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
770
-
771
- Run Build Command:"/usr/bin/make" "cmTC_53c83/fast"
772
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_53c83.dir/build.make CMakeFiles/cmTC_53c83.dir/build
773
- Building C object CMakeFiles/cmTC_53c83.dir/feature_tests.c.o
774
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -std=c99 -o CMakeFiles/cmTC_53c83.dir/feature_tests.c.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
775
- Linking C executable cmTC_53c83
776
- /usr/local/Cellar/cmake/3.9.4/bin/cmake -E cmake_link_script CMakeFiles/cmTC_53c83.dir/link.txt --verbose=1
777
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_53c83.dir/feature_tests.c.o -o cmTC_53c83
778
-
779
-
780
- Feature record: C_FEATURE:1c_function_prototypes
781
- Feature record: C_FEATURE:1c_restrict
782
- Feature record: C_FEATURE:0c_static_assert
783
- Feature record: C_FEATURE:1c_variadic_macros
784
-
785
-
786
- Detecting C [-std=c90] compiler features compiled with the following output:
787
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
788
-
789
- Run Build Command:"/usr/bin/make" "cmTC_41450/fast"
790
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_41450.dir/build.make CMakeFiles/cmTC_41450.dir/build
791
- Building C object CMakeFiles/cmTC_41450.dir/feature_tests.c.o
792
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -std=c90 -o CMakeFiles/cmTC_41450.dir/feature_tests.c.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
793
- Linking C executable cmTC_41450
794
- /usr/local/Cellar/cmake/3.9.4/bin/cmake -E cmake_link_script CMakeFiles/cmTC_41450.dir/link.txt --verbose=1
795
- /Library/Developer/CommandLineTools/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_41450.dir/feature_tests.c.o -o cmTC_41450
796
-
797
-
798
- Feature record: C_FEATURE:1c_function_prototypes
799
- Feature record: C_FEATURE:0c_restrict
800
- Feature record: C_FEATURE:0c_static_assert
801
- Feature record: C_FEATURE:0c_variadic_macros
802
- Determining if the CXX compiler works passed with the following output:
803
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
804
-
805
- Run Build Command:"/usr/bin/make" "cmTC_96074/fast"
806
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_96074.dir/build.make CMakeFiles/cmTC_96074.dir/build
807
- Building CXX object CMakeFiles/cmTC_96074.dir/testCXXCompiler.cxx.o
808
- /Library/Developer/CommandLineTools/usr/bin/c++ -o CMakeFiles/cmTC_96074.dir/testCXXCompiler.cxx.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
809
- Linking CXX executable cmTC_96074
810
- /usr/local/Cellar/cmake/3.9.4/bin/cmake -E cmake_link_script CMakeFiles/cmTC_96074.dir/link.txt --verbose=1
811
- /Library/Developer/CommandLineTools/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_96074.dir/testCXXCompiler.cxx.o -o cmTC_96074
812
-
813
-
814
- Detecting CXX compiler ABI info compiled with the following output:
815
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
816
-
817
- Run Build Command:"/usr/bin/make" "cmTC_87bd0/fast"
818
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_87bd0.dir/build.make CMakeFiles/cmTC_87bd0.dir/build
819
- Building CXX object CMakeFiles/cmTC_87bd0.dir/CMakeCXXCompilerABI.cpp.o
820
- /Library/Developer/CommandLineTools/usr/bin/c++ -o CMakeFiles/cmTC_87bd0.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/3.9.4/share/cmake/Modules/CMakeCXXCompilerABI.cpp
821
- Linking CXX executable cmTC_87bd0
822
- /usr/local/Cellar/cmake/3.9.4/bin/cmake -E cmake_link_script CMakeFiles/cmTC_87bd0.dir/link.txt --verbose=1
823
- /Library/Developer/CommandLineTools/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_87bd0.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_87bd0
824
- Apple LLVM version 9.0.0 (clang-900.0.38)
825
- Target: x86_64-apple-darwin17.0.0
826
- Thread model: posix
827
- InstalledDir: /Library/Developer/CommandLineTools/usr/bin
828
- "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.13.0 -o cmTC_87bd0 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_87bd0.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a
829
- @(#)PROGRAM:ld PROJECT:ld64-302.3
830
- configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em (tvOS)
831
- Library search paths:
832
- /usr/lib
833
- /usr/local/lib
834
- Framework search paths:
835
- /Library/Frameworks/
836
- /System/Library/Frameworks/
837
-
838
-
839
- Parsed CXX implicit link information from above output:
840
- link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
841
- ignore line: [Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp]
842
- ignore line: []
843
- ignore line: [Run Build Command:"/usr/bin/make" "cmTC_87bd0/fast"]
844
- ignore line: [/Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_87bd0.dir/build.make CMakeFiles/cmTC_87bd0.dir/build]
845
- ignore line: [Building CXX object CMakeFiles/cmTC_87bd0.dir/CMakeCXXCompilerABI.cpp.o]
846
- ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -o CMakeFiles/cmTC_87bd0.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/3.9.4/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
847
- ignore line: [Linking CXX executable cmTC_87bd0]
848
- ignore line: [/usr/local/Cellar/cmake/3.9.4/bin/cmake -E cmake_link_script CMakeFiles/cmTC_87bd0.dir/link.txt --verbose=1]
849
- ignore line: [/Library/Developer/CommandLineTools/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_87bd0.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_87bd0 ]
850
- ignore line: [Apple LLVM version 9.0.0 (clang-900.0.38)]
851
- ignore line: [Target: x86_64-apple-darwin17.0.0]
852
- ignore line: [Thread model: posix]
853
- ignore line: [InstalledDir: /Library/Developer/CommandLineTools/usr/bin]
854
- link line: [ "/Library/Developer/CommandLineTools/usr/bin/ld" -demangle -lto_library /Library/Developer/CommandLineTools/usr/lib/libLTO.dylib -dynamic -arch x86_64 -macosx_version_min 10.13.0 -o cmTC_87bd0 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_87bd0.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Library/Developer/CommandLineTools/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
855
- arg [/Library/Developer/CommandLineTools/usr/bin/ld] ==> ignore
856
- arg [-demangle] ==> ignore
857
- arg [-lto_library] ==> ignore, skip following value
858
- arg [/Library/Developer/CommandLineTools/usr/lib/libLTO.dylib] ==> skip value of -lto_library
859
- arg [-dynamic] ==> ignore
860
- arg [-arch] ==> ignore
861
- arg [x86_64] ==> ignore
862
- arg [-macosx_version_min] ==> ignore
863
- arg [10.13.0] ==> ignore
864
- arg [-o] ==> ignore
865
- arg [cmTC_87bd0] ==> ignore
866
- arg [-search_paths_first] ==> ignore
867
- arg [-headerpad_max_install_names] ==> ignore
868
- arg [-v] ==> ignore
869
- arg [CMakeFiles/cmTC_87bd0.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
870
- arg [-lc++] ==> lib [c++]
871
- arg [-lSystem] ==> lib [System]
872
- arg [/Library/Developer/CommandLineTools/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Library/Developer/CommandLineTools/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
873
- Library search paths: [;/usr/lib;/usr/local/lib]
874
- Framework search paths: [;/Library/Frameworks/;/System/Library/Frameworks/]
875
- remove lib [System]
876
- remove lib [/Library/Developer/CommandLineTools/usr/lib/clang/9.0.0/lib/darwin/libclang_rt.osx.a]
877
- collapse library dir [/usr/lib] ==> [/usr/lib]
878
- collapse library dir [/usr/local/lib] ==> [/usr/local/lib]
879
- collapse framework dir [/Library/Frameworks/] ==> [/Library/Frameworks]
880
- collapse framework dir [/System/Library/Frameworks/] ==> [/System/Library/Frameworks]
881
- implicit libs: [c++]
882
- implicit dirs: [/usr/lib;/usr/local/lib]
883
- implicit fwks: [/Library/Frameworks;/System/Library/Frameworks]
884
-
885
-
886
-
887
-
888
- Detecting CXX [-std=c++1z] compiler features compiled with the following output:
889
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
890
-
891
- Run Build Command:"/usr/bin/make" "cmTC_5d3e4/fast"
892
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_5d3e4.dir/build.make CMakeFiles/cmTC_5d3e4.dir/build
893
- Building CXX object CMakeFiles/cmTC_5d3e4.dir/feature_tests.cxx.o
894
- /Library/Developer/CommandLineTools/usr/bin/c++ -std=c++1z -o CMakeFiles/cmTC_5d3e4.dir/feature_tests.cxx.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
895
- Linking CXX executable cmTC_5d3e4
896
- /usr/local/Cellar/cmake/3.9.4/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5d3e4.dir/link.txt --verbose=1
897
- /Library/Developer/CommandLineTools/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_5d3e4.dir/feature_tests.cxx.o -o cmTC_5d3e4
898
-
899
-
900
- Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
901
- Feature record: CXX_FEATURE:1cxx_alias_templates
902
- Feature record: CXX_FEATURE:1cxx_alignas
903
- Feature record: CXX_FEATURE:1cxx_alignof
904
- Feature record: CXX_FEATURE:1cxx_attributes
905
- Feature record: CXX_FEATURE:1cxx_attribute_deprecated
906
- Feature record: CXX_FEATURE:1cxx_auto_type
907
- Feature record: CXX_FEATURE:1cxx_binary_literals
908
- Feature record: CXX_FEATURE:1cxx_constexpr
909
- Feature record: CXX_FEATURE:1cxx_contextual_conversions
910
- Feature record: CXX_FEATURE:1cxx_decltype
911
- Feature record: CXX_FEATURE:1cxx_decltype_auto
912
- Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
913
- Feature record: CXX_FEATURE:1cxx_default_function_template_args
914
- Feature record: CXX_FEATURE:1cxx_defaulted_functions
915
- Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
916
- Feature record: CXX_FEATURE:1cxx_delegating_constructors
917
- Feature record: CXX_FEATURE:1cxx_deleted_functions
918
- Feature record: CXX_FEATURE:1cxx_digit_separators
919
- Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
920
- Feature record: CXX_FEATURE:1cxx_explicit_conversions
921
- Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
922
- Feature record: CXX_FEATURE:1cxx_extern_templates
923
- Feature record: CXX_FEATURE:1cxx_final
924
- Feature record: CXX_FEATURE:1cxx_func_identifier
925
- Feature record: CXX_FEATURE:1cxx_generalized_initializers
926
- Feature record: CXX_FEATURE:1cxx_generic_lambdas
927
- Feature record: CXX_FEATURE:1cxx_inheriting_constructors
928
- Feature record: CXX_FEATURE:1cxx_inline_namespaces
929
- Feature record: CXX_FEATURE:1cxx_lambdas
930
- Feature record: CXX_FEATURE:1cxx_lambda_init_captures
931
- Feature record: CXX_FEATURE:1cxx_local_type_template_args
932
- Feature record: CXX_FEATURE:1cxx_long_long_type
933
- Feature record: CXX_FEATURE:1cxx_noexcept
934
- Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
935
- Feature record: CXX_FEATURE:1cxx_nullptr
936
- Feature record: CXX_FEATURE:1cxx_override
937
- Feature record: CXX_FEATURE:1cxx_range_for
938
- Feature record: CXX_FEATURE:1cxx_raw_string_literals
939
- Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
940
- Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
941
- Feature record: CXX_FEATURE:1cxx_return_type_deduction
942
- Feature record: CXX_FEATURE:1cxx_right_angle_brackets
943
- Feature record: CXX_FEATURE:1cxx_rvalue_references
944
- Feature record: CXX_FEATURE:1cxx_sizeof_member
945
- Feature record: CXX_FEATURE:1cxx_static_assert
946
- Feature record: CXX_FEATURE:1cxx_strong_enums
947
- Feature record: CXX_FEATURE:1cxx_template_template_parameters
948
- Feature record: CXX_FEATURE:1cxx_thread_local
949
- Feature record: CXX_FEATURE:1cxx_trailing_return_types
950
- Feature record: CXX_FEATURE:1cxx_unicode_literals
951
- Feature record: CXX_FEATURE:1cxx_uniform_initialization
952
- Feature record: CXX_FEATURE:1cxx_unrestricted_unions
953
- Feature record: CXX_FEATURE:1cxx_user_literals
954
- Feature record: CXX_FEATURE:1cxx_variable_templates
955
- Feature record: CXX_FEATURE:1cxx_variadic_macros
956
- Feature record: CXX_FEATURE:1cxx_variadic_templates
957
-
958
-
959
- Detecting CXX [-std=c++14] compiler features compiled with the following output:
960
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
961
-
962
- Run Build Command:"/usr/bin/make" "cmTC_c8443/fast"
963
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_c8443.dir/build.make CMakeFiles/cmTC_c8443.dir/build
964
- Building CXX object CMakeFiles/cmTC_c8443.dir/feature_tests.cxx.o
965
- /Library/Developer/CommandLineTools/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_c8443.dir/feature_tests.cxx.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
966
- Linking CXX executable cmTC_c8443
967
- /usr/local/Cellar/cmake/3.9.4/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c8443.dir/link.txt --verbose=1
968
- /Library/Developer/CommandLineTools/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_c8443.dir/feature_tests.cxx.o -o cmTC_c8443
969
-
970
-
971
- Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
972
- Feature record: CXX_FEATURE:1cxx_alias_templates
973
- Feature record: CXX_FEATURE:1cxx_alignas
974
- Feature record: CXX_FEATURE:1cxx_alignof
975
- Feature record: CXX_FEATURE:1cxx_attributes
976
- Feature record: CXX_FEATURE:1cxx_attribute_deprecated
977
- Feature record: CXX_FEATURE:1cxx_auto_type
978
- Feature record: CXX_FEATURE:1cxx_binary_literals
979
- Feature record: CXX_FEATURE:1cxx_constexpr
980
- Feature record: CXX_FEATURE:1cxx_contextual_conversions
981
- Feature record: CXX_FEATURE:1cxx_decltype
982
- Feature record: CXX_FEATURE:1cxx_decltype_auto
983
- Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
984
- Feature record: CXX_FEATURE:1cxx_default_function_template_args
985
- Feature record: CXX_FEATURE:1cxx_defaulted_functions
986
- Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
987
- Feature record: CXX_FEATURE:1cxx_delegating_constructors
988
- Feature record: CXX_FEATURE:1cxx_deleted_functions
989
- Feature record: CXX_FEATURE:1cxx_digit_separators
990
- Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
991
- Feature record: CXX_FEATURE:1cxx_explicit_conversions
992
- Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
993
- Feature record: CXX_FEATURE:1cxx_extern_templates
994
- Feature record: CXX_FEATURE:1cxx_final
995
- Feature record: CXX_FEATURE:1cxx_func_identifier
996
- Feature record: CXX_FEATURE:1cxx_generalized_initializers
997
- Feature record: CXX_FEATURE:1cxx_generic_lambdas
998
- Feature record: CXX_FEATURE:1cxx_inheriting_constructors
999
- Feature record: CXX_FEATURE:1cxx_inline_namespaces
1000
- Feature record: CXX_FEATURE:1cxx_lambdas
1001
- Feature record: CXX_FEATURE:1cxx_lambda_init_captures
1002
- Feature record: CXX_FEATURE:1cxx_local_type_template_args
1003
- Feature record: CXX_FEATURE:1cxx_long_long_type
1004
- Feature record: CXX_FEATURE:1cxx_noexcept
1005
- Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
1006
- Feature record: CXX_FEATURE:1cxx_nullptr
1007
- Feature record: CXX_FEATURE:1cxx_override
1008
- Feature record: CXX_FEATURE:1cxx_range_for
1009
- Feature record: CXX_FEATURE:1cxx_raw_string_literals
1010
- Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
1011
- Feature record: CXX_FEATURE:1cxx_relaxed_constexpr
1012
- Feature record: CXX_FEATURE:1cxx_return_type_deduction
1013
- Feature record: CXX_FEATURE:1cxx_right_angle_brackets
1014
- Feature record: CXX_FEATURE:1cxx_rvalue_references
1015
- Feature record: CXX_FEATURE:1cxx_sizeof_member
1016
- Feature record: CXX_FEATURE:1cxx_static_assert
1017
- Feature record: CXX_FEATURE:1cxx_strong_enums
1018
- Feature record: CXX_FEATURE:1cxx_template_template_parameters
1019
- Feature record: CXX_FEATURE:1cxx_thread_local
1020
- Feature record: CXX_FEATURE:1cxx_trailing_return_types
1021
- Feature record: CXX_FEATURE:1cxx_unicode_literals
1022
- Feature record: CXX_FEATURE:1cxx_uniform_initialization
1023
- Feature record: CXX_FEATURE:1cxx_unrestricted_unions
1024
- Feature record: CXX_FEATURE:1cxx_user_literals
1025
- Feature record: CXX_FEATURE:1cxx_variable_templates
1026
- Feature record: CXX_FEATURE:1cxx_variadic_macros
1027
- Feature record: CXX_FEATURE:1cxx_variadic_templates
1028
-
1029
-
1030
- Detecting CXX [-std=c++11] compiler features compiled with the following output:
1031
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
1032
-
1033
- Run Build Command:"/usr/bin/make" "cmTC_ae5bb/fast"
1034
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_ae5bb.dir/build.make CMakeFiles/cmTC_ae5bb.dir/build
1035
- Building CXX object CMakeFiles/cmTC_ae5bb.dir/feature_tests.cxx.o
1036
- /Library/Developer/CommandLineTools/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_ae5bb.dir/feature_tests.cxx.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
1037
- Linking CXX executable cmTC_ae5bb
1038
- /usr/local/Cellar/cmake/3.9.4/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ae5bb.dir/link.txt --verbose=1
1039
- /Library/Developer/CommandLineTools/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_ae5bb.dir/feature_tests.cxx.o -o cmTC_ae5bb
1040
-
1041
-
1042
- Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
1043
- Feature record: CXX_FEATURE:1cxx_alias_templates
1044
- Feature record: CXX_FEATURE:1cxx_alignas
1045
- Feature record: CXX_FEATURE:1cxx_alignof
1046
- Feature record: CXX_FEATURE:1cxx_attributes
1047
- Feature record: CXX_FEATURE:0cxx_attribute_deprecated
1048
- Feature record: CXX_FEATURE:1cxx_auto_type
1049
- Feature record: CXX_FEATURE:0cxx_binary_literals
1050
- Feature record: CXX_FEATURE:1cxx_constexpr
1051
- Feature record: CXX_FEATURE:0cxx_contextual_conversions
1052
- Feature record: CXX_FEATURE:1cxx_decltype
1053
- Feature record: CXX_FEATURE:0cxx_decltype_auto
1054
- Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types
1055
- Feature record: CXX_FEATURE:1cxx_default_function_template_args
1056
- Feature record: CXX_FEATURE:1cxx_defaulted_functions
1057
- Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers
1058
- Feature record: CXX_FEATURE:1cxx_delegating_constructors
1059
- Feature record: CXX_FEATURE:1cxx_deleted_functions
1060
- Feature record: CXX_FEATURE:0cxx_digit_separators
1061
- Feature record: CXX_FEATURE:1cxx_enum_forward_declarations
1062
- Feature record: CXX_FEATURE:1cxx_explicit_conversions
1063
- Feature record: CXX_FEATURE:1cxx_extended_friend_declarations
1064
- Feature record: CXX_FEATURE:1cxx_extern_templates
1065
- Feature record: CXX_FEATURE:1cxx_final
1066
- Feature record: CXX_FEATURE:1cxx_func_identifier
1067
- Feature record: CXX_FEATURE:1cxx_generalized_initializers
1068
- Feature record: CXX_FEATURE:0cxx_generic_lambdas
1069
- Feature record: CXX_FEATURE:1cxx_inheriting_constructors
1070
- Feature record: CXX_FEATURE:1cxx_inline_namespaces
1071
- Feature record: CXX_FEATURE:1cxx_lambdas
1072
- Feature record: CXX_FEATURE:0cxx_lambda_init_captures
1073
- Feature record: CXX_FEATURE:1cxx_local_type_template_args
1074
- Feature record: CXX_FEATURE:1cxx_long_long_type
1075
- Feature record: CXX_FEATURE:1cxx_noexcept
1076
- Feature record: CXX_FEATURE:1cxx_nonstatic_member_init
1077
- Feature record: CXX_FEATURE:1cxx_nullptr
1078
- Feature record: CXX_FEATURE:1cxx_override
1079
- Feature record: CXX_FEATURE:1cxx_range_for
1080
- Feature record: CXX_FEATURE:1cxx_raw_string_literals
1081
- Feature record: CXX_FEATURE:1cxx_reference_qualified_functions
1082
- Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
1083
- Feature record: CXX_FEATURE:0cxx_return_type_deduction
1084
- Feature record: CXX_FEATURE:1cxx_right_angle_brackets
1085
- Feature record: CXX_FEATURE:1cxx_rvalue_references
1086
- Feature record: CXX_FEATURE:1cxx_sizeof_member
1087
- Feature record: CXX_FEATURE:1cxx_static_assert
1088
- Feature record: CXX_FEATURE:1cxx_strong_enums
1089
- Feature record: CXX_FEATURE:1cxx_template_template_parameters
1090
- Feature record: CXX_FEATURE:1cxx_thread_local
1091
- Feature record: CXX_FEATURE:1cxx_trailing_return_types
1092
- Feature record: CXX_FEATURE:1cxx_unicode_literals
1093
- Feature record: CXX_FEATURE:1cxx_uniform_initialization
1094
- Feature record: CXX_FEATURE:1cxx_unrestricted_unions
1095
- Feature record: CXX_FEATURE:1cxx_user_literals
1096
- Feature record: CXX_FEATURE:0cxx_variable_templates
1097
- Feature record: CXX_FEATURE:1cxx_variadic_macros
1098
- Feature record: CXX_FEATURE:1cxx_variadic_templates
1099
-
1100
-
1101
- Detecting CXX [-std=c++98] compiler features compiled with the following output:
1102
- Change Dir: /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
1103
-
1104
- Run Build Command:"/usr/bin/make" "cmTC_86b4b/fast"
1105
- /Library/Developer/CommandLineTools/usr/bin/make -f CMakeFiles/cmTC_86b4b.dir/build.make CMakeFiles/cmTC_86b4b.dir/build
1106
- Building CXX object CMakeFiles/cmTC_86b4b.dir/feature_tests.cxx.o
1107
- /Library/Developer/CommandLineTools/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_86b4b.dir/feature_tests.cxx.o -c /Users/gjtorikian/Developer/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
1108
- Linking CXX executable cmTC_86b4b
1109
- /usr/local/Cellar/cmake/3.9.4/bin/cmake -E cmake_link_script CMakeFiles/cmTC_86b4b.dir/link.txt --verbose=1
1110
- /Library/Developer/CommandLineTools/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_86b4b.dir/feature_tests.cxx.o -o cmTC_86b4b
1111
-
1112
-
1113
- Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
1114
- Feature record: CXX_FEATURE:0cxx_alias_templates
1115
- Feature record: CXX_FEATURE:0cxx_alignas
1116
- Feature record: CXX_FEATURE:0cxx_alignof
1117
- Feature record: CXX_FEATURE:0cxx_attributes
1118
- Feature record: CXX_FEATURE:0cxx_attribute_deprecated
1119
- Feature record: CXX_FEATURE:0cxx_auto_type
1120
- Feature record: CXX_FEATURE:0cxx_binary_literals
1121
- Feature record: CXX_FEATURE:0cxx_constexpr
1122
- Feature record: CXX_FEATURE:0cxx_contextual_conversions
1123
- Feature record: CXX_FEATURE:0cxx_decltype
1124
- Feature record: CXX_FEATURE:0cxx_decltype_auto
1125
- Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types
1126
- Feature record: CXX_FEATURE:0cxx_default_function_template_args
1127
- Feature record: CXX_FEATURE:0cxx_defaulted_functions
1128
- Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers
1129
- Feature record: CXX_FEATURE:0cxx_delegating_constructors
1130
- Feature record: CXX_FEATURE:0cxx_deleted_functions
1131
- Feature record: CXX_FEATURE:0cxx_digit_separators
1132
- Feature record: CXX_FEATURE:0cxx_enum_forward_declarations
1133
- Feature record: CXX_FEATURE:0cxx_explicit_conversions
1134
- Feature record: CXX_FEATURE:0cxx_extended_friend_declarations
1135
- Feature record: CXX_FEATURE:0cxx_extern_templates
1136
- Feature record: CXX_FEATURE:0cxx_final
1137
- Feature record: CXX_FEATURE:0cxx_func_identifier
1138
- Feature record: CXX_FEATURE:0cxx_generalized_initializers
1139
- Feature record: CXX_FEATURE:0cxx_generic_lambdas
1140
- Feature record: CXX_FEATURE:0cxx_inheriting_constructors
1141
- Feature record: CXX_FEATURE:0cxx_inline_namespaces
1142
- Feature record: CXX_FEATURE:0cxx_lambdas
1143
- Feature record: CXX_FEATURE:0cxx_lambda_init_captures
1144
- Feature record: CXX_FEATURE:0cxx_local_type_template_args
1145
- Feature record: CXX_FEATURE:0cxx_long_long_type
1146
- Feature record: CXX_FEATURE:0cxx_noexcept
1147
- Feature record: CXX_FEATURE:0cxx_nonstatic_member_init
1148
- Feature record: CXX_FEATURE:0cxx_nullptr
1149
- Feature record: CXX_FEATURE:0cxx_override
1150
- Feature record: CXX_FEATURE:0cxx_range_for
1151
- Feature record: CXX_FEATURE:0cxx_raw_string_literals
1152
- Feature record: CXX_FEATURE:0cxx_reference_qualified_functions
1153
- Feature record: CXX_FEATURE:0cxx_relaxed_constexpr
1154
- Feature record: CXX_FEATURE:0cxx_return_type_deduction
1155
- Feature record: CXX_FEATURE:0cxx_right_angle_brackets
1156
- Feature record: CXX_FEATURE:0cxx_rvalue_references
1157
- Feature record: CXX_FEATURE:0cxx_sizeof_member
1158
- Feature record: CXX_FEATURE:0cxx_static_assert
1159
- Feature record: CXX_FEATURE:0cxx_strong_enums
1160
- Feature record: CXX_FEATURE:1cxx_template_template_parameters
1161
- Feature record: CXX_FEATURE:0cxx_thread_local
1162
- Feature record: CXX_FEATURE:0cxx_trailing_return_types
1163
- Feature record: CXX_FEATURE:0cxx_unicode_literals
1164
- Feature record: CXX_FEATURE:0cxx_uniform_initialization
1165
- Feature record: CXX_FEATURE:0cxx_unrestricted_unions
1166
- Feature record: CXX_FEATURE:0cxx_user_literals
1167
- Feature record: CXX_FEATURE:0cxx_variable_templates
1168
- Feature record: CXX_FEATURE:0cxx_variadic_macros
1169
- Feature record: CXX_FEATURE:0cxx_variadic_templates