|
@@ -26,7 +26,6 @@ FILES= \
|
|
|
test-libunwind-debug-frame \
|
|
|
test-on-exit \
|
|
|
test-stackprotector-all \
|
|
|
- test-stackprotector \
|
|
|
test-timerfd
|
|
|
|
|
|
CC := $(CC) -MD
|
|
@@ -38,7 +37,7 @@ BUILD = $(CC) $(CFLAGS) $(LDFLAGS) -o $(OUTPUT)$@ $@.c
|
|
|
###############################
|
|
|
|
|
|
test-all:
|
|
|
- $(BUILD) -Werror -fstack-protector -fstack-protector-all -O2 -Werror -D_FORTIFY_SOURCE=2 -ldw -lelf -lnuma $(LIBUNWIND_LIBS) -lelf -laudit -I/usr/include/slang -lslang $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null) $(FLAGS_PERL_EMBED) $(FLAGS_PYTHON_EMBED) -DPACKAGE='"perf"' -lbfd -ldl
|
|
|
+ $(BUILD) -Werror -fstack-protector-all -O2 -Werror -D_FORTIFY_SOURCE=2 -ldw -lelf -lnuma $(LIBUNWIND_LIBS) -lelf -laudit -I/usr/include/slang -lslang $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null) $(FLAGS_PERL_EMBED) $(FLAGS_PYTHON_EMBED) -DPACKAGE='"perf"' -lbfd -ldl
|
|
|
|
|
|
test-hello:
|
|
|
$(BUILD)
|
|
@@ -46,9 +45,6 @@ test-hello:
|
|
|
test-stackprotector-all:
|
|
|
$(BUILD) -Werror -fstack-protector-all
|
|
|
|
|
|
-test-stackprotector:
|
|
|
- $(BUILD) -Werror -fstack-protector -Wstack-protector
|
|
|
-
|
|
|
test-fortify-source:
|
|
|
$(BUILD) -O2 -Werror -D_FORTIFY_SOURCE=2
|
|
|
|