commonmarker 0.8.0 → 0.9.0

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 (38) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -1
  3. data/Rakefile +3 -3
  4. data/ext/commonmarker/cmark/build/CMakeCache.txt +8 -8
  5. data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CMakeCCompiler.cmake +0 -0
  6. data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CMakeCXXCompiler.cmake +0 -0
  7. data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CMakeDetermineCompilerABI_C.bin +0 -0
  8. data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CMakeDetermineCompilerABI_CXX.bin +0 -0
  9. data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CMakeSystem.cmake +0 -0
  10. data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CompilerIdC/CMakeCCompilerId.c +0 -0
  11. data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CompilerIdC/a.out +0 -0
  12. data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -0
  13. data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CompilerIdCXX/a.out +0 -0
  14. data/ext/commonmarker/cmark/build/CMakeFiles/CMakeError.log +6 -6
  15. data/ext/commonmarker/cmark/build/CMakeFiles/CMakeOutput.log +143 -143
  16. data/ext/commonmarker/cmark/build/CMakeFiles/Makefile.cmake +106 -106
  17. data/ext/commonmarker/cmark/build/CMakeFiles/Makefile2 +2 -2
  18. data/ext/commonmarker/cmark/build/Makefile +9 -9
  19. data/ext/commonmarker/cmark/build/api_test/CMakeFiles/api_test.dir/build.make +2 -2
  20. data/ext/commonmarker/cmark/build/api_test/Makefile +9 -9
  21. data/ext/commonmarker/cmark/build/man/Makefile +9 -9
  22. data/ext/commonmarker/cmark/build/src/CMakeFiles/cmark.dir/build.make +2 -2
  23. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark.dir/build.make +2 -2
  24. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/build.make +2 -2
  25. data/ext/commonmarker/cmark/build/src/Makefile +9 -9
  26. data/ext/commonmarker/cmark/build/src/libcmark.a +0 -0
  27. data/ext/commonmarker/cmark/build/testdir/Makefile +9 -9
  28. data/ext/commonmarker/commonmarker.c +579 -662
  29. data/ext/commonmarker/commonmarker.c.orig +1041 -0
  30. data/ext/commonmarker/commonmarker.h +1 -1
  31. data/lib/commonmarker.rb +1 -32
  32. data/lib/commonmarker/node.rb +45 -0
  33. data/lib/commonmarker/renderer.rb +2 -2
  34. data/lib/commonmarker/version.rb +1 -1
  35. data/test/test_basics.rb +1 -40
  36. data/test/test_node.rb +78 -0
  37. data/test/test_renderer.rb +13 -0
  38. metadata +17 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a3f03e36e2523ce4afe82603ccdf2cf2f6ee31d7
4
- data.tar.gz: 7d5cba8ced041cd04f0d4c73ccd262f9b82c9716
3
+ metadata.gz: 02188cf20d16faac4108425bc70f059b8d349daf
4
+ data.tar.gz: e1b6ef9157866e47865fec0a1571d7747bc3a0dd
5
5
  SHA512:
6
- metadata.gz: d02862da970c8af7712656534022ef0adf16b5c20467f7bebc08adbe66c665026b2769c0069f9bbc17f34077cb30ca7531db7ce1670bcd1bd25bccf64652f9a5
7
- data.tar.gz: 1a9510a64698b874cd2eff420830d114906aee4fef1613d160f3fb0bb080c2e1f2f0bfd0d67bfe28a596454b000cd2e53e4ff06991f183f89dd600f8a5a67e3e
6
+ metadata.gz: d200d89ffc6c0ff8daa4c12e59b145b34d143a9db6349de69ab03e57ff06978e11f715ded8bebffc54b9fa023293032a2332a4930244f35288598727684c6bd0
7
+ data.tar.gz: 7ac4f1494f2f2a6fdc3e8f61578ab1959509dee617a2a71dbf0987ecbfd74c06da57a3e17da85019c8ffc9a459247d62aaebffda75377c6e6bf44fd548bb196b
data/README.md CHANGED
@@ -52,6 +52,11 @@ The second argument is optional--[see below](#options) for more information.
52
52
 
53
53
  #### Example: walking the AST
54
54
 
55
+ You can use `walk` or `each` to iterate over nodes:
56
+
57
+ - `walk` will iterate on a node and recursively iterate on a node's children.
58
+ - `each` will iterate on a node and its children, but no further.
59
+
55
60
  ``` ruby
56
61
  require 'commonmarker'
57
62
 
@@ -68,7 +73,7 @@ end
68
73
  # Capitalize all regular text in headers
69
74
  doc.walk do |node|
70
75
  if node.type == :header
71
- node.walk do |subnode|
76
+ node.each do |subnode|
72
77
  if subnode.type == :text
73
78
  subnode.string_content = subnode.string_content.upcase
74
79
  end
data/Rakefile CHANGED
@@ -53,9 +53,9 @@ task :benchmark do |t|
53
53
  load 'test/benchmark.rb'
54
54
  end
55
55
 
56
- desc 'Match style of cmark'
57
- task :astyle do
58
- sh 'astyle --style=linux -t -p ext/commonmarker/commonmarker.{c,h}'
56
+ desc 'Match C style of cmark'
57
+ task :format do
58
+ sh 'clang-format -style llvm -i ext/commonmarker/*.c ext/commonmarker/*.h'
59
59
  end
60
60
 
61
61
  # Documentation
@@ -1,6 +1,6 @@
1
1
  # This is the CMakeCache file.
2
2
  # For build in directory: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build
3
- # It was generated by CMake: /usr/local/Cellar/cmake/3.5.1/bin/cmake
3
+ # It was generated by CMake: /usr/local/Cellar/cmake/3.5.2/bin/cmake
4
4
  # You can edit this file to change values found and used by cmake.
5
5
  # If you do not want to change any of the values, simply exit the editor.
6
6
  # If you do want to change a value, simply edit, save, and exit the editor.
@@ -274,15 +274,15 @@ CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
274
274
  //Minor version of cmake used to create the current loaded cache
275
275
  CMAKE_CACHE_MINOR_VERSION:INTERNAL=5
276
276
  //Patch version of cmake used to create the current loaded cache
277
- CMAKE_CACHE_PATCH_VERSION:INTERNAL=1
277
+ CMAKE_CACHE_PATCH_VERSION:INTERNAL=2
278
278
  //ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
279
279
  CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
280
280
  //Path to CMake executable.
281
- CMAKE_COMMAND:INTERNAL=/usr/local/Cellar/cmake/3.5.1/bin/cmake
281
+ CMAKE_COMMAND:INTERNAL=/usr/local/Cellar/cmake/3.5.2/bin/cmake
282
282
  //Path to cpack program executable.
283
- CMAKE_CPACK_COMMAND:INTERNAL=/usr/local/Cellar/cmake/3.5.1/bin/cpack
283
+ CMAKE_CPACK_COMMAND:INTERNAL=/usr/local/Cellar/cmake/3.5.2/bin/cpack
284
284
  //Path to ctest program executable.
285
- CMAKE_CTEST_COMMAND:INTERNAL=/usr/local/Cellar/cmake/3.5.1/bin/ctest
285
+ CMAKE_CTEST_COMMAND:INTERNAL=/usr/local/Cellar/cmake/3.5.2/bin/ctest
286
286
  //ADVANCED property for variable: CMAKE_CXX_COMPILER
287
287
  CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
288
288
  //ADVANCED property for variable: CMAKE_CXX_FLAGS
@@ -312,7 +312,7 @@ CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
312
312
  //ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
313
313
  CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
314
314
  //Path to cache edit program executable.
315
- CMAKE_EDIT_COMMAND:INTERNAL=/usr/local/Cellar/cmake/3.5.1/bin/ccmake
315
+ CMAKE_EDIT_COMMAND:INTERNAL=/usr/local/Cellar/cmake/3.5.2/bin/ccmake
316
316
  //Executable file format
317
317
  CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown
318
318
  //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
@@ -397,7 +397,7 @@ CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
397
397
  //ADVANCED property for variable: CMAKE_RANLIB
398
398
  CMAKE_RANLIB-ADVANCED:INTERNAL=1
399
399
  //Path to CMake installation.
400
- CMAKE_ROOT:INTERNAL=/usr/local/Cellar/cmake/3.5.1/share/cmake
400
+ CMAKE_ROOT:INTERNAL=/usr/local/Cellar/cmake/3.5.2/share/cmake
401
401
  //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
402
402
  CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
403
403
  //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_ASAN
@@ -439,7 +439,7 @@ COMPILER_HAS_HIDDEN_INLINE_VISIBILITY:INTERNAL=1
439
439
  //Test COMPILER_HAS_HIDDEN_VISIBILITY
440
440
  COMPILER_HAS_HIDDEN_VISIBILITY:INTERNAL=1
441
441
  //Details about finding PythonInterp
442
- FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[/usr/local/bin/python3][v3.5(3)]
442
+ FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[/usr/local/bin/python3][v3.5.1(3)]
443
443
  //Test HAVE_FLAG_ADDRESS_SANITIZER
444
444
  HAVE_FLAG_ADDRESS_SANITIZER:INTERNAL=
445
445
  //Test HAVE_FLAG_SANITIZE_ADDRESS
@@ -1,14 +1,14 @@
1
1
  Performing C SOURCE FILE Test HAVE_FLAG_ADDRESS_SANITIZER failed with the following output:
2
2
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
3
3
 
4
- Run Build Command:"/usr/bin/make" "cmTC_6d58e/fast"
5
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_6d58e.dir/build.make CMakeFiles/cmTC_6d58e.dir/build
6
- Building C object CMakeFiles/cmTC_6d58e.dir/src.c.o
7
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -DHAVE_FLAG_ADDRESS_SANITIZER -Werror -faddress-sanitizer -faddress-sanitizer -o CMakeFiles/cmTC_6d58e.dir/src.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
4
+ Run Build Command:"/usr/bin/make" "cmTC_aeba6/fast"
5
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_aeba6.dir/build.make CMakeFiles/cmTC_aeba6.dir/build
6
+ Building C object CMakeFiles/cmTC_aeba6.dir/src.c.o
7
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -DHAVE_FLAG_ADDRESS_SANITIZER -Werror -faddress-sanitizer -faddress-sanitizer -o CMakeFiles/cmTC_aeba6.dir/src.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
8
8
  clang: error: unknown argument: '-faddress-sanitizer'
9
9
  clang: error: unknown argument: '-faddress-sanitizer'
10
- make[1]: *** [CMakeFiles/cmTC_6d58e.dir/src.c.o] Error 1
11
- make: *** [cmTC_6d58e/fast] Error 2
10
+ make[1]: *** [CMakeFiles/cmTC_aeba6.dir/src.c.o] Error 1
11
+ make: *** [cmTC_aeba6/fast] Error 2
12
12
 
13
13
  Source file was:
14
14
  int main(void) { return 0; }
@@ -10,7 +10,7 @@ The output was:
10
10
 
11
11
  Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
12
12
 
13
- The C compiler identification is AppleClang, found in "/Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/3.5.1/CompilerIdC/a.out"
13
+ The C compiler identification is AppleClang, found in "/Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/3.5.2/CompilerIdC/a.out"
14
14
 
15
15
  Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
16
16
  Compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
@@ -23,35 +23,35 @@ The output was:
23
23
 
24
24
  Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
25
25
 
26
- The CXX compiler identification is AppleClang, found in "/Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/3.5.1/CompilerIdCXX/a.out"
26
+ The CXX compiler identification is AppleClang, found in "/Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/3.5.2/CompilerIdCXX/a.out"
27
27
 
28
28
  Determining if the C compiler works passed with the following output:
29
29
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
30
30
 
31
- Run Build Command:"/usr/bin/make" "cmTC_9b019/fast"
32
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_9b019.dir/build.make CMakeFiles/cmTC_9b019.dir/build
33
- Building C object CMakeFiles/cmTC_9b019.dir/testCCompiler.c.o
34
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -o CMakeFiles/cmTC_9b019.dir/testCCompiler.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/testCCompiler.c
35
- Linking C executable cmTC_9b019
36
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9b019.dir/link.txt --verbose=1
37
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_9b019.dir/testCCompiler.c.o -o cmTC_9b019
31
+ Run Build Command:"/usr/bin/make" "cmTC_59707/fast"
32
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_59707.dir/build.make CMakeFiles/cmTC_59707.dir/build
33
+ Building C object CMakeFiles/cmTC_59707.dir/testCCompiler.c.o
34
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -o CMakeFiles/cmTC_59707.dir/testCCompiler.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/testCCompiler.c
35
+ Linking C executable cmTC_59707
36
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_59707.dir/link.txt --verbose=1
37
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_59707.dir/testCCompiler.c.o -o cmTC_59707
38
38
 
39
39
 
40
40
  Detecting C compiler ABI info compiled with the following output:
41
41
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
42
42
 
43
- Run Build Command:"/usr/bin/make" "cmTC_21f06/fast"
44
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_21f06.dir/build.make CMakeFiles/cmTC_21f06.dir/build
45
- Building C object CMakeFiles/cmTC_21f06.dir/CMakeCCompilerABI.c.o
46
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -o CMakeFiles/cmTC_21f06.dir/CMakeCCompilerABI.c.o -c /usr/local/Cellar/cmake/3.5.1/share/cmake/Modules/CMakeCCompilerABI.c
47
- Linking C executable cmTC_21f06
48
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_21f06.dir/link.txt --verbose=1
49
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_21f06.dir/CMakeCCompilerABI.c.o -o cmTC_21f06
43
+ Run Build Command:"/usr/bin/make" "cmTC_79c18/fast"
44
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_79c18.dir/build.make CMakeFiles/cmTC_79c18.dir/build
45
+ Building C object CMakeFiles/cmTC_79c18.dir/CMakeCCompilerABI.c.o
46
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -o CMakeFiles/cmTC_79c18.dir/CMakeCCompilerABI.c.o -c /usr/local/Cellar/cmake/3.5.2/share/cmake/Modules/CMakeCCompilerABI.c
47
+ Linking C executable cmTC_79c18
48
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_79c18.dir/link.txt --verbose=1
49
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_79c18.dir/CMakeCCompilerABI.c.o -o cmTC_79c18
50
50
  Apple LLVM version 7.3.0 (clang-703.0.29)
51
51
  Target: x86_64-apple-darwin15.4.0
52
52
  Thread model: posix
53
53
  InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
54
- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.11.0 -o cmTC_21f06 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_21f06.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a
54
+ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.11.0 -o cmTC_79c18 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_79c18.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a
55
55
  @(#)PROGRAM:ld PROJECT:ld64-264.3.101
56
56
  configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em (tvOS)
57
57
  Library search paths:
@@ -66,18 +66,18 @@ Parsed C implicit link information from above output:
66
66
  link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)]
67
67
  ignore line: [Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp]
68
68
  ignore line: []
69
- ignore line: [Run Build Command:"/usr/bin/make" "cmTC_21f06/fast"]
70
- ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_21f06.dir/build.make CMakeFiles/cmTC_21f06.dir/build]
71
- ignore line: [Building C object CMakeFiles/cmTC_21f06.dir/CMakeCCompilerABI.c.o]
72
- ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -o CMakeFiles/cmTC_21f06.dir/CMakeCCompilerABI.c.o -c /usr/local/Cellar/cmake/3.5.1/share/cmake/Modules/CMakeCCompilerABI.c]
73
- ignore line: [Linking C executable cmTC_21f06]
74
- ignore line: [/usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_21f06.dir/link.txt --verbose=1]
75
- ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_21f06.dir/CMakeCCompilerABI.c.o -o cmTC_21f06 ]
69
+ ignore line: [Run Build Command:"/usr/bin/make" "cmTC_79c18/fast"]
70
+ ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_79c18.dir/build.make CMakeFiles/cmTC_79c18.dir/build]
71
+ ignore line: [Building C object CMakeFiles/cmTC_79c18.dir/CMakeCCompilerABI.c.o]
72
+ ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -o CMakeFiles/cmTC_79c18.dir/CMakeCCompilerABI.c.o -c /usr/local/Cellar/cmake/3.5.2/share/cmake/Modules/CMakeCCompilerABI.c]
73
+ ignore line: [Linking C executable cmTC_79c18]
74
+ ignore line: [/usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_79c18.dir/link.txt --verbose=1]
75
+ ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_79c18.dir/CMakeCCompilerABI.c.o -o cmTC_79c18 ]
76
76
  ignore line: [Apple LLVM version 7.3.0 (clang-703.0.29)]
77
77
  ignore line: [Target: x86_64-apple-darwin15.4.0]
78
78
  ignore line: [Thread model: posix]
79
79
  ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
80
- link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.11.0 -o cmTC_21f06 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_21f06.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a]
80
+ link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.11.0 -o cmTC_79c18 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_79c18.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a]
81
81
  arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore
82
82
  arg [-demangle] ==> ignore
83
83
  arg [-dynamic] ==> ignore
@@ -86,11 +86,11 @@ Parsed C implicit link information from above output:
86
86
  arg [-macosx_version_min] ==> ignore
87
87
  arg [10.11.0] ==> ignore
88
88
  arg [-o] ==> ignore
89
- arg [cmTC_21f06] ==> ignore
89
+ arg [cmTC_79c18] ==> ignore
90
90
  arg [-search_paths_first] ==> ignore
91
91
  arg [-headerpad_max_install_names] ==> ignore
92
92
  arg [-v] ==> ignore
93
- arg [CMakeFiles/cmTC_21f06.dir/CMakeCCompilerABI.c.o] ==> ignore
93
+ arg [CMakeFiles/cmTC_79c18.dir/CMakeCCompilerABI.c.o] ==> ignore
94
94
  arg [-lSystem] ==> lib [System]
95
95
  arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a]
96
96
  Library search paths: [;/usr/lib;/usr/local/lib]
@@ -111,13 +111,13 @@ Parsed C implicit link information from above output:
111
111
  Detecting C [-std=c11] compiler features compiled with the following output:
112
112
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
113
113
 
114
- Run Build Command:"/usr/bin/make" "cmTC_afcee/fast"
115
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_afcee.dir/build.make CMakeFiles/cmTC_afcee.dir/build
116
- Building C object CMakeFiles/cmTC_afcee.dir/feature_tests.c.o
117
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -std=c11 -o CMakeFiles/cmTC_afcee.dir/feature_tests.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
118
- Linking C executable cmTC_afcee
119
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_afcee.dir/link.txt --verbose=1
120
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_afcee.dir/feature_tests.c.o -o cmTC_afcee
114
+ Run Build Command:"/usr/bin/make" "cmTC_4ab7e/fast"
115
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_4ab7e.dir/build.make CMakeFiles/cmTC_4ab7e.dir/build
116
+ Building C object CMakeFiles/cmTC_4ab7e.dir/feature_tests.c.o
117
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -std=c11 -o CMakeFiles/cmTC_4ab7e.dir/feature_tests.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
118
+ Linking C executable cmTC_4ab7e
119
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4ab7e.dir/link.txt --verbose=1
120
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_4ab7e.dir/feature_tests.c.o -o cmTC_4ab7e
121
121
 
122
122
 
123
123
  Feature record: C_FEATURE:1c_function_prototypes
@@ -129,13 +129,13 @@ Linking C executable cmTC_afcee
129
129
  Detecting C [-std=c99] compiler features compiled with the following output:
130
130
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
131
131
 
132
- Run Build Command:"/usr/bin/make" "cmTC_95aa1/fast"
133
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_95aa1.dir/build.make CMakeFiles/cmTC_95aa1.dir/build
134
- Building C object CMakeFiles/cmTC_95aa1.dir/feature_tests.c.o
135
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -std=c99 -o CMakeFiles/cmTC_95aa1.dir/feature_tests.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
136
- Linking C executable cmTC_95aa1
137
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_95aa1.dir/link.txt --verbose=1
138
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_95aa1.dir/feature_tests.c.o -o cmTC_95aa1
132
+ Run Build Command:"/usr/bin/make" "cmTC_63c35/fast"
133
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_63c35.dir/build.make CMakeFiles/cmTC_63c35.dir/build
134
+ Building C object CMakeFiles/cmTC_63c35.dir/feature_tests.c.o
135
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -std=c99 -o CMakeFiles/cmTC_63c35.dir/feature_tests.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
136
+ Linking C executable cmTC_63c35
137
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_63c35.dir/link.txt --verbose=1
138
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_63c35.dir/feature_tests.c.o -o cmTC_63c35
139
139
 
140
140
 
141
141
  Feature record: C_FEATURE:1c_function_prototypes
@@ -147,13 +147,13 @@ Linking C executable cmTC_95aa1
147
147
  Detecting C [-std=c90] compiler features compiled with the following output:
148
148
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
149
149
 
150
- Run Build Command:"/usr/bin/make" "cmTC_d34ba/fast"
151
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_d34ba.dir/build.make CMakeFiles/cmTC_d34ba.dir/build
152
- Building C object CMakeFiles/cmTC_d34ba.dir/feature_tests.c.o
153
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -std=c90 -o CMakeFiles/cmTC_d34ba.dir/feature_tests.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
154
- Linking C executable cmTC_d34ba
155
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d34ba.dir/link.txt --verbose=1
156
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_d34ba.dir/feature_tests.c.o -o cmTC_d34ba
150
+ Run Build Command:"/usr/bin/make" "cmTC_6df2c/fast"
151
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_6df2c.dir/build.make CMakeFiles/cmTC_6df2c.dir/build
152
+ Building C object CMakeFiles/cmTC_6df2c.dir/feature_tests.c.o
153
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -std=c90 -o CMakeFiles/cmTC_6df2c.dir/feature_tests.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
154
+ Linking C executable cmTC_6df2c
155
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6df2c.dir/link.txt --verbose=1
156
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_6df2c.dir/feature_tests.c.o -o cmTC_6df2c
157
157
 
158
158
 
159
159
  Feature record: C_FEATURE:1c_function_prototypes
@@ -163,30 +163,30 @@ Linking C executable cmTC_d34ba
163
163
  Determining if the CXX compiler works passed with the following output:
164
164
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
165
165
 
166
- Run Build Command:"/usr/bin/make" "cmTC_eaee6/fast"
167
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_eaee6.dir/build.make CMakeFiles/cmTC_eaee6.dir/build
168
- Building CXX object CMakeFiles/cmTC_eaee6.dir/testCXXCompiler.cxx.o
169
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -o CMakeFiles/cmTC_eaee6.dir/testCXXCompiler.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
170
- Linking CXX executable cmTC_eaee6
171
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_eaee6.dir/link.txt --verbose=1
172
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_eaee6.dir/testCXXCompiler.cxx.o -o cmTC_eaee6
166
+ Run Build Command:"/usr/bin/make" "cmTC_c8e16/fast"
167
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_c8e16.dir/build.make CMakeFiles/cmTC_c8e16.dir/build
168
+ Building CXX object CMakeFiles/cmTC_c8e16.dir/testCXXCompiler.cxx.o
169
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -o CMakeFiles/cmTC_c8e16.dir/testCXXCompiler.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
170
+ Linking CXX executable cmTC_c8e16
171
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c8e16.dir/link.txt --verbose=1
172
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_c8e16.dir/testCXXCompiler.cxx.o -o cmTC_c8e16
173
173
 
174
174
 
175
175
  Detecting CXX compiler ABI info compiled with the following output:
176
176
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
177
177
 
178
- Run Build Command:"/usr/bin/make" "cmTC_81350/fast"
179
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_81350.dir/build.make CMakeFiles/cmTC_81350.dir/build
180
- Building CXX object CMakeFiles/cmTC_81350.dir/CMakeCXXCompilerABI.cpp.o
181
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -o CMakeFiles/cmTC_81350.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/3.5.1/share/cmake/Modules/CMakeCXXCompilerABI.cpp
182
- Linking CXX executable cmTC_81350
183
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_81350.dir/link.txt --verbose=1
184
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_81350.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_81350
178
+ Run Build Command:"/usr/bin/make" "cmTC_cda40/fast"
179
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_cda40.dir/build.make CMakeFiles/cmTC_cda40.dir/build
180
+ Building CXX object CMakeFiles/cmTC_cda40.dir/CMakeCXXCompilerABI.cpp.o
181
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -o CMakeFiles/cmTC_cda40.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/3.5.2/share/cmake/Modules/CMakeCXXCompilerABI.cpp
182
+ Linking CXX executable cmTC_cda40
183
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cda40.dir/link.txt --verbose=1
184
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_cda40.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_cda40
185
185
  Apple LLVM version 7.3.0 (clang-703.0.29)
186
186
  Target: x86_64-apple-darwin15.4.0
187
187
  Thread model: posix
188
188
  InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
189
- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.11.0 -o cmTC_81350 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_81350.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a
189
+ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.11.0 -o cmTC_cda40 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_cda40.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a
190
190
  @(#)PROGRAM:ld PROJECT:ld64-264.3.101
191
191
  configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em (tvOS)
192
192
  Library search paths:
@@ -201,18 +201,18 @@ Parsed CXX implicit link information from above output:
201
201
  link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)]
202
202
  ignore line: [Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp]
203
203
  ignore line: []
204
- ignore line: [Run Build Command:"/usr/bin/make" "cmTC_81350/fast"]
205
- ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_81350.dir/build.make CMakeFiles/cmTC_81350.dir/build]
206
- ignore line: [Building CXX object CMakeFiles/cmTC_81350.dir/CMakeCXXCompilerABI.cpp.o]
207
- ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -o CMakeFiles/cmTC_81350.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/3.5.1/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
208
- ignore line: [Linking CXX executable cmTC_81350]
209
- ignore line: [/usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_81350.dir/link.txt --verbose=1]
210
- ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_81350.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_81350 ]
204
+ ignore line: [Run Build Command:"/usr/bin/make" "cmTC_cda40/fast"]
205
+ ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_cda40.dir/build.make CMakeFiles/cmTC_cda40.dir/build]
206
+ ignore line: [Building CXX object CMakeFiles/cmTC_cda40.dir/CMakeCXXCompilerABI.cpp.o]
207
+ ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -o CMakeFiles/cmTC_cda40.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/3.5.2/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
208
+ ignore line: [Linking CXX executable cmTC_cda40]
209
+ ignore line: [/usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cda40.dir/link.txt --verbose=1]
210
+ ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_cda40.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_cda40 ]
211
211
  ignore line: [Apple LLVM version 7.3.0 (clang-703.0.29)]
212
212
  ignore line: [Target: x86_64-apple-darwin15.4.0]
213
213
  ignore line: [Thread model: posix]
214
214
  ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
215
- link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.11.0 -o cmTC_81350 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_81350.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a]
215
+ link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.11.0 -o cmTC_cda40 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_cda40.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a]
216
216
  arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore
217
217
  arg [-demangle] ==> ignore
218
218
  arg [-dynamic] ==> ignore
@@ -221,11 +221,11 @@ Parsed CXX implicit link information from above output:
221
221
  arg [-macosx_version_min] ==> ignore
222
222
  arg [10.11.0] ==> ignore
223
223
  arg [-o] ==> ignore
224
- arg [cmTC_81350] ==> ignore
224
+ arg [cmTC_cda40] ==> ignore
225
225
  arg [-search_paths_first] ==> ignore
226
226
  arg [-headerpad_max_install_names] ==> ignore
227
227
  arg [-v] ==> ignore
228
- arg [CMakeFiles/cmTC_81350.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
228
+ arg [CMakeFiles/cmTC_cda40.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
229
229
  arg [-lc++] ==> lib [c++]
230
230
  arg [-lSystem] ==> lib [System]
231
231
  arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.3.0/lib/darwin/libclang_rt.osx.a]
@@ -247,13 +247,13 @@ Parsed CXX implicit link information from above output:
247
247
  Detecting CXX [-std=c++14] compiler features compiled with the following output:
248
248
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
249
249
 
250
- Run Build Command:"/usr/bin/make" "cmTC_bfa38/fast"
251
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_bfa38.dir/build.make CMakeFiles/cmTC_bfa38.dir/build
252
- Building CXX object CMakeFiles/cmTC_bfa38.dir/feature_tests.cxx.o
253
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_bfa38.dir/feature_tests.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
254
- Linking CXX executable cmTC_bfa38
255
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bfa38.dir/link.txt --verbose=1
256
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_bfa38.dir/feature_tests.cxx.o -o cmTC_bfa38
250
+ Run Build Command:"/usr/bin/make" "cmTC_3f546/fast"
251
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_3f546.dir/build.make CMakeFiles/cmTC_3f546.dir/build
252
+ Building CXX object CMakeFiles/cmTC_3f546.dir/feature_tests.cxx.o
253
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_3f546.dir/feature_tests.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
254
+ Linking CXX executable cmTC_3f546
255
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3f546.dir/link.txt --verbose=1
256
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_3f546.dir/feature_tests.cxx.o -o cmTC_3f546
257
257
 
258
258
 
259
259
  Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
@@ -318,13 +318,13 @@ Linking CXX executable cmTC_bfa38
318
318
  Detecting CXX [-std=c++11] compiler features compiled with the following output:
319
319
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
320
320
 
321
- Run Build Command:"/usr/bin/make" "cmTC_1c748/fast"
322
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_1c748.dir/build.make CMakeFiles/cmTC_1c748.dir/build
323
- Building CXX object CMakeFiles/cmTC_1c748.dir/feature_tests.cxx.o
324
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_1c748.dir/feature_tests.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
325
- Linking CXX executable cmTC_1c748
326
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1c748.dir/link.txt --verbose=1
327
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_1c748.dir/feature_tests.cxx.o -o cmTC_1c748
321
+ Run Build Command:"/usr/bin/make" "cmTC_78f56/fast"
322
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_78f56.dir/build.make CMakeFiles/cmTC_78f56.dir/build
323
+ Building CXX object CMakeFiles/cmTC_78f56.dir/feature_tests.cxx.o
324
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_78f56.dir/feature_tests.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
325
+ Linking CXX executable cmTC_78f56
326
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_78f56.dir/link.txt --verbose=1
327
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_78f56.dir/feature_tests.cxx.o -o cmTC_78f56
328
328
 
329
329
 
330
330
  Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
@@ -389,13 +389,13 @@ Linking CXX executable cmTC_1c748
389
389
  Detecting CXX [-std=c++98] compiler features compiled with the following output:
390
390
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
391
391
 
392
- Run Build Command:"/usr/bin/make" "cmTC_79a4b/fast"
393
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_79a4b.dir/build.make CMakeFiles/cmTC_79a4b.dir/build
394
- Building CXX object CMakeFiles/cmTC_79a4b.dir/feature_tests.cxx.o
395
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_79a4b.dir/feature_tests.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
396
- Linking CXX executable cmTC_79a4b
397
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_79a4b.dir/link.txt --verbose=1
398
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_79a4b.dir/feature_tests.cxx.o -o cmTC_79a4b
392
+ Run Build Command:"/usr/bin/make" "cmTC_380c0/fast"
393
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_380c0.dir/build.make CMakeFiles/cmTC_380c0.dir/build
394
+ Building CXX object CMakeFiles/cmTC_380c0.dir/feature_tests.cxx.o
395
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_380c0.dir/feature_tests.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
396
+ Linking CXX executable cmTC_380c0
397
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_380c0.dir/link.txt --verbose=1
398
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_380c0.dir/feature_tests.cxx.o -o cmTC_380c0
399
399
 
400
400
 
401
401
  Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
@@ -458,49 +458,49 @@ Linking CXX executable cmTC_79a4b
458
458
  Performing C SOURCE FILE Test HAVE_FLAG_SANITIZE_ADDRESS succeeded with the following output:
459
459
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
460
460
 
461
- Run Build Command:"/usr/bin/make" "cmTC_2c03e/fast"
462
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_2c03e.dir/build.make CMakeFiles/cmTC_2c03e.dir/build
463
- Building C object CMakeFiles/cmTC_2c03e.dir/src.c.o
464
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -DHAVE_FLAG_SANITIZE_ADDRESS -Werror -fsanitize=address -fsanitize=address -o CMakeFiles/cmTC_2c03e.dir/src.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
465
- Linking C executable cmTC_2c03e
466
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2c03e.dir/link.txt --verbose=1
467
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -DHAVE_FLAG_SANITIZE_ADDRESS -Werror -fsanitize=address -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_2c03e.dir/src.c.o -o cmTC_2c03e
461
+ Run Build Command:"/usr/bin/make" "cmTC_7965d/fast"
462
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_7965d.dir/build.make CMakeFiles/cmTC_7965d.dir/build
463
+ Building C object CMakeFiles/cmTC_7965d.dir/src.c.o
464
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -DHAVE_FLAG_SANITIZE_ADDRESS -Werror -fsanitize=address -fsanitize=address -o CMakeFiles/cmTC_7965d.dir/src.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
465
+ Linking C executable cmTC_7965d
466
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7965d.dir/link.txt --verbose=1
467
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -DHAVE_FLAG_SANITIZE_ADDRESS -Werror -fsanitize=address -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_7965d.dir/src.c.o -o cmTC_7965d
468
468
 
469
469
  Source file was:
470
470
  int main(void) { return 0; }
471
471
  Performing C++ SOURCE FILE Test COMPILER_HAS_HIDDEN_VISIBILITY succeeded with the following output:
472
472
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
473
473
 
474
- Run Build Command:"/usr/bin/make" "cmTC_db70a/fast"
475
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_db70a.dir/build.make CMakeFiles/cmTC_db70a.dir/build
476
- Building CXX object CMakeFiles/cmTC_db70a.dir/src.cxx.o
477
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_VISIBILITY -fvisibility=hidden -o CMakeFiles/cmTC_db70a.dir/src.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx
478
- Linking CXX executable cmTC_db70a
479
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_db70a.dir/link.txt --verbose=1
480
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_VISIBILITY -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_db70a.dir/src.cxx.o -o cmTC_db70a
474
+ Run Build Command:"/usr/bin/make" "cmTC_82c74/fast"
475
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_82c74.dir/build.make CMakeFiles/cmTC_82c74.dir/build
476
+ Building CXX object CMakeFiles/cmTC_82c74.dir/src.cxx.o
477
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_VISIBILITY -fvisibility=hidden -o CMakeFiles/cmTC_82c74.dir/src.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx
478
+ Linking CXX executable cmTC_82c74
479
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_82c74.dir/link.txt --verbose=1
480
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_VISIBILITY -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_82c74.dir/src.cxx.o -o cmTC_82c74
481
481
 
482
482
  Source file was:
483
483
  int main() { return 0; }
484
484
  Performing C++ SOURCE FILE Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY succeeded with the following output:
485
485
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
486
486
 
487
- Run Build Command:"/usr/bin/make" "cmTC_fd023/fast"
488
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_fd023.dir/build.make CMakeFiles/cmTC_fd023.dir/build
489
- Building CXX object CMakeFiles/cmTC_fd023.dir/src.cxx.o
490
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_INLINE_VISIBILITY -fvisibility-inlines-hidden -o CMakeFiles/cmTC_fd023.dir/src.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx
491
- Linking CXX executable cmTC_fd023
492
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fd023.dir/link.txt --verbose=1
493
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_INLINE_VISIBILITY -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_fd023.dir/src.cxx.o -o cmTC_fd023
487
+ Run Build Command:"/usr/bin/make" "cmTC_02a20/fast"
488
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_02a20.dir/build.make CMakeFiles/cmTC_02a20.dir/build
489
+ Building CXX object CMakeFiles/cmTC_02a20.dir/src.cxx.o
490
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_INLINE_VISIBILITY -fvisibility-inlines-hidden -o CMakeFiles/cmTC_02a20.dir/src.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx
491
+ Linking CXX executable cmTC_02a20
492
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_02a20.dir/link.txt --verbose=1
493
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_INLINE_VISIBILITY -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_02a20.dir/src.cxx.o -o cmTC_02a20
494
494
 
495
495
  Source file was:
496
496
  int main() { return 0; }
497
497
  Performing C++ SOURCE FILE Test COMPILER_HAS_DEPRECATED_ATTR succeeded with the following output:
498
498
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
499
499
 
500
- Run Build Command:"/usr/bin/make" "cmTC_cceec/fast"
501
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_cceec.dir/build.make CMakeFiles/cmTC_cceec.dir/build
502
- Building CXX object CMakeFiles/cmTC_cceec.dir/src.cxx.o
503
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_DEPRECATED_ATTR -o CMakeFiles/cmTC_cceec.dir/src.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx
500
+ Run Build Command:"/usr/bin/make" "cmTC_9a116/fast"
501
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_9a116.dir/build.make CMakeFiles/cmTC_9a116.dir/build
502
+ Building CXX object CMakeFiles/cmTC_9a116.dir/src.cxx.o
503
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_DEPRECATED_ATTR -o CMakeFiles/cmTC_9a116.dir/src.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx
504
504
  /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx:2:25: warning: 'somefunc' is deprecated [-Wdeprecated-declarations]
505
505
  int main() { return somefunc();}
506
506
  ^
@@ -508,9 +508,9 @@ Building CXX object CMakeFiles/cmTC_cceec.dir/src.cxx.o
508
508
  __attribute__((__deprecated__)) int somefunc() { return 0; }
509
509
  ^
510
510
  1 warning generated.
511
- Linking CXX executable cmTC_cceec
512
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_cceec.dir/link.txt --verbose=1
513
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_DEPRECATED_ATTR -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_cceec.dir/src.cxx.o -o cmTC_cceec
511
+ Linking CXX executable cmTC_9a116
512
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9a116.dir/link.txt --verbose=1
513
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_DEPRECATED_ATTR -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_9a116.dir/src.cxx.o -o cmTC_9a116
514
514
 
515
515
  Source file was:
516
516
  __attribute__((__deprecated__)) int somefunc() { return 0; }
@@ -518,42 +518,42 @@ __attribute__((__deprecated__)) int somefunc() { return 0; }
518
518
  Determining if the include file stdbool.h exists passed with the following output:
519
519
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
520
520
 
521
- Run Build Command:"/usr/bin/make" "cmTC_c404c/fast"
522
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_c404c.dir/build.make CMakeFiles/cmTC_c404c.dir/build
523
- Building C object CMakeFiles/cmTC_c404c.dir/CheckIncludeFile.c.o
524
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -o CMakeFiles/cmTC_c404c.dir/CheckIncludeFile.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
525
- Linking C executable cmTC_c404c
526
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c404c.dir/link.txt --verbose=1
527
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_c404c.dir/CheckIncludeFile.c.o -o cmTC_c404c
521
+ Run Build Command:"/usr/bin/make" "cmTC_a5aa6/fast"
522
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_a5aa6.dir/build.make CMakeFiles/cmTC_a5aa6.dir/build
523
+ Building C object CMakeFiles/cmTC_a5aa6.dir/CheckIncludeFile.c.o
524
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -o CMakeFiles/cmTC_a5aa6.dir/CheckIncludeFile.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
525
+ Linking C executable cmTC_a5aa6
526
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a5aa6.dir/link.txt --verbose=1
527
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_a5aa6.dir/CheckIncludeFile.c.o -o cmTC_a5aa6
528
528
 
529
529
 
530
530
  Performing C SOURCE FILE Test HAVE___BUILTIN_EXPECT succeeded with the following output:
531
531
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
532
532
 
533
- Run Build Command:"/usr/bin/make" "cmTC_dc8c9/fast"
534
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_dc8c9.dir/build.make CMakeFiles/cmTC_dc8c9.dir/build
535
- Building C object CMakeFiles/cmTC_dc8c9.dir/src.c.o
536
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -DHAVE___BUILTIN_EXPECT -o CMakeFiles/cmTC_dc8c9.dir/src.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
533
+ Run Build Command:"/usr/bin/make" "cmTC_52090/fast"
534
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_52090.dir/build.make CMakeFiles/cmTC_52090.dir/build
535
+ Building C object CMakeFiles/cmTC_52090.dir/src.c.o
536
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -DHAVE___BUILTIN_EXPECT -o CMakeFiles/cmTC_52090.dir/src.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
537
537
  /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c:1:14: warning: ignoring return value of function declared with const attribute [-Wunused-value]
538
538
  int main() { __builtin_expect(0,0); return 0; }
539
539
  ^~~~~~~~~~~~~~~~ ~~~
540
540
  1 warning generated.
541
- Linking C executable cmTC_dc8c9
542
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_dc8c9.dir/link.txt --verbose=1
543
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -DHAVE___BUILTIN_EXPECT -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_dc8c9.dir/src.c.o -o cmTC_dc8c9
541
+ Linking C executable cmTC_52090
542
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_52090.dir/link.txt --verbose=1
543
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -DHAVE___BUILTIN_EXPECT -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_52090.dir/src.c.o -o cmTC_52090
544
544
 
545
545
  Source file was:
546
546
  int main() { __builtin_expect(0,0); return 0; }
547
547
  Performing C SOURCE FILE Test HAVE___ATTRIBUTE__ succeeded with the following output:
548
548
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
549
549
 
550
- Run Build Command:"/usr/bin/make" "cmTC_da77a/fast"
551
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_da77a.dir/build.make CMakeFiles/cmTC_da77a.dir/build
552
- Building C object CMakeFiles/cmTC_da77a.dir/src.c.o
553
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -DHAVE___ATTRIBUTE__ -o CMakeFiles/cmTC_da77a.dir/src.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
554
- Linking C executable cmTC_da77a
555
- /usr/local/Cellar/cmake/3.5.1/bin/cmake -E cmake_link_script CMakeFiles/cmTC_da77a.dir/link.txt --verbose=1
556
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -DHAVE___ATTRIBUTE__ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_da77a.dir/src.c.o -o cmTC_da77a
550
+ Run Build Command:"/usr/bin/make" "cmTC_8d66d/fast"
551
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_8d66d.dir/build.make CMakeFiles/cmTC_8d66d.dir/build
552
+ Building C object CMakeFiles/cmTC_8d66d.dir/src.c.o
553
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -DHAVE___ATTRIBUTE__ -o CMakeFiles/cmTC_8d66d.dir/src.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
554
+ Linking C executable cmTC_8d66d
555
+ /usr/local/Cellar/cmake/3.5.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8d66d.dir/link.txt --verbose=1
556
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -DHAVE___ATTRIBUTE__ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_8d66d.dir/src.c.o -o cmTC_8d66d
557
557
 
558
558
  Source file was:
559
559