Commit b56a1fa 1 parent 58c1bf4 commit b56a1fa Copy full SHA for b56a1fa
File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 26
26
cd build
27
27
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build }} ..
28
28
cmake --build . --config ${{ matrix.build }}
29
+ echo "----------------------------------------------------"
30
+ echo "Build Files:"
31
+ ls -laR
32
+ echo "----------------------------------------------------"
29
33
ctest -VV -C ${{ matrix.build }}
Original file line number Diff line number Diff line change @@ -29,10 +29,13 @@ set(CMAKE_VERBOSE_MAKEFILE ON)
29
29
# ==12635== by 0x4896564: (below main) (libc-start.c:332)
30
30
string (REGEX MATCH "Linux" PROJECT_OS_LINUX ${CMAKE_SYSTEM_NAME} )
31
31
32
- if (PROJECT_OS_LINUX)
33
32
# Use -O2 by now until we can find why string_function is NULL
33
+ if (PROJECT_OS_LINUX)
34
34
set (CMAKE_C_FLAGS_RELEASE "-O2" )
35
35
set (CMAKE_CXX_FLAGS_RELEASE "-O2" )
36
+ elseif (WIN32 )
37
+ set (CMAKE_C_FLAGS_RELEASE "/O1" )
38
+ set (CMAKE_CXX_FLAGS_RELEASE "/O1" )
36
39
endif ()
37
40
38
41
# Default build type
You can’t perform that action at this time.
0 commit comments