diff options
Diffstat (limited to 'tools/perf/config/feature-checks/Makefile')
-rw-r--r-- | tools/perf/config/feature-checks/Makefile | 4 |
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 | ||
2 | FILES= \ | 2 | FILES= \ |
3 | test-hello \ | 3 | test-hello \ |
4 | test-stackprotector-all \ | ||
4 | test-libnuma | 5 | test-libnuma |
5 | 6 | ||
6 | CC := $(CC) -MD | 7 | CC := $(CC) -MD |
@@ -14,6 +15,9 @@ BUILD = $(CC) -o $(OUTPUT)$@ $@.c | |||
14 | test-hello: | 15 | test-hello: |
15 | $(BUILD) | 16 | $(BUILD) |
16 | 17 | ||
18 | test-stackprotector-all: | ||
19 | $(BUILD) -Werror -fstack-protector-all | ||
20 | |||
17 | test-libnuma: | 21 | test-libnuma: |
18 | $(BUILD) -lnuma | 22 | $(BUILD) -lnuma |
19 | 23 | ||