Fix #17068: Compiling on armel or mipsel requires -latomic flag (#17146)

Co-authored-by: Mathias Gibbens <mathias@calenhad.com>
This commit is contained in:
Mathias Gibbens 2022-05-04 22:21:36 +00:00 committed by GitHub
parent 33d1dad80a
commit 1699409392
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -4,6 +4,7 @@
- Fix: [#16934] Park size displayed incorrectly in Park window.
- Fix: [#16974] Small scenery ghosts can be deleted.
- Fix: [#17005] Unable to set patrol area for first staff member in park.
- Fix: [#17068] Compiling on armel or mipsel requires -latomic flag
- Fix: [#17073] Corrupt ride window and random crashes when trains have more than 144 cars.
- Fix: [#17080] “Remove litter” cheat does not empty litter bins.
- Fix: [#17099] Object selection thumbnail box is one pixel too tall.

View File

@ -272,3 +272,8 @@ else ()
# Dummy target to ease invocation
add_custom_target(${PROJECT_NAME}-headers-check)
endif ()
# armel and mipsel builds need to explicitly link in libatomic
if (UNIX AND NOT APPLE)
target_link_libraries(${PROJECT_NAME} atomic)
endif()