1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Link to libatomic for arm-linux-gnueabihf library architecture

This commit is contained in:
busybu2
2025-03-16 21:27:09 +00:00
committed by GitHub
parent 1ccfd0e2e6
commit 70302be7d0
2 changed files with 6 additions and 0 deletions

View File

@@ -11,6 +11,7 @@
- Fix: [#23486] Object selection minimum requirements can be bypassed with close window hotkey.
- Fix: [#23743] Parks with guest goals over 32767 do not appear in the scenario list.
- Fix: [#23844] Sound effects keep playing when loading another save.
- Fix: [#23881] Compiling on Raspbian/arm-linux-gnueabihf fails.
- Fix: [#23891] Inverted Hairpin Coaster track can draw over things above it (original bug).
- Fix: [#23892] Gentle banked Wooden Roller Coaster track glitches as trains pass (original bug).
- Fix: [#23897] Reverse Freefall Coaster slope up to vertical track piece does not draw a vertical tunnel.

View File

@@ -288,3 +288,8 @@ endif ()
if (UNIX)
add_definitions(-D_FILE_OFFSET_BITS=64)
endif ()
if (CMAKE_LIBRARY_ARCHITECTURE MATCHES "arm-linux-gnueabihf")
message(STATUS "Linking to armhf libs; adding libatomic")
target_link_libraries(${PROJECT_NAME} atomic)
endif()