diff options
author | Jiri Olsa <jolsa@kernel.org> | 2017-09-08 04:46:19 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-09-12 11:34:14 -0400 |
commit | 58b79186c34306f4a14e98119afc10744a42fa40 (patch) | |
tree | 11e3878cf876832e01bae375bd6ad737e68782f5 /tools | |
parent | df90cc41d662ad5f700afc042df43e57ce1ed0a4 (diff) |
tools lib api: Fix make DEBUG=1 build
Do not use -D_FORTIFY_SOURCE=2 for DEBUG build as it seems to mess up
with debuginfo, which results in bad gdb experience.
We already do that for tools/perf/.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/20170908084621.31595-1-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/lib/api/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/lib/api/Makefile b/tools/lib/api/Makefile index 4563ba7ede6f..1e83e3c07448 100644 --- a/tools/lib/api/Makefile +++ b/tools/lib/api/Makefile | |||
@@ -17,13 +17,19 @@ MAKEFLAGS += --no-print-directory | |||
17 | LIBFILE = $(OUTPUT)libapi.a | 17 | LIBFILE = $(OUTPUT)libapi.a |
18 | 18 | ||
19 | CFLAGS := $(EXTRA_WARNINGS) $(EXTRA_CFLAGS) | 19 | CFLAGS := $(EXTRA_WARNINGS) $(EXTRA_CFLAGS) |
20 | CFLAGS += -ggdb3 -Wall -Wextra -std=gnu99 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fPIC | 20 | CFLAGS += -ggdb3 -Wall -Wextra -std=gnu99 -U_FORTIFY_SOURCE -fPIC |
21 | 21 | ||
22 | ifeq ($(DEBUG),0) | ||
22 | ifeq ($(CC_NO_CLANG), 0) | 23 | ifeq ($(CC_NO_CLANG), 0) |
23 | CFLAGS += -O3 | 24 | CFLAGS += -O3 |
24 | else | 25 | else |
25 | CFLAGS += -O6 | 26 | CFLAGS += -O6 |
26 | endif | 27 | endif |
28 | endif | ||
29 | |||
30 | ifeq ($(DEBUG),0) | ||
31 | CFLAGS += -D_FORTIFY_SOURCE | ||
32 | endif | ||
27 | 33 | ||
28 | # Treat warnings as errors unless directed not to | 34 | # Treat warnings as errors unless directed not to |
29 | ifneq ($(WERROR),0) | 35 | ifneq ($(WERROR),0) |