Commit 55542113 authored by Jiri Olsa's avatar Jiri Olsa Committed by Arnaldo Carvalho de Melo

perf tools: Propagate CFLAGS to libperf

Andi reported that 'make DEBUG=1' does not propagate to the libbperf
code. It's true also for the other flags. Changing the code to propagate
the global build flags to libperf compilation.
Reported-by: default avatarAndi Kleen <ak@linux.intel.com>
Signed-off-by: default avatarJiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lore.kernel.org/lkml/20191011122155.15738-1-jolsa@kernel.orgSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 84227cb1
...@@ -188,7 +188,7 @@ endif ...@@ -188,7 +188,7 @@ endif
# Treat warnings as errors unless directed not to # Treat warnings as errors unless directed not to
ifneq ($(WERROR),0) ifneq ($(WERROR),0)
CFLAGS += -Werror CORE_CFLAGS += -Werror
CXXFLAGS += -Werror CXXFLAGS += -Werror
endif endif
...@@ -198,9 +198,9 @@ endif ...@@ -198,9 +198,9 @@ endif
ifeq ($(DEBUG),0) ifeq ($(DEBUG),0)
ifeq ($(CC_NO_CLANG), 0) ifeq ($(CC_NO_CLANG), 0)
CFLAGS += -O3 CORE_CFLAGS += -O3
else else
CFLAGS += -O6 CORE_CFLAGS += -O6
endif endif
endif endif
...@@ -245,12 +245,12 @@ FEATURE_CHECK_LDFLAGS-libaio = -lrt ...@@ -245,12 +245,12 @@ FEATURE_CHECK_LDFLAGS-libaio = -lrt
FEATURE_CHECK_LDFLAGS-disassembler-four-args = -lbfd -lopcodes -ldl FEATURE_CHECK_LDFLAGS-disassembler-four-args = -lbfd -lopcodes -ldl
CFLAGS += -fno-omit-frame-pointer CORE_CFLAGS += -fno-omit-frame-pointer
CFLAGS += -ggdb3 CORE_CFLAGS += -ggdb3
CFLAGS += -funwind-tables CORE_CFLAGS += -funwind-tables
CFLAGS += -Wall CORE_CFLAGS += -Wall
CFLAGS += -Wextra CORE_CFLAGS += -Wextra
CFLAGS += -std=gnu99 CORE_CFLAGS += -std=gnu99
CXXFLAGS += -std=gnu++11 -fno-exceptions -fno-rtti CXXFLAGS += -std=gnu++11 -fno-exceptions -fno-rtti
CXXFLAGS += -Wall CXXFLAGS += -Wall
...@@ -272,12 +272,12 @@ include $(FEATURES_DUMP) ...@@ -272,12 +272,12 @@ include $(FEATURES_DUMP)
endif endif
ifeq ($(feature-stackprotector-all), 1) ifeq ($(feature-stackprotector-all), 1)
CFLAGS += -fstack-protector-all CORE_CFLAGS += -fstack-protector-all
endif endif
ifeq ($(DEBUG),0) ifeq ($(DEBUG),0)
ifeq ($(feature-fortify-source), 1) ifeq ($(feature-fortify-source), 1)
CFLAGS += -D_FORTIFY_SOURCE=2 CORE_CFLAGS += -D_FORTIFY_SOURCE=2
endif endif
endif endif
...@@ -301,10 +301,12 @@ INC_FLAGS += -I$(src-perf)/util ...@@ -301,10 +301,12 @@ INC_FLAGS += -I$(src-perf)/util
INC_FLAGS += -I$(src-perf) INC_FLAGS += -I$(src-perf)
INC_FLAGS += -I$(srctree)/tools/lib/ INC_FLAGS += -I$(srctree)/tools/lib/
CFLAGS += $(INC_FLAGS) CORE_CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE
CFLAGS += $(CORE_CFLAGS) $(INC_FLAGS)
CXXFLAGS += $(INC_FLAGS) CXXFLAGS += $(INC_FLAGS)
CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE LIBPERF_CFLAGS := $(CORE_CFLAGS) $(EXTRA_CFLAGS)
ifeq ($(feature-sync-compare-and-swap), 1) ifeq ($(feature-sync-compare-and-swap), 1)
CFLAGS += -DHAVE_SYNC_COMPARE_AND_SWAP_SUPPORT CFLAGS += -DHAVE_SYNC_COMPARE_AND_SWAP_SUPPORT
......
...@@ -769,7 +769,7 @@ $(LIBBPF)-clean: ...@@ -769,7 +769,7 @@ $(LIBBPF)-clean:
$(Q)$(MAKE) -C $(BPF_DIR) O=$(OUTPUT) clean >/dev/null $(Q)$(MAKE) -C $(BPF_DIR) O=$(OUTPUT) clean >/dev/null
$(LIBPERF): FORCE $(LIBPERF): FORCE
$(Q)$(MAKE) -C $(LIBPERF_DIR) O=$(OUTPUT) $(OUTPUT)libperf.a $(Q)$(MAKE) -C $(LIBPERF_DIR) EXTRA_CFLAGS="$(LIBPERF_CFLAGS)" O=$(OUTPUT) $(OUTPUT)libperf.a
$(LIBPERF)-clean: $(LIBPERF)-clean:
$(call QUIET_CLEAN, libperf) $(call QUIET_CLEAN, libperf)
......
...@@ -5,11 +5,12 @@ ...@@ -5,11 +5,12 @@
#include <stdio.h> #include <stdio.h>
#include <stdarg.h> #include <stdarg.h>
#include <unistd.h> #include <unistd.h>
#include <linux/compiler.h>
#include <perf/core.h> #include <perf/core.h>
#include <internal/lib.h> #include <internal/lib.h>
#include "internal.h" #include "internal.h"
static int __base_pr(enum libperf_print_level level, const char *format, static int __base_pr(enum libperf_print_level level __maybe_unused, const char *format,
va_list args) va_list args)
{ {
return vfprintf(stderr, format, args); return vfprintf(stderr, format, args);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment