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.
- checksums.yaml +4 -4
- data/README.md +6 -1
- data/Rakefile +3 -3
- data/ext/commonmarker/cmark/build/CMakeCache.txt +8 -8
- data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CMakeCCompiler.cmake +0 -0
- data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CMakeCXXCompiler.cmake +0 -0
- data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CMakeDetermineCompilerABI_C.bin +0 -0
- data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CMakeDetermineCompilerABI_CXX.bin +0 -0
- data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CMakeSystem.cmake +0 -0
- data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CompilerIdC/CMakeCCompilerId.c +0 -0
- data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CompilerIdC/a.out +0 -0
- data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -0
- data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CompilerIdCXX/a.out +0 -0
- data/ext/commonmarker/cmark/build/CMakeFiles/CMakeError.log +6 -6
- data/ext/commonmarker/cmark/build/CMakeFiles/CMakeOutput.log +143 -143
- data/ext/commonmarker/cmark/build/CMakeFiles/Makefile.cmake +106 -106
- data/ext/commonmarker/cmark/build/CMakeFiles/Makefile2 +2 -2
- data/ext/commonmarker/cmark/build/Makefile +9 -9
- data/ext/commonmarker/cmark/build/api_test/CMakeFiles/api_test.dir/build.make +2 -2
- data/ext/commonmarker/cmark/build/api_test/Makefile +9 -9
- data/ext/commonmarker/cmark/build/man/Makefile +9 -9
- data/ext/commonmarker/cmark/build/src/CMakeFiles/cmark.dir/build.make +2 -2
- data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark.dir/build.make +2 -2
- data/ext/commonmarker/cmark/build/src/CMakeFiles/libcmark_static.dir/build.make +2 -2
- data/ext/commonmarker/cmark/build/src/Makefile +9 -9
- data/ext/commonmarker/cmark/build/src/libcmark.a +0 -0
- data/ext/commonmarker/cmark/build/testdir/Makefile +9 -9
- data/ext/commonmarker/commonmarker.c +579 -662
- data/ext/commonmarker/commonmarker.c.orig +1041 -0
- data/ext/commonmarker/commonmarker.h +1 -1
- data/lib/commonmarker.rb +1 -32
- data/lib/commonmarker/node.rb +45 -0
- data/lib/commonmarker/renderer.rb +2 -2
- data/lib/commonmarker/version.rb +1 -1
- data/test/test_basics.rb +1 -40
- data/test/test_node.rb +78 -0
- data/test/test_renderer.rb +13 -0
- metadata +17 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 02188cf20d16faac4108425bc70f059b8d349daf
|
4
|
+
data.tar.gz: e1b6ef9157866e47865fec0a1571d7747bc3a0dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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 :
|
58
|
-
sh '
|
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.
|
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=
|
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.
|
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.
|
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.
|
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.
|
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.
|
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
|
File without changes
|
File without changes
|
data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CMakeDetermineCompilerABI_C.bin
RENAMED
File without changes
|
data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CMakeDetermineCompilerABI_CXX.bin
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/ext/commonmarker/cmark/build/CMakeFiles/{3.5.1 → 3.5.2}/CompilerIdCXX/CMakeCXXCompilerId.cpp
RENAMED
File without changes
|
File without changes
|
@@ -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" "
|
5
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
6
|
-
Building C object CMakeFiles/
|
7
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -DHAVE_FLAG_ADDRESS_SANITIZER -Werror -faddress-sanitizer -faddress-sanitizer -o CMakeFiles/
|
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/
|
11
|
-
make: *** [
|
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.
|
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.
|
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" "
|
32
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
33
|
-
Building C object CMakeFiles/
|
34
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -o CMakeFiles/
|
35
|
-
Linking C executable
|
36
|
-
/usr/local/Cellar/cmake/3.5.
|
37
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/
|
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" "
|
44
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
45
|
-
Building C object CMakeFiles/
|
46
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -o CMakeFiles/
|
47
|
-
Linking C executable
|
48
|
-
/usr/local/Cellar/cmake/3.5.
|
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/
|
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
|
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" "
|
70
|
-
ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
71
|
-
ignore line: [Building C object CMakeFiles/
|
72
|
-
ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -o CMakeFiles/
|
73
|
-
ignore line: [Linking C executable
|
74
|
-
ignore line: [/usr/local/Cellar/cmake/3.5.
|
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/
|
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
|
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 [
|
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/
|
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" "
|
115
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
116
|
-
Building C object CMakeFiles/
|
117
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -std=c11 -o CMakeFiles/
|
118
|
-
Linking C executable
|
119
|
-
/usr/local/Cellar/cmake/3.5.
|
120
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/
|
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" "
|
133
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
134
|
-
Building C object CMakeFiles/
|
135
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -std=c99 -o CMakeFiles/
|
136
|
-
Linking C executable
|
137
|
-
/usr/local/Cellar/cmake/3.5.
|
138
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/
|
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" "
|
151
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
152
|
-
Building C object CMakeFiles/
|
153
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -std=c90 -o CMakeFiles/
|
154
|
-
Linking C executable
|
155
|
-
/usr/local/Cellar/cmake/3.5.
|
156
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/
|
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" "
|
167
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
168
|
-
Building CXX object CMakeFiles/
|
169
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -o CMakeFiles/
|
170
|
-
Linking CXX executable
|
171
|
-
/usr/local/Cellar/cmake/3.5.
|
172
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/
|
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" "
|
179
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
180
|
-
Building CXX object CMakeFiles/
|
181
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -o CMakeFiles/
|
182
|
-
Linking CXX executable
|
183
|
-
/usr/local/Cellar/cmake/3.5.
|
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/
|
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
|
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" "
|
205
|
-
ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
206
|
-
ignore line: [Building CXX object CMakeFiles/
|
207
|
-
ignore line: [/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -o CMakeFiles/
|
208
|
-
ignore line: [Linking CXX executable
|
209
|
-
ignore line: [/usr/local/Cellar/cmake/3.5.
|
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/
|
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
|
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 [
|
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/
|
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" "
|
251
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
252
|
-
Building CXX object CMakeFiles/
|
253
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++14 -o CMakeFiles/
|
254
|
-
Linking CXX executable
|
255
|
-
/usr/local/Cellar/cmake/3.5.
|
256
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/
|
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" "
|
322
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
323
|
-
Building CXX object CMakeFiles/
|
324
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++11 -o CMakeFiles/
|
325
|
-
Linking CXX executable
|
326
|
-
/usr/local/Cellar/cmake/3.5.
|
327
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/
|
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" "
|
393
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
394
|
-
Building CXX object CMakeFiles/
|
395
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -std=c++98 -o CMakeFiles/
|
396
|
-
Linking CXX executable
|
397
|
-
/usr/local/Cellar/cmake/3.5.
|
398
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -Wl,-search_paths_first -Wl,-headerpad_max_install_names CMakeFiles/
|
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" "
|
462
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
463
|
-
Building C object CMakeFiles/
|
464
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -DHAVE_FLAG_SANITIZE_ADDRESS -Werror -fsanitize=address -fsanitize=address -o CMakeFiles/
|
465
|
-
Linking C executable
|
466
|
-
/usr/local/Cellar/cmake/3.5.
|
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/
|
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" "
|
475
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
476
|
-
Building CXX object CMakeFiles/
|
477
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_VISIBILITY -fvisibility=hidden -o CMakeFiles/
|
478
|
-
Linking CXX executable
|
479
|
-
/usr/local/Cellar/cmake/3.5.
|
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/
|
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" "
|
488
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
489
|
-
Building CXX object CMakeFiles/
|
490
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_HIDDEN_INLINE_VISIBILITY -fvisibility-inlines-hidden -o CMakeFiles/
|
491
|
-
Linking CXX executable
|
492
|
-
/usr/local/Cellar/cmake/3.5.
|
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/
|
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" "
|
501
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
502
|
-
Building CXX object CMakeFiles/
|
503
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ -DCOMPILER_HAS_DEPRECATED_ATTR -o CMakeFiles/
|
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
|
512
|
-
/usr/local/Cellar/cmake/3.5.
|
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/
|
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" "
|
522
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
523
|
-
Building C object CMakeFiles/
|
524
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -o CMakeFiles/
|
525
|
-
Linking C executable
|
526
|
-
/usr/local/Cellar/cmake/3.5.
|
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/
|
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" "
|
534
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
535
|
-
Building C object CMakeFiles/
|
536
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -DHAVE___BUILTIN_EXPECT -o CMakeFiles/
|
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
|
542
|
-
/usr/local/Cellar/cmake/3.5.
|
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/
|
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" "
|
551
|
-
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/
|
552
|
-
Building C object CMakeFiles/
|
553
|
-
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -fvisibility=hidden -DHAVE___ATTRIBUTE__ -o CMakeFiles/
|
554
|
-
Linking C executable
|
555
|
-
/usr/local/Cellar/cmake/3.5.
|
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/
|
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
|
|