From 14fe73fbc211424eb2a6d45aa880165cf2a60e71 Mon Sep 17 00:00:00 2001 From: Trithilon Date: Sat, 20 Aug 2022 17:14:53 +0530 Subject: [PATCH] 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 --- examples/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Makefile b/examples/Makefile index a977412ed..3165c225b 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -310,7 +310,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) ifeq ($(PLATFORM_OS),LINUX) # Libraries for Debian GNU/Linux desktop compiling # 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 LDLIBS += -lX11