[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1420655754-10076-1-git-send-email-Andrej.Skvortzov@gmail.com>
Date: Wed, 7 Jan 2015 21:35:54 +0300
From: Andrey Skvortsov <andrej.skvortzov@...il.com>
To: Shuah Khan <shuahkh@....samsung.com>,
Andrew Morton <akpm@...ux-foundation.org>,
Konstantin Khlebnikov <koct9i@...il.com>,
linux-api@...r.kernel.org, linux-kernel@...r.kernel.org
Cc: Andrey Skvortsov <andrej.skvortzov@...il.com>
Subject: [PATCH] selftests/vm: fix link error for transhuge-stress test
add -lrt to fix undefined reference to `clock_gettime'
Signed-off-by: Andrey Skvortsov <andrej.skvortzov@...il.com>
---
tools/testing/selftests/vm/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/testing/selftests/vm/Makefile b/tools/testing/selftests/vm/Makefile
index 4c4b1f6..077828c 100644
--- a/tools/testing/selftests/vm/Makefile
+++ b/tools/testing/selftests/vm/Makefile
@@ -7,7 +7,7 @@ BINARIES += transhuge-stress
all: $(BINARIES)
%: %.c
- $(CC) $(CFLAGS) -o $@ $^
+ $(CC) $(CFLAGS) -o $@ $^ -lrt
run_tests: all
@/bin/sh ./run_vmtests || (echo "vmtests: [FAIL]"; exit 1)
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists