diff options
author | Andrey Skvortsov <andrej.skvortzov@gmail.com> | 2015-01-07 18:35:54 (GMT) |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2015-01-08 16:01:00 (GMT) |
commit | f5db310d77ef1742e40bfc303b8625584c55f9e3 (patch) | |
tree | 9d000015b33fc4ff18fb9b252490e8eb60f0a156 /tools | |
parent | 13e634de0955a2da84a7bf8584d103805b455cbb (diff) | |
download | linux-f5db310d77ef1742e40bfc303b8625584c55f9e3.tar.xz |
selftests/vm: fix link error for transhuge-stress test
add -lrt to fix undefined reference to `clock_gettime'
error seen when the test is compiled using gcc 4.6.4.
Signed-off-by: Andrey Skvortsov <andrej.skvortzov@gmail.com>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/vm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
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) |