File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -41,12 +41,12 @@ jobs:
4141 -B build \
4242 -G Ninja \
4343 -DCMAKE_BUILD_TYPE=Release \
44- -DM68K_COMMON="-s -fbbb=- - ffast-math" \
44+ -DM68K_COMMON="-s -ffast-math" \
4545 -DM68K_CPU=68040 \
4646 -DM68K_FPU=hard
4747
4848 - name : Build DevilutionX
49- run : cmake --build build
49+ run : cmake --build build --verbose
5050
5151 - name : Upload Package
5252 if : ${{ !env.ACT }}
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ set(SDL1_VIDEO_MODE_BPP 8)
88set (DEVILUTIONX_SYSTEM_BZIP2 OFF )
99set (DEVILUTIONX_SYSTEM_ZLIB OFF )
1010
11- # Lower the optimization level to O2 because there are issues with O3.
12- set (CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE } -O2 " )
13- set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE } -O2 " )
11+ # Lower the optimization level to O1 because there are issues with O2 and O3.
12+ set (CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE } -O1 " )
13+ set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE } -O1 " )
1414
1515# `fseeko` fails to link on Amiga.
1616add_definitions (-Dfseeko=fseek )
You can’t perform that action at this time.
0 commit comments