This repository was archived by the owner on Mar 1, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 51
51
- name : macOS Clang
52
52
os : macos-latest
53
53
compiler : clang
54
+ cmake-args : --debug-output
54
55
55
56
- name : macOS GCC
56
57
os : macos-latest
72
73
CFLAGS : ${{ matrix.cflags }}
73
74
74
75
- name : Compile source code
75
- run : cmake --build ${{ matrix.build-dir || '.' }} --config ${{ matrix.build-config || 'Release' }}
76
+ run : VERBOSE=1 cmake --build ${{ matrix.build-dir || '.' }} --config ${{ matrix.build-config || 'Release' }}
76
77
77
78
- name : Run test cases
78
79
run : ctest -C Release --output-on-failure --max-width 120
Original file line number Diff line number Diff line change @@ -127,7 +127,8 @@ set(ZLIB_SRCS
127
127
zutil.c
128
128
)
129
129
130
- if (CMAKE_C_COMPILER_ID STREQUAL "GNU" OR CMAKE_C_COMPILER_ID STREQUAL "Clang" )
130
+ if (CMAKE_C_COMPILER_ID STREQUAL "GNU" OR CMAKE_C_COMPILER_ID STREQUAL "Clang"
131
+ OR CMAKE_C_COMPILER_ID STREQUAL "AppleClang" )
131
132
set_source_files_properties (crc_folding.c PROPERTIES COMPILE_OPTIONS "-mpclmul;-msse4" )
132
133
set_source_files_properties (slide_sse.c PROPERTIES COMPILE_OPTIONS -msse2 )
133
134
set_source_files_properties (deflate_quick.c PROPERTIES COMPILE_OPTIONS -msse4 )
You can’t perform that action at this time.
0 commit comments