commonmarker 0.6.0 → 0.7.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 (86) hide show
  1. checksums.yaml +4 -4
  2. data/ext/commonmarker/cmark/CMakeLists.txt +2 -2
  3. data/ext/commonmarker/cmark/api_test/main.c +98 -90
  4. data/ext/commonmarker/cmark/build/CMakeCache.txt +82 -59
  5. data/ext/commonmarker/cmark/build/CMakeFiles/3.3.2/CMakeCCompiler.cmake +6 -6
  6. data/ext/commonmarker/cmark/build/CMakeFiles/3.3.2/CMakeCXXCompiler.cmake +6 -6
  7. data/ext/commonmarker/cmark/build/CMakeFiles/3.3.2/CMakeDetermineCompilerABI_C.bin +0 -0
  8. data/ext/commonmarker/cmark/build/CMakeFiles/3.3.2/CMakeDetermineCompilerABI_CXX.bin +0 -0
  9. data/ext/commonmarker/cmark/build/CMakeFiles/3.3.2/CMakeSystem.cmake +4 -4
  10. data/ext/commonmarker/cmark/build/CMakeFiles/3.3.2/CompilerIdC/a.out +0 -0
  11. data/ext/commonmarker/cmark/build/CMakeFiles/3.3.2/CompilerIdCXX/a.out +0 -0
  12. data/ext/commonmarker/cmark/build/CMakeFiles/CMakeError.log +6 -7
  13. data/ext/commonmarker/cmark/build/CMakeFiles/CMakeOutput.log +216 -381
  14. data/ext/commonmarker/cmark/build/CMakeFiles/Makefile.cmake +69 -0
  15. data/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.bin +0 -0
  16. data/ext/commonmarker/cmark/build/Makefile +1 -1
  17. data/ext/commonmarker/cmark/build/api_test/CMakeFiles/api_test.dir/build.make +10 -10
  18. data/ext/commonmarker/cmark/build/api_test/CMakeFiles/api_test.dir/flags.make +2 -2
  19. data/ext/commonmarker/cmark/build/api_test/CMakeFiles/api_test.dir/link.txt +1 -1
  20. data/ext/commonmarker/cmark/build/api_test/Makefile +1 -1
  21. data/ext/commonmarker/cmark/build/man/Makefile +1 -1
  22. data/ext/commonmarker/cmark/build/src/CMakeFiles/cmark.dir/build.make +60 -60
  23. data/ext/commonmarker/cmark/build/src/CMakeFiles/cmark.dir/flags.make +1 -1
  24. data/ext/commonmarker/cmark/build/src/CMakeFiles/cmark.dir/link.txt +1 -1
  25. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark.dir/DependInfo.cmake +1 -1
  26. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark.dir/build.make +80 -80
  27. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark.dir/cmake_clean.cmake +1 -1
  28. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark.dir/flags.make +1 -1
  29. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark.dir/link.txt +1 -1
  30. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/C.includecache +4 -0
  31. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/blocks.c.o +0 -0
  32. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/build.make +57 -57
  33. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/cmark.c.o +0 -0
  34. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/commonmark.c.o +0 -0
  35. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/flags.make +1 -1
  36. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/html.c.o +0 -0
  37. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/iterator.c.o +0 -0
  38. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/latex.c.o +0 -0
  39. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/link.txt +2 -2
  40. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/man.c.o +0 -0
  41. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/node.c.o +0 -0
  42. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/render.c.o +0 -0
  43. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/scanners.c.o +0 -0
  44. data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/xml.c.o +0 -0
  45. data/ext/commonmarker/cmark/build/src/Makefile +1 -1
  46. data/ext/commonmarker/cmark/build/src/cmake_install.cmake +5 -5
  47. data/ext/commonmarker/cmark/build/src/cmark_version.h +2 -2
  48. data/ext/commonmarker/cmark/build/src/config.h +51 -0
  49. data/ext/commonmarker/cmark/build/src/libcmark.a +0 -0
  50. data/ext/commonmarker/cmark/build/src/libcmark.pc +1 -1
  51. data/ext/commonmarker/cmark/build/testdir/Makefile +1 -1
  52. data/ext/commonmarker/cmark/changelog.txt +54 -0
  53. data/ext/commonmarker/cmark/man/make_man_page.py +3 -1
  54. data/ext/commonmarker/cmark/man/man3/cmark.3 +114 -15
  55. data/ext/commonmarker/cmark/src/blocks.c +1 -5
  56. data/ext/commonmarker/cmark/src/chunk.h +4 -4
  57. data/ext/commonmarker/cmark/src/cmark.h +13 -7
  58. data/ext/commonmarker/cmark/src/commonmark.c +45 -27
  59. data/ext/commonmarker/cmark/src/config.h.in +51 -0
  60. data/ext/commonmarker/cmark/src/html.c +9 -7
  61. data/ext/commonmarker/cmark/src/iterator.c +3 -0
  62. data/ext/commonmarker/cmark/src/latex.c +4 -2
  63. data/ext/commonmarker/cmark/src/man.c +3 -2
  64. data/ext/commonmarker/cmark/src/node.c +10 -2
  65. data/ext/commonmarker/cmark/src/render.c +17 -5
  66. data/ext/commonmarker/cmark/src/scanners.c +10457 -16407
  67. data/ext/commonmarker/cmark/src/scanners.re +3 -3
  68. data/ext/commonmarker/cmark/src/xml.c +10 -7
  69. data/ext/commonmarker/cmark/test/smart_punct.txt +30 -30
  70. data/ext/commonmarker/cmark/test/spec.txt +2152 -1440
  71. data/ext/commonmarker/cmark/test/spec_tests.py +21 -17
  72. data/ext/commonmarker/cmark/wrappers/wrapper.py +1 -1
  73. data/lib/commonmarker/version.rb +1 -1
  74. data/test/test_helper.rb +23 -21
  75. data/test/test_smartpunct.rb +1 -1
  76. data/test/test_spec.rb +1 -1
  77. metadata +2 -11
  78. data/ext/commonmarker/cmark/build/CMakeFiles/2.8.10.1/CMakeCCompiler.cmake +0 -55
  79. data/ext/commonmarker/cmark/build/CMakeFiles/2.8.10.1/CMakeCXXCompiler.cmake +0 -56
  80. data/ext/commonmarker/cmark/build/CMakeFiles/2.8.10.1/CMakeDetermineCompilerABI_C.bin +0 -0
  81. data/ext/commonmarker/cmark/build/CMakeFiles/2.8.10.1/CMakeDetermineCompilerABI_CXX.bin +0 -0
  82. data/ext/commonmarker/cmark/build/CMakeFiles/2.8.10.1/CMakeSystem.cmake +0 -15
  83. data/ext/commonmarker/cmark/build/CMakeFiles/2.8.10.1/CompilerIdC/CMakeCCompilerId.c +0 -393
  84. data/ext/commonmarker/cmark/build/CMakeFiles/2.8.10.1/CompilerIdC/a.out +0 -0
  85. data/ext/commonmarker/cmark/build/CMakeFiles/2.8.10.1/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -375
  86. data/ext/commonmarker/cmark/build/CMakeFiles/2.8.10.1/CompilerIdCXX/a.out +0 -0
@@ -1,7 +1,7 @@
1
- set(CMAKE_C_COMPILER "/usr/bin/cc")
1
+ set(CMAKE_C_COMPILER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc")
2
2
  set(CMAKE_C_COMPILER_ARG1 "")
3
3
  set(CMAKE_C_COMPILER_ID "AppleClang")
4
- set(CMAKE_C_COMPILER_VERSION "7.0.0.7000176")
4
+ set(CMAKE_C_COMPILER_VERSION "7.0.2.7000181")
5
5
  set(CMAKE_C_COMPILE_FEATURES "c_function_prototypes;c_restrict;c_variadic_macros;c_static_assert")
6
6
  set(CMAKE_C90_COMPILE_FEATURES "c_function_prototypes")
7
7
  set(CMAKE_C99_COMPILE_FEATURES "c_restrict;c_variadic_macros")
@@ -11,9 +11,9 @@ set(CMAKE_C_PLATFORM_ID "Darwin")
11
11
  set(CMAKE_C_SIMULATE_ID "")
12
12
  set(CMAKE_C_SIMULATE_VERSION "")
13
13
 
14
- set(CMAKE_AR "/usr/bin/ar")
15
- set(CMAKE_RANLIB "/usr/bin/ranlib")
16
- set(CMAKE_LINKER "/usr/bin/ld")
14
+ set(CMAKE_AR "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar")
15
+ set(CMAKE_RANLIB "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib")
16
+ set(CMAKE_LINKER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld")
17
17
  set(CMAKE_COMPILER_IS_GNUCC )
18
18
  set(CMAKE_C_COMPILER_LOADED 1)
19
19
  set(CMAKE_C_COMPILER_WORKS TRUE)
@@ -55,7 +55,7 @@ endif()
55
55
 
56
56
 
57
57
 
58
- set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a")
58
+ set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.0.2/lib/darwin/libclang_rt.osx.a")
59
59
  set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib;/usr/local/lib")
60
60
  set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Frameworks;/System/Library/Frameworks")
61
61
 
@@ -1,7 +1,7 @@
1
- set(CMAKE_CXX_COMPILER "/usr/bin/c++")
1
+ set(CMAKE_CXX_COMPILER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++")
2
2
  set(CMAKE_CXX_COMPILER_ARG1 "")
3
3
  set(CMAKE_CXX_COMPILER_ID "AppleClang")
4
- set(CMAKE_CXX_COMPILER_VERSION "7.0.0.7000176")
4
+ set(CMAKE_CXX_COMPILER_VERSION "7.0.2.7000181")
5
5
  set(CMAKE_CXX_COMPILE_FEATURES "cxx_template_template_parameters;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
6
6
  set(CMAKE_CXX98_COMPILE_FEATURES "cxx_template_template_parameters")
7
7
  set(CMAKE_CXX11_COMPILE_FEATURES "cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
@@ -11,9 +11,9 @@ set(CMAKE_CXX_PLATFORM_ID "Darwin")
11
11
  set(CMAKE_CXX_SIMULATE_ID "")
12
12
  set(CMAKE_CXX_SIMULATE_VERSION "")
13
13
 
14
- set(CMAKE_AR "/usr/bin/ar")
15
- set(CMAKE_RANLIB "/usr/bin/ranlib")
16
- set(CMAKE_LINKER "/usr/bin/ld")
14
+ set(CMAKE_AR "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ar")
15
+ set(CMAKE_RANLIB "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib")
16
+ set(CMAKE_LINKER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld")
17
17
  set(CMAKE_COMPILER_IS_GNUCXX )
18
18
  set(CMAKE_CXX_COMPILER_LOADED 1)
19
19
  set(CMAKE_CXX_COMPILER_WORKS TRUE)
@@ -56,7 +56,7 @@ endif()
56
56
 
57
57
 
58
58
 
59
- set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a")
59
+ set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "c++;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.0.2/lib/darwin/libclang_rt.osx.a")
60
60
  set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib;/usr/local/lib")
61
61
  set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "/Library/Frameworks;/System/Library/Frameworks")
62
62
 
@@ -1,13 +1,13 @@
1
- set(CMAKE_HOST_SYSTEM "Darwin-15.0.0")
1
+ set(CMAKE_HOST_SYSTEM "Darwin-15.2.0")
2
2
  set(CMAKE_HOST_SYSTEM_NAME "Darwin")
3
- set(CMAKE_HOST_SYSTEM_VERSION "15.0.0")
3
+ set(CMAKE_HOST_SYSTEM_VERSION "15.2.0")
4
4
  set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
5
5
 
6
6
 
7
7
 
8
- set(CMAKE_SYSTEM "Darwin-15.0.0")
8
+ set(CMAKE_SYSTEM "Darwin-15.2.0")
9
9
  set(CMAKE_SYSTEM_NAME "Darwin")
10
- set(CMAKE_SYSTEM_VERSION "15.0.0")
10
+ set(CMAKE_SYSTEM_VERSION "15.2.0")
11
11
  set(CMAKE_SYSTEM_PROCESSOR "x86_64")
12
12
 
13
13
  set(CMAKE_CROSSCOMPILING "FALSE")
@@ -1,15 +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 "cmTryCompileExec238547763/fast"
5
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec238547763.dir/build.make CMakeFiles/cmTryCompileExec238547763.dir/build
6
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_progress_report /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CMakeFiles 1
7
- Building C object CMakeFiles/cmTryCompileExec238547763.dir/src.c.o
8
- /usr/bin/cc -fPIC -DHAVE_FLAG_ADDRESS_SANITIZER -Werror -faddress-sanitizer -faddress-sanitizer -o CMakeFiles/cmTryCompileExec238547763.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_04178/fast"
5
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_04178.dir/build.make CMakeFiles/cmTC_04178.dir/build
6
+ Building C object CMakeFiles/cmTC_04178.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_04178.dir/src.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
9
8
  clang: error: unknown argument: '-faddress-sanitizer'
10
9
  clang: error: unknown argument: '-faddress-sanitizer'
11
- make[1]: *** [CMakeFiles/cmTryCompileExec238547763.dir/src.c.o] Error 1
12
- make: *** [cmTryCompileExec238547763/fast] Error 2
10
+ make[1]: *** [CMakeFiles/cmTC_04178.dir/src.c.o] Error 1
11
+ make: *** [cmTC_04178/fast] Error 2
13
12
 
14
13
  Source file was:
15
14
  int main(void) { return 0; }
@@ -1,276 +1,6 @@
1
- The system is: Darwin - 14.5.0 - i386
1
+ The system is: Darwin - 15.2.0 - x86_64
2
2
  Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
3
- Compiler: /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 Clang, found in "/Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/2.8.10.1/CompilerIdC/a.out"
14
-
15
- Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
16
- Compiler: /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 Clang, found in "/Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/2.8.10.1/CompilerIdCXX/a.out"
27
-
28
- Determining if the C compiler works passed with the following output:
29
- Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
30
-
31
- Run Build Command:/usr/bin/make "cmTryCompileExec229047829/fast"
32
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec229047829.dir/build.make CMakeFiles/cmTryCompileExec229047829.dir/build
33
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_progress_report /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CMakeFiles 1
34
- Building C object CMakeFiles/cmTryCompileExec229047829.dir/testCCompiler.c.o
35
- /usr/bin/cc -fPIC -o CMakeFiles/cmTryCompileExec229047829.dir/testCCompiler.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/testCCompiler.c
36
- Linking C executable cmTryCompileExec229047829
37
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec229047829.dir/link.txt --verbose=1
38
- /usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/lib CMakeFiles/cmTryCompileExec229047829.dir/testCCompiler.c.o -o cmTryCompileExec229047829
39
-
40
-
41
- Detecting C compiler ABI info compiled with the following output:
42
- Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
43
-
44
- Run Build Command:/usr/bin/make "cmTryCompileExec191922586/fast"
45
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec191922586.dir/build.make CMakeFiles/cmTryCompileExec191922586.dir/build
46
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_progress_report /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CMakeFiles 1
47
- Building C object CMakeFiles/cmTryCompileExec191922586.dir/CMakeCCompilerABI.c.o
48
- /usr/bin/cc -fPIC -o CMakeFiles/cmTryCompileExec191922586.dir/CMakeCCompilerABI.c.o -c /usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CMakeCCompilerABI.c
49
- Linking C executable cmTryCompileExec191922586
50
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec191922586.dir/link.txt --verbose=1
51
- /usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v CMakeFiles/cmTryCompileExec191922586.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec191922586
52
- Apple LLVM version 7.0.0 (clang-700.0.72)
53
- Target: x86_64-apple-darwin14.5.0
54
- Thread model: posix
55
- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.10.0 -o cmTryCompileExec191922586 -search_paths_first -headerpad_max_install_names CMakeFiles/cmTryCompileExec191922586.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a
56
-
57
-
58
- Parsed C implicit link information from above output:
59
- link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)]
60
- ignore line: [Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp]
61
- ignore line: []
62
- ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec191922586/fast"]
63
- ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec191922586.dir/build.make CMakeFiles/cmTryCompileExec191922586.dir/build]
64
- ignore line: [/usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_progress_report /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CMakeFiles 1]
65
- ignore line: [Building C object CMakeFiles/cmTryCompileExec191922586.dir/CMakeCCompilerABI.c.o]
66
- ignore line: [/usr/bin/cc -fPIC -o CMakeFiles/cmTryCompileExec191922586.dir/CMakeCCompilerABI.c.o -c /usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CMakeCCompilerABI.c]
67
- ignore line: [Linking C executable cmTryCompileExec191922586]
68
- ignore line: [/usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec191922586.dir/link.txt --verbose=1]
69
- ignore line: [/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v CMakeFiles/cmTryCompileExec191922586.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec191922586 ]
70
- ignore line: [Apple LLVM version 7.0.0 (clang-700.0.72)]
71
- ignore line: [Target: x86_64-apple-darwin14.5.0]
72
- ignore line: [Thread model: posix]
73
- link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.10.0 -o cmTryCompileExec191922586 -search_paths_first -headerpad_max_install_names CMakeFiles/cmTryCompileExec191922586.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a]
74
- arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore
75
- arg [-demangle] ==> ignore
76
- arg [-dynamic] ==> ignore
77
- arg [-arch] ==> ignore
78
- arg [x86_64] ==> ignore
79
- arg [-macosx_version_min] ==> ignore
80
- arg [10.10.0] ==> ignore
81
- arg [-o] ==> ignore
82
- arg [cmTryCompileExec191922586] ==> ignore
83
- arg [-search_paths_first] ==> ignore
84
- arg [-headerpad_max_install_names] ==> ignore
85
- arg [CMakeFiles/cmTryCompileExec191922586.dir/CMakeCCompilerABI.c.o] ==> ignore
86
- arg [-lSystem] ==> lib [System]
87
- arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a]
88
- remove lib [System]
89
- implicit libs: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a]
90
- implicit dirs: []
91
-
92
-
93
- Determining if the CXX compiler works passed with the following output:
94
- Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
95
-
96
- Run Build Command:/usr/bin/make "cmTryCompileExec3255154172/fast"
97
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec3255154172.dir/build.make CMakeFiles/cmTryCompileExec3255154172.dir/build
98
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_progress_report /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CMakeFiles 1
99
- Building CXX object CMakeFiles/cmTryCompileExec3255154172.dir/testCXXCompiler.cxx.o
100
- /usr/bin/c++ -o CMakeFiles/cmTryCompileExec3255154172.dir/testCXXCompiler.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
101
- Linking CXX executable cmTryCompileExec3255154172
102
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3255154172.dir/link.txt --verbose=1
103
- /usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/lib CMakeFiles/cmTryCompileExec3255154172.dir/testCXXCompiler.cxx.o -o cmTryCompileExec3255154172
104
-
105
-
106
- Detecting CXX compiler ABI info compiled with the following output:
107
- Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
108
-
109
- Run Build Command:/usr/bin/make "cmTryCompileExec2005830079/fast"
110
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec2005830079.dir/build.make CMakeFiles/cmTryCompileExec2005830079.dir/build
111
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_progress_report /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CMakeFiles 1
112
- Building CXX object CMakeFiles/cmTryCompileExec2005830079.dir/CMakeCXXCompilerABI.cpp.o
113
- /usr/bin/c++ -o CMakeFiles/cmTryCompileExec2005830079.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CMakeCXXCompilerABI.cpp
114
- Linking CXX executable cmTryCompileExec2005830079
115
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2005830079.dir/link.txt --verbose=1
116
- /usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v CMakeFiles/cmTryCompileExec2005830079.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec2005830079
117
- Apple LLVM version 7.0.0 (clang-700.0.72)
118
- Target: x86_64-apple-darwin14.5.0
119
- Thread model: posix
120
- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.10.0 -o cmTryCompileExec2005830079 -search_paths_first -headerpad_max_install_names CMakeFiles/cmTryCompileExec2005830079.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a
121
-
122
-
123
- Parsed CXX implicit link information from above output:
124
- link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)]
125
- ignore line: [Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp]
126
- ignore line: []
127
- ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec2005830079/fast"]
128
- ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec2005830079.dir/build.make CMakeFiles/cmTryCompileExec2005830079.dir/build]
129
- ignore line: [/usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_progress_report /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CMakeFiles 1]
130
- ignore line: [Building CXX object CMakeFiles/cmTryCompileExec2005830079.dir/CMakeCXXCompilerABI.cpp.o]
131
- ignore line: [/usr/bin/c++ -o CMakeFiles/cmTryCompileExec2005830079.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/2.8.10.1-boxen1/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
132
- ignore line: [Linking CXX executable cmTryCompileExec2005830079]
133
- ignore line: [/usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2005830079.dir/link.txt --verbose=1]
134
- ignore line: [/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v CMakeFiles/cmTryCompileExec2005830079.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec2005830079 ]
135
- ignore line: [Apple LLVM version 7.0.0 (clang-700.0.72)]
136
- ignore line: [Target: x86_64-apple-darwin14.5.0]
137
- ignore line: [Thread model: posix]
138
- link line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.10.0 -o cmTryCompileExec2005830079 -search_paths_first -headerpad_max_install_names CMakeFiles/cmTryCompileExec2005830079.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a]
139
- arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore
140
- arg [-demangle] ==> ignore
141
- arg [-dynamic] ==> ignore
142
- arg [-arch] ==> ignore
143
- arg [x86_64] ==> ignore
144
- arg [-macosx_version_min] ==> ignore
145
- arg [10.10.0] ==> ignore
146
- arg [-o] ==> ignore
147
- arg [cmTryCompileExec2005830079] ==> ignore
148
- arg [-search_paths_first] ==> ignore
149
- arg [-headerpad_max_install_names] ==> ignore
150
- arg [CMakeFiles/cmTryCompileExec2005830079.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
151
- arg [-lc++] ==> lib [c++]
152
- arg [-lSystem] ==> lib [System]
153
- arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a]
154
- remove lib [System]
155
- implicit libs: [c++;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a]
156
- implicit dirs: []
157
-
158
-
159
- Performing C SOURCE FILE Test HAVE_FLAG_SANITIZE_ADDRESS succeded with the following output:
160
- Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
161
-
162
- Run Build Command:/usr/bin/make "cmTryCompileExec818614274/fast"
163
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec818614274.dir/build.make CMakeFiles/cmTryCompileExec818614274.dir/build
164
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_progress_report /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CMakeFiles 1
165
- Building C object CMakeFiles/cmTryCompileExec818614274.dir/src.c.o
166
- /usr/bin/cc -fPIC -DHAVE_FLAG_SANITIZE_ADDRESS -Werror -fsanitize=address -fsanitize=address -o CMakeFiles/cmTryCompileExec818614274.dir/src.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
167
- Linking C executable cmTryCompileExec818614274
168
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec818614274.dir/link.txt --verbose=1
169
- /usr/bin/cc -fPIC -DHAVE_FLAG_SANITIZE_ADDRESS -Werror -fsanitize=address -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/lib CMakeFiles/cmTryCompileExec818614274.dir/src.c.o -o cmTryCompileExec818614274
170
-
171
- Source file was:
172
- int main(void) { return 0; }
173
- Performing C++ SOURCE FILE Test COMPILER_HAS_HIDDEN_VISIBILITY succeded with the following output:
174
- Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
175
-
176
- Run Build Command:/usr/bin/make "cmTryCompileExec3790550377/fast"
177
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec3790550377.dir/build.make CMakeFiles/cmTryCompileExec3790550377.dir/build
178
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_progress_report /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CMakeFiles 1
179
- Building CXX object CMakeFiles/cmTryCompileExec3790550377.dir/src.cxx.o
180
- /usr/bin/c++ -DCOMPILER_HAS_HIDDEN_VISIBILITY -fvisibility=hidden -o CMakeFiles/cmTryCompileExec3790550377.dir/src.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx
181
- Linking CXX executable cmTryCompileExec3790550377
182
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3790550377.dir/link.txt --verbose=1
183
- /usr/bin/c++ -DCOMPILER_HAS_HIDDEN_VISIBILITY -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/lib CMakeFiles/cmTryCompileExec3790550377.dir/src.cxx.o -o cmTryCompileExec3790550377
184
-
185
- Source file was:
186
- int main() { return 0;}
187
- Performing C++ SOURCE FILE Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY succeded with the following output:
188
- Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
189
-
190
- Run Build Command:/usr/bin/make "cmTryCompileExec3048904063/fast"
191
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec3048904063.dir/build.make CMakeFiles/cmTryCompileExec3048904063.dir/build
192
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_progress_report /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CMakeFiles 1
193
- Building CXX object CMakeFiles/cmTryCompileExec3048904063.dir/src.cxx.o
194
- /usr/bin/c++ -DCOMPILER_HAS_HIDDEN_INLINE_VISIBILITY -fvisibility-inlines-hidden -o CMakeFiles/cmTryCompileExec3048904063.dir/src.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx
195
- Linking CXX executable cmTryCompileExec3048904063
196
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3048904063.dir/link.txt --verbose=1
197
- /usr/bin/c++ -DCOMPILER_HAS_HIDDEN_INLINE_VISIBILITY -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/lib CMakeFiles/cmTryCompileExec3048904063.dir/src.cxx.o -o cmTryCompileExec3048904063
198
-
199
- Source file was:
200
- int main() { return 0;}
201
- Performing C++ SOURCE FILE Test COMPILER_HAS_DEPRECATED_ATTR succeded with the following output:
202
- Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
203
-
204
- Run Build Command:/usr/bin/make "cmTryCompileExec1346740473/fast"
205
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec1346740473.dir/build.make CMakeFiles/cmTryCompileExec1346740473.dir/build
206
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_progress_report /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CMakeFiles 1
207
- Building CXX object CMakeFiles/cmTryCompileExec1346740473.dir/src.cxx.o
208
- /usr/bin/c++ -DCOMPILER_HAS_DEPRECATED_ATTR -o CMakeFiles/cmTryCompileExec1346740473.dir/src.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx
209
- /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx:2:25: warning: 'somefunc' is deprecated [-Wdeprecated-declarations]
210
- int main() { return somefunc();}
211
- ^
212
- /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx:1:37: note: 'somefunc' has been explicitly marked deprecated here
213
- __attribute__((__deprecated__)) int somefunc() { return 0; }
214
- ^
215
- 1 warning generated.
216
- Linking CXX executable cmTryCompileExec1346740473
217
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1346740473.dir/link.txt --verbose=1
218
- /usr/bin/c++ -DCOMPILER_HAS_DEPRECATED_ATTR -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/lib CMakeFiles/cmTryCompileExec1346740473.dir/src.cxx.o -o cmTryCompileExec1346740473
219
-
220
- Source file was:
221
- __attribute__((__deprecated__)) int somefunc() { return 0; }
222
- int main() { return somefunc();}
223
- Determining if the include file stdbool.h exists passed with the following output:
224
- Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
225
-
226
- Run Build Command:/usr/bin/make "cmTryCompileExec3659988363/fast"
227
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec3659988363.dir/build.make CMakeFiles/cmTryCompileExec3659988363.dir/build
228
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_progress_report /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CMakeFiles 1
229
- Building C object CMakeFiles/cmTryCompileExec3659988363.dir/CheckIncludeFile.c.o
230
- /usr/bin/cc -fPIC -fvisibility=hidden -o CMakeFiles/cmTryCompileExec3659988363.dir/CheckIncludeFile.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
231
- Linking C executable cmTryCompileExec3659988363
232
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3659988363.dir/link.txt --verbose=1
233
- /usr/bin/cc -fPIC -fvisibility=hidden -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/lib CMakeFiles/cmTryCompileExec3659988363.dir/CheckIncludeFile.c.o -o cmTryCompileExec3659988363
234
-
235
-
236
- Performing C SOURCE FILE Test HAVE___BUILTIN_EXPECT succeded with the following output:
237
- Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
238
-
239
- Run Build Command:/usr/bin/make "cmTryCompileExec311400010/fast"
240
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec311400010.dir/build.make CMakeFiles/cmTryCompileExec311400010.dir/build
241
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_progress_report /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CMakeFiles 1
242
- Building C object CMakeFiles/cmTryCompileExec311400010.dir/src.c.o
243
- /usr/bin/cc -fPIC -fvisibility=hidden -DHAVE___BUILTIN_EXPECT -o CMakeFiles/cmTryCompileExec311400010.dir/src.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
244
- /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]
245
- int main() { __builtin_expect(0,0); return 0; }
246
- ^~~~~~~~~~~~~~~~ ~~~
247
- 1 warning generated.
248
- Linking C executable cmTryCompileExec311400010
249
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec311400010.dir/link.txt --verbose=1
250
- /usr/bin/cc -fPIC -fvisibility=hidden -DHAVE___BUILTIN_EXPECT -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/lib CMakeFiles/cmTryCompileExec311400010.dir/src.c.o -o cmTryCompileExec311400010
251
-
252
- Source file was:
253
- int main() { __builtin_expect(0,0); return 0; }
254
- Performing C SOURCE FILE Test HAVE___ATTRIBUTE__ succeded with the following output:
255
- Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
256
-
257
- Run Build Command:/usr/bin/make "cmTryCompileExec668677093/fast"
258
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTryCompileExec668677093.dir/build.make CMakeFiles/cmTryCompileExec668677093.dir/build
259
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_progress_report /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CMakeFiles 1
260
- Building C object CMakeFiles/cmTryCompileExec668677093.dir/src.c.o
261
- /usr/bin/cc -fPIC -fvisibility=hidden -DHAVE___ATTRIBUTE__ -o CMakeFiles/cmTryCompileExec668677093.dir/src.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
262
- Linking C executable cmTryCompileExec668677093
263
- /usr/local/Cellar/cmake/2.8.10.1-boxen1/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec668677093.dir/link.txt --verbose=1
264
- /usr/bin/cc -fPIC -fvisibility=hidden -DHAVE___ATTRIBUTE__ -Wl,-search_paths_first -Wl,-headerpad_max_install_names -L/usr/local/lib CMakeFiles/cmTryCompileExec668677093.dir/src.c.o -o cmTryCompileExec668677093
265
-
266
- Source file was:
267
-
268
- int f(void) __attribute__ (());
269
- int main() { return 0; }
270
-
271
- The system is: Darwin - 15.0.0 - x86_64
272
- Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
273
- Compiler: /usr/bin/cc
3
+ Compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
274
4
  Build flags: -fPIC
275
5
  Id flags:
276
6
 
@@ -283,7 +13,7 @@ Compilation of the C compiler identification source "CMakeCCompilerId.c" produce
283
13
  The C compiler identification is AppleClang, found in "/Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/3.3.2/CompilerIdC/a.out"
284
14
 
285
15
  Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
286
- Compiler: /usr/bin/c++
16
+ Compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
287
17
  Build flags:
288
18
  Id flags:
289
19
 
@@ -298,30 +28,30 @@ The CXX compiler identification is AppleClang, found in "/Users/gjtorikian/Devel
298
28
  Determining if the C compiler works passed with the following output:
299
29
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
300
30
 
301
- Run Build Command:"/usr/bin/make" "cmTC_4a81e/fast"
302
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_4a81e.dir/build.make CMakeFiles/cmTC_4a81e.dir/build
303
- Building C object CMakeFiles/cmTC_4a81e.dir/testCCompiler.c.o
304
- /usr/bin/cc -fPIC -o CMakeFiles/cmTC_4a81e.dir/testCCompiler.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/testCCompiler.c
305
- Linking C executable cmTC_4a81e
306
- /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4a81e.dir/link.txt --verbose=1
307
- /usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_4a81e.dir/testCCompiler.c.o -o cmTC_4a81e
31
+ Run Build Command:"/usr/bin/make" "cmTC_5b06a/fast"
32
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_5b06a.dir/build.make CMakeFiles/cmTC_5b06a.dir/build
33
+ Building C object CMakeFiles/cmTC_5b06a.dir/testCCompiler.c.o
34
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -o CMakeFiles/cmTC_5b06a.dir/testCCompiler.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/testCCompiler.c
35
+ Linking C executable cmTC_5b06a
36
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5b06a.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_5b06a.dir/testCCompiler.c.o -o cmTC_5b06a
308
38
 
309
39
 
310
40
  Detecting C compiler ABI info compiled with the following output:
311
41
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
312
42
 
313
- Run Build Command:"/usr/bin/make" "cmTC_5a357/fast"
314
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_5a357.dir/build.make CMakeFiles/cmTC_5a357.dir/build
315
- Building C object CMakeFiles/cmTC_5a357.dir/CMakeCCompilerABI.c.o
316
- /usr/bin/cc -fPIC -o CMakeFiles/cmTC_5a357.dir/CMakeCCompilerABI.c.o -c /usr/local/Cellar/cmake/3.3.2/share/cmake/Modules/CMakeCCompilerABI.c
317
- Linking C executable cmTC_5a357
318
- /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5a357.dir/link.txt --verbose=1
319
- /usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_5a357.dir/CMakeCCompilerABI.c.o -o cmTC_5a357
320
- Apple LLVM version 7.0.0 (clang-700.1.76)
321
- Target: x86_64-apple-darwin15.0.0
43
+ Run Build Command:"/usr/bin/make" "cmTC_d064e/fast"
44
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_d064e.dir/build.make CMakeFiles/cmTC_d064e.dir/build
45
+ Building C object CMakeFiles/cmTC_d064e.dir/CMakeCCompilerABI.c.o
46
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -o CMakeFiles/cmTC_d064e.dir/CMakeCCompilerABI.c.o -c /usr/local/Cellar/cmake/3.3.2/share/cmake/Modules/CMakeCCompilerABI.c
47
+ Linking C executable cmTC_d064e
48
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d064e.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_d064e.dir/CMakeCCompilerABI.c.o -o cmTC_d064e
50
+ Apple LLVM version 7.0.2 (clang-700.1.81)
51
+ Target: x86_64-apple-darwin15.2.0
322
52
  Thread model: posix
323
- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.11.0 -o cmTC_5a357 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_5a357.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a
324
- @(#)PROGRAM:ld PROJECT:ld64-253.6
53
+ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.11.0 -o cmTC_d064e -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_d064e.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.2/lib/darwin/libclang_rt.osx.a
54
+ @(#)PROGRAM:ld PROJECT:ld64-253.9
325
55
  configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em (tvOS)
326
56
  Library search paths:
327
57
  /usr/lib
@@ -335,17 +65,17 @@ Parsed C implicit link information from above output:
335
65
  link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)]
336
66
  ignore line: [Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp]
337
67
  ignore line: []
338
- ignore line: [Run Build Command:"/usr/bin/make" "cmTC_5a357/fast"]
339
- ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_5a357.dir/build.make CMakeFiles/cmTC_5a357.dir/build]
340
- ignore line: [Building C object CMakeFiles/cmTC_5a357.dir/CMakeCCompilerABI.c.o]
341
- ignore line: [/usr/bin/cc -fPIC -o CMakeFiles/cmTC_5a357.dir/CMakeCCompilerABI.c.o -c /usr/local/Cellar/cmake/3.3.2/share/cmake/Modules/CMakeCCompilerABI.c]
342
- ignore line: [Linking C executable cmTC_5a357]
343
- ignore line: [/usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5a357.dir/link.txt --verbose=1]
344
- ignore line: [/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_5a357.dir/CMakeCCompilerABI.c.o -o cmTC_5a357 ]
345
- ignore line: [Apple LLVM version 7.0.0 (clang-700.1.76)]
346
- ignore line: [Target: x86_64-apple-darwin15.0.0]
68
+ ignore line: [Run Build Command:"/usr/bin/make" "cmTC_d064e/fast"]
69
+ ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_d064e.dir/build.make CMakeFiles/cmTC_d064e.dir/build]
70
+ ignore line: [Building C object CMakeFiles/cmTC_d064e.dir/CMakeCCompilerABI.c.o]
71
+ ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -o CMakeFiles/cmTC_d064e.dir/CMakeCCompilerABI.c.o -c /usr/local/Cellar/cmake/3.3.2/share/cmake/Modules/CMakeCCompilerABI.c]
72
+ ignore line: [Linking C executable cmTC_d064e]
73
+ ignore line: [/usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d064e.dir/link.txt --verbose=1]
74
+ 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_d064e.dir/CMakeCCompilerABI.c.o -o cmTC_d064e ]
75
+ ignore line: [Apple LLVM version 7.0.2 (clang-700.1.81)]
76
+ ignore line: [Target: x86_64-apple-darwin15.2.0]
347
77
  ignore line: [Thread model: posix]
348
- 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_5a357 -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_5a357.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a]
78
+ 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_d064e -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_d064e.dir/CMakeCCompilerABI.c.o -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.2/lib/darwin/libclang_rt.osx.a]
349
79
  arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore
350
80
  arg [-demangle] ==> ignore
351
81
  arg [-dynamic] ==> ignore
@@ -354,22 +84,22 @@ Parsed C implicit link information from above output:
354
84
  arg [-macosx_version_min] ==> ignore
355
85
  arg [10.11.0] ==> ignore
356
86
  arg [-o] ==> ignore
357
- arg [cmTC_5a357] ==> ignore
87
+ arg [cmTC_d064e] ==> ignore
358
88
  arg [-search_paths_first] ==> ignore
359
89
  arg [-headerpad_max_install_names] ==> ignore
360
90
  arg [-v] ==> ignore
361
- arg [CMakeFiles/cmTC_5a357.dir/CMakeCCompilerABI.c.o] ==> ignore
91
+ arg [CMakeFiles/cmTC_d064e.dir/CMakeCCompilerABI.c.o] ==> ignore
362
92
  arg [-lSystem] ==> lib [System]
363
- arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a]
93
+ arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.2/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.2/lib/darwin/libclang_rt.osx.a]
364
94
  Library search paths: [;/usr/lib;/usr/local/lib]
365
95
  Framework search paths: [;/Library/Frameworks/;/System/Library/Frameworks/]
366
96
  remove lib [System]
367
- collapse lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a] ==> [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a]
97
+ collapse lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.2/lib/darwin/libclang_rt.osx.a] ==> [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.0.2/lib/darwin/libclang_rt.osx.a]
368
98
  collapse library dir [/usr/lib] ==> [/usr/lib]
369
99
  collapse library dir [/usr/local/lib] ==> [/usr/local/lib]
370
100
  collapse framework dir [/Library/Frameworks/] ==> [/Library/Frameworks]
371
101
  collapse framework dir [/System/Library/Frameworks/] ==> [/System/Library/Frameworks]
372
- implicit libs: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a]
102
+ implicit libs: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.0.2/lib/darwin/libclang_rt.osx.a]
373
103
  implicit dirs: [/usr/lib;/usr/local/lib]
374
104
  implicit fwks: [/Library/Frameworks;/System/Library/Frameworks]
375
105
 
@@ -379,13 +109,13 @@ Parsed C implicit link information from above output:
379
109
  Detecting C [-std=c11] compiler features compiled with the following output:
380
110
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
381
111
 
382
- Run Build Command:"/usr/bin/make" "cmTC_74c2b/fast"
383
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_74c2b.dir/build.make CMakeFiles/cmTC_74c2b.dir/build
384
- Building C object CMakeFiles/cmTC_74c2b.dir/feature_tests.c.o
385
- /usr/bin/cc -fPIC -std=c11 -o CMakeFiles/cmTC_74c2b.dir/feature_tests.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
386
- Linking C executable cmTC_74c2b
387
- /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_74c2b.dir/link.txt --verbose=1
388
- /usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_74c2b.dir/feature_tests.c.o -o cmTC_74c2b
112
+ Run Build Command:"/usr/bin/make" "cmTC_4423a/fast"
113
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_4423a.dir/build.make CMakeFiles/cmTC_4423a.dir/build
114
+ Building C object CMakeFiles/cmTC_4423a.dir/feature_tests.c.o
115
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -std=c11 -o CMakeFiles/cmTC_4423a.dir/feature_tests.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
116
+ Linking C executable cmTC_4423a
117
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_4423a.dir/link.txt --verbose=1
118
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_4423a.dir/feature_tests.c.o -o cmTC_4423a
389
119
 
390
120
 
391
121
  Feature record: C_FEATURE:1c_function_prototypes
@@ -397,13 +127,13 @@ Linking C executable cmTC_74c2b
397
127
  Detecting C [-std=c99] compiler features compiled with the following output:
398
128
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
399
129
 
400
- Run Build Command:"/usr/bin/make" "cmTC_b17a1/fast"
401
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_b17a1.dir/build.make CMakeFiles/cmTC_b17a1.dir/build
402
- Building C object CMakeFiles/cmTC_b17a1.dir/feature_tests.c.o
403
- /usr/bin/cc -fPIC -std=c99 -o CMakeFiles/cmTC_b17a1.dir/feature_tests.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
404
- Linking C executable cmTC_b17a1
405
- /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b17a1.dir/link.txt --verbose=1
406
- /usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_b17a1.dir/feature_tests.c.o -o cmTC_b17a1
130
+ Run Build Command:"/usr/bin/make" "cmTC_7cfa4/fast"
131
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_7cfa4.dir/build.make CMakeFiles/cmTC_7cfa4.dir/build
132
+ Building C object CMakeFiles/cmTC_7cfa4.dir/feature_tests.c.o
133
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -std=c99 -o CMakeFiles/cmTC_7cfa4.dir/feature_tests.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
134
+ Linking C executable cmTC_7cfa4
135
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7cfa4.dir/link.txt --verbose=1
136
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_7cfa4.dir/feature_tests.c.o -o cmTC_7cfa4
407
137
 
408
138
 
409
139
  Feature record: C_FEATURE:1c_function_prototypes
@@ -415,13 +145,13 @@ Linking C executable cmTC_b17a1
415
145
  Detecting C [-std=c90] compiler features compiled with the following output:
416
146
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
417
147
 
418
- Run Build Command:"/usr/bin/make" "cmTC_81a58/fast"
419
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_81a58.dir/build.make CMakeFiles/cmTC_81a58.dir/build
420
- Building C object CMakeFiles/cmTC_81a58.dir/feature_tests.c.o
421
- /usr/bin/cc -fPIC -std=c90 -o CMakeFiles/cmTC_81a58.dir/feature_tests.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
422
- Linking C executable cmTC_81a58
423
- /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_81a58.dir/link.txt --verbose=1
424
- /usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_81a58.dir/feature_tests.c.o -o cmTC_81a58
148
+ Run Build Command:"/usr/bin/make" "cmTC_6219d/fast"
149
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_6219d.dir/build.make CMakeFiles/cmTC_6219d.dir/build
150
+ Building C object CMakeFiles/cmTC_6219d.dir/feature_tests.c.o
151
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -std=c90 -o CMakeFiles/cmTC_6219d.dir/feature_tests.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.c
152
+ Linking C executable cmTC_6219d
153
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6219d.dir/link.txt --verbose=1
154
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_6219d.dir/feature_tests.c.o -o cmTC_6219d
425
155
 
426
156
 
427
157
  Feature record: C_FEATURE:1c_function_prototypes
@@ -431,30 +161,30 @@ Linking C executable cmTC_81a58
431
161
  Determining if the CXX compiler works passed with the following output:
432
162
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
433
163
 
434
- Run Build Command:"/usr/bin/make" "cmTC_527f2/fast"
435
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_527f2.dir/build.make CMakeFiles/cmTC_527f2.dir/build
436
- Building CXX object CMakeFiles/cmTC_527f2.dir/testCXXCompiler.cxx.o
437
- /usr/bin/c++ -o CMakeFiles/cmTC_527f2.dir/testCXXCompiler.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
438
- Linking CXX executable cmTC_527f2
439
- /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_527f2.dir/link.txt --verbose=1
440
- /usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_527f2.dir/testCXXCompiler.cxx.o -o cmTC_527f2
164
+ Run Build Command:"/usr/bin/make" "cmTC_e3042/fast"
165
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_e3042.dir/build.make CMakeFiles/cmTC_e3042.dir/build
166
+ Building CXX object CMakeFiles/cmTC_e3042.dir/testCXXCompiler.cxx.o
167
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -o CMakeFiles/cmTC_e3042.dir/testCXXCompiler.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
168
+ Linking CXX executable cmTC_e3042
169
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e3042.dir/link.txt --verbose=1
170
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_e3042.dir/testCXXCompiler.cxx.o -o cmTC_e3042
441
171
 
442
172
 
443
173
  Detecting CXX compiler ABI info compiled with the following output:
444
174
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
445
175
 
446
- Run Build Command:"/usr/bin/make" "cmTC_5f48e/fast"
447
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_5f48e.dir/build.make CMakeFiles/cmTC_5f48e.dir/build
448
- Building CXX object CMakeFiles/cmTC_5f48e.dir/CMakeCXXCompilerABI.cpp.o
449
- /usr/bin/c++ -o CMakeFiles/cmTC_5f48e.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/3.3.2/share/cmake/Modules/CMakeCXXCompilerABI.cpp
450
- Linking CXX executable cmTC_5f48e
451
- /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5f48e.dir/link.txt --verbose=1
452
- /usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_5f48e.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_5f48e
453
- Apple LLVM version 7.0.0 (clang-700.1.76)
454
- Target: x86_64-apple-darwin15.0.0
176
+ Run Build Command:"/usr/bin/make" "cmTC_0410b/fast"
177
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_0410b.dir/build.make CMakeFiles/cmTC_0410b.dir/build
178
+ Building CXX object CMakeFiles/cmTC_0410b.dir/CMakeCXXCompilerABI.cpp.o
179
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -o CMakeFiles/cmTC_0410b.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/3.3.2/share/cmake/Modules/CMakeCXXCompilerABI.cpp
180
+ Linking CXX executable cmTC_0410b
181
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0410b.dir/link.txt --verbose=1
182
+ /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_0410b.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_0410b
183
+ Apple LLVM version 7.0.2 (clang-700.1.81)
184
+ Target: x86_64-apple-darwin15.2.0
455
185
  Thread model: posix
456
- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.11.0 -o cmTC_5f48e -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_5f48e.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a
457
- @(#)PROGRAM:ld PROJECT:ld64-253.6
186
+ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld" -demangle -dynamic -arch x86_64 -macosx_version_min 10.11.0 -o cmTC_0410b -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_0410b.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.2/lib/darwin/libclang_rt.osx.a
187
+ @(#)PROGRAM:ld PROJECT:ld64-253.9
458
188
  configured to support archs: armv6 armv7 armv7s arm64 i386 x86_64 x86_64h armv6m armv7k armv7m armv7em (tvOS)
459
189
  Library search paths:
460
190
  /usr/lib
@@ -468,17 +198,17 @@ Parsed CXX implicit link information from above output:
468
198
  link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)]
469
199
  ignore line: [Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp]
470
200
  ignore line: []
471
- ignore line: [Run Build Command:"/usr/bin/make" "cmTC_5f48e/fast"]
472
- ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_5f48e.dir/build.make CMakeFiles/cmTC_5f48e.dir/build]
473
- ignore line: [Building CXX object CMakeFiles/cmTC_5f48e.dir/CMakeCXXCompilerABI.cpp.o]
474
- ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_5f48e.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/3.3.2/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
475
- ignore line: [Linking CXX executable cmTC_5f48e]
476
- ignore line: [/usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5f48e.dir/link.txt --verbose=1]
477
- ignore line: [/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names -v -Wl,-v CMakeFiles/cmTC_5f48e.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_5f48e ]
478
- ignore line: [Apple LLVM version 7.0.0 (clang-700.1.76)]
479
- ignore line: [Target: x86_64-apple-darwin15.0.0]
201
+ ignore line: [Run Build Command:"/usr/bin/make" "cmTC_0410b/fast"]
202
+ ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_0410b.dir/build.make CMakeFiles/cmTC_0410b.dir/build]
203
+ ignore line: [Building CXX object CMakeFiles/cmTC_0410b.dir/CMakeCXXCompilerABI.cpp.o]
204
+ ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -o CMakeFiles/cmTC_0410b.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/Cellar/cmake/3.3.2/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
205
+ ignore line: [Linking CXX executable cmTC_0410b]
206
+ ignore line: [/usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0410b.dir/link.txt --verbose=1]
207
+ 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_0410b.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_0410b ]
208
+ ignore line: [Apple LLVM version 7.0.2 (clang-700.1.81)]
209
+ ignore line: [Target: x86_64-apple-darwin15.2.0]
480
210
  ignore line: [Thread model: posix]
481
- 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_5f48e -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_5f48e.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a]
211
+ 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_0410b -search_paths_first -headerpad_max_install_names -v CMakeFiles/cmTC_0410b.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lSystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.2/lib/darwin/libclang_rt.osx.a]
482
212
  arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld] ==> ignore
483
213
  arg [-demangle] ==> ignore
484
214
  arg [-dynamic] ==> ignore
@@ -487,23 +217,23 @@ Parsed CXX implicit link information from above output:
487
217
  arg [-macosx_version_min] ==> ignore
488
218
  arg [10.11.0] ==> ignore
489
219
  arg [-o] ==> ignore
490
- arg [cmTC_5f48e] ==> ignore
220
+ arg [cmTC_0410b] ==> ignore
491
221
  arg [-search_paths_first] ==> ignore
492
222
  arg [-headerpad_max_install_names] ==> ignore
493
223
  arg [-v] ==> ignore
494
- arg [CMakeFiles/cmTC_5f48e.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
224
+ arg [CMakeFiles/cmTC_0410b.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
495
225
  arg [-lc++] ==> lib [c++]
496
226
  arg [-lSystem] ==> lib [System]
497
- arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a]
227
+ arg [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.2/lib/darwin/libclang_rt.osx.a] ==> lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.2/lib/darwin/libclang_rt.osx.a]
498
228
  Library search paths: [;/usr/lib;/usr/local/lib]
499
229
  Framework search paths: [;/Library/Frameworks/;/System/Library/Frameworks/]
500
230
  remove lib [System]
501
- collapse lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a] ==> [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a]
231
+ collapse lib [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/7.0.2/lib/darwin/libclang_rt.osx.a] ==> [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.0.2/lib/darwin/libclang_rt.osx.a]
502
232
  collapse library dir [/usr/lib] ==> [/usr/lib]
503
233
  collapse library dir [/usr/local/lib] ==> [/usr/local/lib]
504
234
  collapse framework dir [/Library/Frameworks/] ==> [/Library/Frameworks]
505
235
  collapse framework dir [/System/Library/Frameworks/] ==> [/System/Library/Frameworks]
506
- implicit libs: [c++;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.0.0/lib/darwin/libclang_rt.osx.a]
236
+ implicit libs: [c++;/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/7.0.2/lib/darwin/libclang_rt.osx.a]
507
237
  implicit dirs: [/usr/lib;/usr/local/lib]
508
238
  implicit fwks: [/Library/Frameworks;/System/Library/Frameworks]
509
239
 
@@ -513,13 +243,13 @@ Parsed CXX implicit link information from above output:
513
243
  Detecting CXX [-std=c++1y] compiler features compiled with the following output:
514
244
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
515
245
 
516
- Run Build Command:"/usr/bin/make" "cmTC_d0b4c/fast"
517
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_d0b4c.dir/build.make CMakeFiles/cmTC_d0b4c.dir/build
518
- Building CXX object CMakeFiles/cmTC_d0b4c.dir/feature_tests.cxx.o
519
- /usr/bin/c++ -std=c++1y -o CMakeFiles/cmTC_d0b4c.dir/feature_tests.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
520
- Linking CXX executable cmTC_d0b4c
521
- /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d0b4c.dir/link.txt --verbose=1
522
- /usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_d0b4c.dir/feature_tests.cxx.o -o cmTC_d0b4c
246
+ Run Build Command:"/usr/bin/make" "cmTC_6ff4a/fast"
247
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_6ff4a.dir/build.make CMakeFiles/cmTC_6ff4a.dir/build
248
+ Building CXX object CMakeFiles/cmTC_6ff4a.dir/feature_tests.cxx.o
249
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++1y -o CMakeFiles/cmTC_6ff4a.dir/feature_tests.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
250
+ Linking CXX executable cmTC_6ff4a
251
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6ff4a.dir/link.txt --verbose=1
252
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_6ff4a.dir/feature_tests.cxx.o -o cmTC_6ff4a
523
253
 
524
254
 
525
255
  Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers
@@ -584,13 +314,13 @@ Linking CXX executable cmTC_d0b4c
584
314
  Detecting CXX [-std=c++11] compiler features compiled with the following output:
585
315
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
586
316
 
587
- Run Build Command:"/usr/bin/make" "cmTC_355c6/fast"
588
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_355c6.dir/build.make CMakeFiles/cmTC_355c6.dir/build
589
- Building CXX object CMakeFiles/cmTC_355c6.dir/feature_tests.cxx.o
590
- /usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_355c6.dir/feature_tests.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
591
- Linking CXX executable cmTC_355c6
592
- /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_355c6.dir/link.txt --verbose=1
593
- /usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_355c6.dir/feature_tests.cxx.o -o cmTC_355c6
317
+ Run Build Command:"/usr/bin/make" "cmTC_2c09b/fast"
318
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_2c09b.dir/build.make CMakeFiles/cmTC_2c09b.dir/build
319
+ Building CXX object CMakeFiles/cmTC_2c09b.dir/feature_tests.cxx.o
320
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_2c09b.dir/feature_tests.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
321
+ Linking CXX executable cmTC_2c09b
322
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2c09b.dir/link.txt --verbose=1
323
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_2c09b.dir/feature_tests.cxx.o -o cmTC_2c09b
594
324
 
595
325
 
596
326
  Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
@@ -655,13 +385,13 @@ Linking CXX executable cmTC_355c6
655
385
  Detecting CXX [-std=c++98] compiler features compiled with the following output:
656
386
  Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
657
387
 
658
- Run Build Command:"/usr/bin/make" "cmTC_ef1f5/fast"
659
- /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_ef1f5.dir/build.make CMakeFiles/cmTC_ef1f5.dir/build
660
- Building CXX object CMakeFiles/cmTC_ef1f5.dir/feature_tests.cxx.o
661
- /usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_ef1f5.dir/feature_tests.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
662
- Linking CXX executable cmTC_ef1f5
663
- /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ef1f5.dir/link.txt --verbose=1
664
- /usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_ef1f5.dir/feature_tests.cxx.o -o cmTC_ef1f5
388
+ Run Build Command:"/usr/bin/make" "cmTC_3a81e/fast"
389
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_3a81e.dir/build.make CMakeFiles/cmTC_3a81e.dir/build
390
+ Building CXX object CMakeFiles/cmTC_3a81e.dir/feature_tests.cxx.o
391
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_3a81e.dir/feature_tests.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/feature_tests.cxx
392
+ Linking CXX executable cmTC_3a81e
393
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3a81e.dir/link.txt --verbose=1
394
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/cmTC_3a81e.dir/feature_tests.cxx.o -o cmTC_3a81e
665
395
 
666
396
 
667
397
  Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers
@@ -721,3 +451,108 @@ Linking CXX executable cmTC_ef1f5
721
451
  Feature record: CXX_FEATURE:0cxx_variable_templates
722
452
  Feature record: CXX_FEATURE:0cxx_variadic_macros
723
453
  Feature record: CXX_FEATURE:0cxx_variadic_templates
454
+ Performing C SOURCE FILE Test HAVE_FLAG_SANITIZE_ADDRESS succeded with the following output:
455
+ Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
456
+
457
+ Run Build Command:"/usr/bin/make" "cmTC_94be9/fast"
458
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_94be9.dir/build.make CMakeFiles/cmTC_94be9.dir/build
459
+ Building C object CMakeFiles/cmTC_94be9.dir/src.c.o
460
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -DHAVE_FLAG_SANITIZE_ADDRESS -Werror -fsanitize=address -fsanitize=address -o CMakeFiles/cmTC_94be9.dir/src.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
461
+ Linking C executable cmTC_94be9
462
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_94be9.dir/link.txt --verbose=1
463
+ /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_94be9.dir/src.c.o -o cmTC_94be9
464
+
465
+ Source file was:
466
+ int main(void) { return 0; }
467
+ Performing C++ SOURCE FILE Test COMPILER_HAS_HIDDEN_VISIBILITY succeded with the following output:
468
+ Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
469
+
470
+ Run Build Command:"/usr/bin/make" "cmTC_e2784/fast"
471
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_e2784.dir/build.make CMakeFiles/cmTC_e2784.dir/build
472
+ Building CXX object CMakeFiles/cmTC_e2784.dir/src.cxx.o
473
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_VISIBILITY -fvisibility=hidden -o CMakeFiles/cmTC_e2784.dir/src.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx
474
+ Linking CXX executable cmTC_e2784
475
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e2784.dir/link.txt --verbose=1
476
+ /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_e2784.dir/src.cxx.o -o cmTC_e2784
477
+
478
+ Source file was:
479
+ int main() { return 0; }
480
+ Performing C++ SOURCE FILE Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY succeded with the following output:
481
+ Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
482
+
483
+ Run Build Command:"/usr/bin/make" "cmTC_da4f8/fast"
484
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_da4f8.dir/build.make CMakeFiles/cmTC_da4f8.dir/build
485
+ Building CXX object CMakeFiles/cmTC_da4f8.dir/src.cxx.o
486
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_INLINE_VISIBILITY -fvisibility-inlines-hidden -o CMakeFiles/cmTC_da4f8.dir/src.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx
487
+ Linking CXX executable cmTC_da4f8
488
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_da4f8.dir/link.txt --verbose=1
489
+ /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_da4f8.dir/src.cxx.o -o cmTC_da4f8
490
+
491
+ Source file was:
492
+ int main() { return 0; }
493
+ Performing C++ SOURCE FILE Test COMPILER_HAS_DEPRECATED_ATTR succeded with the following output:
494
+ Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
495
+
496
+ Run Build Command:"/usr/bin/make" "cmTC_2f02a/fast"
497
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_2f02a.dir/build.make CMakeFiles/cmTC_2f02a.dir/build
498
+ Building CXX object CMakeFiles/cmTC_2f02a.dir/src.cxx.o
499
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_DEPRECATED_ATTR -o CMakeFiles/cmTC_2f02a.dir/src.cxx.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx
500
+ /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx:2:25: warning: 'somefunc' is deprecated [-Wdeprecated-declarations]
501
+ int main() { return somefunc();}
502
+ ^
503
+ /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.cxx:1:37: note: 'somefunc' has been explicitly marked deprecated here
504
+ __attribute__((__deprecated__)) int somefunc() { return 0; }
505
+ ^
506
+ 1 warning generated.
507
+ Linking CXX executable cmTC_2f02a
508
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2f02a.dir/link.txt --verbose=1
509
+ /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_2f02a.dir/src.cxx.o -o cmTC_2f02a
510
+
511
+ Source file was:
512
+ __attribute__((__deprecated__)) int somefunc() { return 0; }
513
+ int main() { return somefunc();}
514
+ Determining if the include file stdbool.h exists passed with the following output:
515
+ Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
516
+
517
+ Run Build Command:"/usr/bin/make" "cmTC_b5ee4/fast"
518
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_b5ee4.dir/build.make CMakeFiles/cmTC_b5ee4.dir/build
519
+ Building C object CMakeFiles/cmTC_b5ee4.dir/CheckIncludeFile.c.o
520
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -o CMakeFiles/cmTC_b5ee4.dir/CheckIncludeFile.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/CheckIncludeFile.c
521
+ Linking C executable cmTC_b5ee4
522
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b5ee4.dir/link.txt --verbose=1
523
+ /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_b5ee4.dir/CheckIncludeFile.c.o -o cmTC_b5ee4
524
+
525
+
526
+ Performing C SOURCE FILE Test HAVE___BUILTIN_EXPECT succeded with the following output:
527
+ Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
528
+
529
+ Run Build Command:"/usr/bin/make" "cmTC_d2c4d/fast"
530
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_d2c4d.dir/build.make CMakeFiles/cmTC_d2c4d.dir/build
531
+ Building C object CMakeFiles/cmTC_d2c4d.dir/src.c.o
532
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -DHAVE___BUILTIN_EXPECT -o CMakeFiles/cmTC_d2c4d.dir/src.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
533
+ /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]
534
+ int main() { __builtin_expect(0,0); return 0; }
535
+ ^~~~~~~~~~~~~~~~ ~~~
536
+ 1 warning generated.
537
+ Linking C executable cmTC_d2c4d
538
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d2c4d.dir/link.txt --verbose=1
539
+ /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_d2c4d.dir/src.c.o -o cmTC_d2c4d
540
+
541
+ Source file was:
542
+ int main() { __builtin_expect(0,0); return 0; }
543
+ Performing C SOURCE FILE Test HAVE___ATTRIBUTE__ succeded with the following output:
544
+ Change Dir: /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp
545
+
546
+ Run Build Command:"/usr/bin/make" "cmTC_3f1a5/fast"
547
+ /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_3f1a5.dir/build.make CMakeFiles/cmTC_3f1a5.dir/build
548
+ Building C object CMakeFiles/cmTC_3f1a5.dir/src.c.o
549
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -DHAVE___ATTRIBUTE__ -o CMakeFiles/cmTC_3f1a5.dir/src.c.o -c /Users/gjtorikian/Development/commonmarker/ext/commonmarker/cmark/build/CMakeFiles/CMakeTmp/src.c
550
+ Linking C executable cmTC_3f1a5
551
+ /usr/local/Cellar/cmake/3.3.2/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3f1a5.dir/link.txt --verbose=1
552
+ /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_3f1a5.dir/src.c.o -o cmTC_3f1a5
553
+
554
+ Source file was:
555
+
556
+ int f(void) __attribute__ (());
557
+ int main() { return 0; }
558
+