make sure pthread and atomic isnt called in macOS

This commit is contained in:
iceman1001 2023-09-16 09:51:47 +02:00
parent 22d7adf0c0
commit c73de57320

View file

@ -12,13 +12,11 @@ INSTALLTOOLS = $(BINS)
include ../../Makefile.host
# checking platform can be done only after Makefile.host
# Atomic
# Atomic / pThread
# RPi Zero gcc requires -latomic
MYLDLIBS += -latomic
# macOS might not like pthread?
ifneq ($(platform),Darwin)
MYLDLIBS += -lpthread
MYLDLIBS += -lpthread -latomic
endif
# macOS needs c++14 standard when compiling c++