Fixed missing -latomic compilation on RPI OS desktop

Without this, you will be unable to compile for PLATFORM_DESKTOP on RPI OS Desktop on RPi 0-3
This commit is contained in:
Trithilon 2022-08-20 17:14:53 +05:30
parent 35c777ef2c
commit 14fe73fbc2

View File

@ -310,7 +310,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),LINUX) ifeq ($(PLATFORM_OS),LINUX)
# Libraries for Debian GNU/Linux desktop compiling # Libraries for Debian GNU/Linux desktop compiling
# NOTE: Required packages: libegl1-mesa-dev # NOTE: Required packages: libegl1-mesa-dev
LDLIBS = -lraylib -lGL -lm -lpthread -ldl -lrt LDLIBS = -lraylib -lGL -lm -lpthread -ldl -lrt -latomic
# On X11 requires also below libraries # On X11 requires also below libraries
LDLIBS += -lX11 LDLIBS += -lX11