From 2b19b14d343bdf89c32b410f82b9083ffff1c2be Mon Sep 17 00:00:00 2001 From: Duncan Date: Sat, 7 May 2022 08:14:43 +0100 Subject: [PATCH] Revert "Fix #17068: Compiling on armel or mipsel requires -latomic flag (#17146)" (#17168) This reverts commit 1699409392c5c16578da47364a1078ba9589077d. --- distribution/changelog.txt | 1 - src/openrct2/CMakeLists.txt | 5 ----- 2 files changed, 6 deletions(-) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index a838015af9..3017593365 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -4,7 +4,6 @@ - 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. diff --git a/src/openrct2/CMakeLists.txt b/src/openrct2/CMakeLists.txt index e6ed92d645..b07a5e0c77 100644 --- a/src/openrct2/CMakeLists.txt +++ b/src/openrct2/CMakeLists.txt @@ -272,8 +272,3 @@ 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()