samples: link RT for non-MacOS

This commit is contained in:
Nguyen Anh Quynh 2016-12-24 15:04:34 +08:00
parent 1d85d1763d
commit d37ae7364a

View File

@ -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