From 0eaf058a4ff94c81bfa330d95ebbd7f4dfb48e07 Mon Sep 17 00:00:00 2001 From: Balazs Gerofi Date: Sat, 12 Mar 2016 05:24:14 +0900 Subject: [PATCH] mcexec: -lrt to Makefile.in for supporting clock_gettime() on SUSE --- executer/user/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/executer/user/Makefile.in b/executer/user/Makefile.in index e784df2e..0b3083d3 100644 --- a/executer/user/Makefile.in +++ b/executer/user/Makefile.in @@ -8,7 +8,7 @@ TARGET=mcexec all: $(TARGET) mcexec: mcexec.c - $(CC) -I${KDIR} $(CFLAGS) $(EXTRA_CFLAGS) -pthread -o $@ $^ $(EXTRA_OBJS) + $(CC) -I${KDIR} $(CFLAGS) $(EXTRA_CFLAGS) -lrt -pthread -o $@ $^ $(EXTRA_OBJS) clean: $(RM) $(TARGET) *.o