aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/config/feature-checks/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/config/feature-checks/Makefile')
-rw-r--r--tools/perf/config/feature-checks/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/perf/config/feature-checks/Makefile b/tools/perf/config/feature-checks/Makefile
index 6a42ad24d64f..7538c148b40c 100644
--- a/tools/perf/config/feature-checks/Makefile
+++ b/tools/perf/config/feature-checks/Makefile
@@ -1,6 +1,7 @@
1 1
2FILES= \ 2FILES= \
3 test-hello \ 3 test-hello \
4 test-stackprotector-all \
4 test-libnuma 5 test-libnuma
5 6
6CC := $(CC) -MD 7CC := $(CC) -MD
@@ -14,6 +15,9 @@ BUILD = $(CC) -o $(OUTPUT)$@ $@.c
14test-hello: 15test-hello:
15 $(BUILD) 16 $(BUILD)
16 17
18test-stackprotector-all:
19 $(BUILD) -Werror -fstack-protector-all
20
17test-libnuma: 21test-libnuma:
18 $(BUILD) -lnuma 22 $(BUILD) -lnuma
19 23