Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnDTill committed Nov 7, 2024
1 parent 085894f commit d251193
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/source_instructions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pip3 install -v "conan==1.65.0"
git clone https://github.com/JohnDTill/Forscape
cd ./Forscape
conan install --generator cmake_find_package --install-folder ./build/conan-dependencies ./app
cmake -DCMAKE_BUILD_TYPE=Debug -B build -S app
cmake -DCMAKE_BUILD_TYPE=Release -B build -S app
cd build
make

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/source_instructions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jobs:
- id: build
run: sudo ${GITHUB_WORKSPACE}/.github/workflows/source_instructions.sh
- id: run # This verifies there are no missing runtime dependencies
run: cd ${GITHUB_WORKSPACE}/.github/workflows/build && ${GITHUB_WORKSPACE}/.github/workflows/app_run_and_check_exit_code.sh
run: cd ${GITHUB_WORKSPACE}/.github/workflows/Forscape/build && ${GITHUB_WORKSPACE}/.github/workflows/app_run_and_check_exit_code.sh
2 changes: 1 addition & 1 deletion app/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
$<$<CONFIG:Debug>:-O1> #Need optimisation for MinGW to compile w/ Eigen unsupported
-Wall -Wextra -pedantic #-Werror #EVENTUALLY: address warnings
$<$<CONFIG:Release>: -Ofast -fmodulo-sched -fmodulo-sched-allow-regmoves -fgcse-sm -fgcse-las -fdelete-null-pointer-checks
-fomit-frame-pointer -funroll-loops -fvisibility=hidden -fwhole-program -flto>
-fomit-frame-pointer -funroll-loops -fvisibility=hidden> #-fwhole-program -flto
)
target_link_options(Forscape PRIVATE
-Wa,-mbig-obj
Expand Down

0 comments on commit d251193

Please sign in to comment.