mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 09:08:25 +00:00
samples: link RT for non-MacOS
This commit is contained in:
parent
1d85d1763d
commit
d37ae7364a
1 changed files with 6 additions and 1 deletions
|
@ -13,8 +13,13 @@ AR_EXT = a
|
|||
V ?= 0
|
||||
|
||||
CFLAGS += -Wall -Werror -I../include
|
||||
|
||||
LDFLAGS += -L$(LIBDIR) -lunicorn -lpthread -lm
|
||||
LDLIBS += -lrt -lpthread -lunicorn -lm
|
||||
ifneq ($(UNAME_S), Darwin)
|
||||
LDFLAGS += -lrt
|
||||
endif
|
||||
|
||||
LDLIBS += -lpthread -lunicorn -lm
|
||||
|
||||
ifneq ($(CROSS),)
|
||||
CC = $(CROSS)gcc
|
||||
|
|
Loading…
Reference in a new issue