Jiri Olsa | 8bd407b | 2013-03-15 16:28:49 +0100 | [diff] [blame] | 1 | |
Jiri Olsa | a6cf5f3 | 2014-01-03 15:32:32 +0100 | [diff] [blame] | 2 | ifeq ($(src-perf),) |
| 3 | src-perf := $(srctree)/tools/perf |
Jiri Olsa | 8bd407b | 2013-03-15 16:28:49 +0100 | [diff] [blame] | 4 | endif |
| 5 | |
Jiri Olsa | a6cf5f3 | 2014-01-03 15:32:32 +0100 | [diff] [blame] | 6 | ifeq ($(obj-perf),) |
| 7 | obj-perf := $(OUTPUT) |
| 8 | endif |
| 9 | |
| 10 | ifneq ($(obj-perf),) |
| 11 | obj-perf := $(abspath $(obj-perf))/ |
| 12 | endif |
| 13 | |
| 14 | LIB_INCLUDE := $(srctree)/tools/lib/ |
| 15 | CFLAGS := $(EXTRA_CFLAGS) $(EXTRA_WARNINGS) |
| 16 | |
| 17 | include $(src-perf)/config/Makefile.arch |
| 18 | |
| 19 | NO_PERF_REGS := 1 |
| 20 | |
| 21 | # Additional ARCH settings for x86 |
| 22 | ifeq ($(ARCH),x86) |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 23 | ifeq (${IS_X86_64}, 1) |
Ingo Molnar | 89fe808 | 2013-09-30 12:07:11 +0200 | [diff] [blame] | 24 | CFLAGS += -DHAVE_ARCH_X86_64_SUPPORT |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 25 | ARCH_INCLUDE = ../../arch/x86/lib/memcpy_64.S ../../arch/x86/lib/memset_64.S |
Adrian Hunter | 8a0c4c2 | 2013-11-01 15:51:32 +0200 | [diff] [blame] | 26 | LIBUNWIND_LIBS = -lunwind -lunwind-x86_64 |
| 27 | else |
| 28 | LIBUNWIND_LIBS = -lunwind -lunwind-x86 |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 29 | endif |
| 30 | NO_PERF_REGS := 0 |
Jiri Olsa | 8bd407b | 2013-03-15 16:28:49 +0100 | [diff] [blame] | 31 | endif |
Jean Pihet | 8ab596a | 2014-04-28 14:32:33 +0200 | [diff] [blame] | 32 | |
Will Deacon | 7495f37 | 2013-09-26 12:36:36 +0100 | [diff] [blame] | 33 | ifeq ($(ARCH),arm) |
| 34 | NO_PERF_REGS := 0 |
| 35 | LIBUNWIND_LIBS = -lunwind -lunwind-arm |
| 36 | endif |
Jiri Olsa | 8bd407b | 2013-03-15 16:28:49 +0100 | [diff] [blame] | 37 | |
Jean Pihet | 8ab596a | 2014-04-28 14:32:33 +0200 | [diff] [blame] | 38 | ifeq ($(ARCH),arm64) |
| 39 | NO_PERF_REGS := 0 |
| 40 | LIBUNWIND_LIBS = -lunwind -lunwind-aarch64 |
| 41 | endif |
| 42 | |
Jean Pihet | 90fa9de | 2014-05-16 10:41:11 +0200 | [diff] [blame] | 43 | # So far there's only x86 and arm libdw unwind support merged in perf. |
Jiri Olsa | 4dc549e | 2014-04-20 10:50:00 +0200 | [diff] [blame] | 44 | # Disable it on all other architectures in case libdw unwind |
| 45 | # support is detected in system. Add supported architectures |
| 46 | # to the check. |
Jean Pihet | 90fa9de | 2014-05-16 10:41:11 +0200 | [diff] [blame] | 47 | ifneq ($(ARCH),$(filter $(ARCH),x86 arm)) |
Jiri Olsa | 4dc549e | 2014-04-20 10:50:00 +0200 | [diff] [blame] | 48 | NO_LIBDW_DWARF_UNWIND := 1 |
| 49 | endif |
| 50 | |
Jean Pihet | 1448fef | 2013-12-10 13:24:04 +0100 | [diff] [blame] | 51 | ifeq ($(LIBUNWIND_LIBS),) |
| 52 | NO_LIBUNWIND := 1 |
| 53 | else |
| 54 | # |
| 55 | # For linking with debug library, run like: |
| 56 | # |
| 57 | # make DEBUG=1 LIBUNWIND_DIR=/opt/libunwind/ |
| 58 | # |
| 59 | ifdef LIBUNWIND_DIR |
| 60 | LIBUNWIND_CFLAGS = -I$(LIBUNWIND_DIR)/include |
| 61 | LIBUNWIND_LDFLAGS = -L$(LIBUNWIND_DIR)/lib |
| 62 | endif |
| 63 | LIBUNWIND_LDFLAGS += $(LIBUNWIND_LIBS) |
| 64 | |
| 65 | # Set per-feature check compilation flags |
| 66 | FEATURE_CHECK_CFLAGS-libunwind = $(LIBUNWIND_CFLAGS) |
| 67 | FEATURE_CHECK_LDFLAGS-libunwind = $(LIBUNWIND_LDFLAGS) |
| 68 | FEATURE_CHECK_CFLAGS-libunwind-debug-frame = $(LIBUNWIND_CFLAGS) |
| 69 | FEATURE_CHECK_LDFLAGS-libunwind-debug-frame = $(LIBUNWIND_LDFLAGS) |
Jean Pihet | 1448fef | 2013-12-10 13:24:04 +0100 | [diff] [blame] | 70 | endif |
| 71 | |
Jiri Olsa | 8bd407b | 2013-03-15 16:28:49 +0100 | [diff] [blame] | 72 | ifeq ($(NO_PERF_REGS),0) |
Ingo Molnar | 89fe808 | 2013-09-30 12:07:11 +0200 | [diff] [blame] | 73 | CFLAGS += -DHAVE_PERF_REGS_SUPPORT |
Jiri Olsa | 8bd407b | 2013-03-15 16:28:49 +0100 | [diff] [blame] | 74 | endif |
Jiri Olsa | a32f493 | 2013-03-25 00:32:01 +0100 | [diff] [blame] | 75 | |
Jiri Olsa | 4575789 | 2014-02-19 16:52:56 +0100 | [diff] [blame] | 76 | ifndef NO_LIBELF |
| 77 | # for linking with debug library, run like: |
| 78 | # make DEBUG=1 LIBDW_DIR=/opt/libdw/ |
| 79 | ifdef LIBDW_DIR |
| 80 | LIBDW_CFLAGS := -I$(LIBDW_DIR)/include |
| 81 | LIBDW_LDFLAGS := -L$(LIBDW_DIR)/lib |
Jiri Olsa | 4575789 | 2014-02-19 16:52:56 +0100 | [diff] [blame] | 82 | endif |
Ramkumar Ramachandra | 2c529e4 | 2014-03-26 18:44:05 -0400 | [diff] [blame] | 83 | FEATURE_CHECK_CFLAGS-libdw-dwarf-unwind := $(LIBDW_CFLAGS) |
| 84 | FEATURE_CHECK_LDFLAGS-libdw-dwarf-unwind := $(LIBDW_LDFLAGS) -ldw |
Jiri Olsa | 4575789 | 2014-02-19 16:52:56 +0100 | [diff] [blame] | 85 | endif |
| 86 | |
Jiri Olsa | 7c53746 | 2013-05-24 14:35:23 +0200 | [diff] [blame] | 87 | # include ARCH specific config |
| 88 | -include $(src-perf)/arch/$(ARCH)/Makefile |
| 89 | |
Jiri Olsa | 7c53746 | 2013-05-24 14:35:23 +0200 | [diff] [blame] | 90 | include $(src-perf)/config/utilities.mak |
Jiri Olsa | a32f493 | 2013-03-25 00:32:01 +0100 | [diff] [blame] | 91 | |
| 92 | ifeq ($(call get-executable,$(FLEX)),) |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 93 | dummy := $(error Error: $(FLEX) is missing on this system, please install it) |
Jiri Olsa | a32f493 | 2013-03-25 00:32:01 +0100 | [diff] [blame] | 94 | endif |
| 95 | |
| 96 | ifeq ($(call get-executable,$(BISON)),) |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 97 | dummy := $(error Error: $(BISON) is missing on this system, please install it) |
Jiri Olsa | a32f493 | 2013-03-25 00:32:01 +0100 | [diff] [blame] | 98 | endif |
Jiri Olsa | 362493f | 2013-03-25 00:40:48 +0100 | [diff] [blame] | 99 | |
| 100 | # Treat warnings as errors unless directed not to |
| 101 | ifneq ($(WERROR),0) |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 102 | CFLAGS += -Werror |
Jiri Olsa | 362493f | 2013-03-25 00:40:48 +0100 | [diff] [blame] | 103 | endif |
| 104 | |
Adrian Hunter | 74af377 | 2013-10-22 10:34:05 +0300 | [diff] [blame] | 105 | ifndef DEBUG |
| 106 | DEBUG := 0 |
| 107 | endif |
| 108 | |
Ingo Molnar | fcf9258 | 2013-10-10 08:05:25 +0200 | [diff] [blame] | 109 | ifeq ($(DEBUG),0) |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 110 | CFLAGS += -O6 |
Jiri Olsa | 362493f | 2013-03-25 00:40:48 +0100 | [diff] [blame] | 111 | endif |
| 112 | |
| 113 | ifdef PARSER_DEBUG |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 114 | PARSER_DEBUG_BISON := -t |
| 115 | PARSER_DEBUG_FLEX := -d |
| 116 | CFLAGS += -DPARSER_DEBUG |
Jiri Olsa | 362493f | 2013-03-25 00:40:48 +0100 | [diff] [blame] | 117 | endif |
| 118 | |
Namhyung Kim | 56c7d79 | 2014-07-29 15:57:19 +0900 | [diff] [blame] | 119 | ifndef NO_LIBPYTHON |
Thomas Ilsche | d6a947f | 2014-08-04 15:03:15 +0200 | [diff] [blame] | 120 | # Try different combinations to accommodate systems that only have |
| 121 | # python[2][-config] in weird combinations but always preferring |
| 122 | # python2 and python2-config as per pep-0394. If we catch a |
| 123 | # python[-config] in version 3, the version check will kill it. |
| 124 | PYTHON2 := $(if $(call get-executable,python2),python2,python) |
| 125 | override PYTHON := $(call get-executable-or-default,PYTHON,$(PYTHON2)) |
| 126 | PYTHON2_CONFIG := \ |
| 127 | $(if $(call get-executable,$(PYTHON)-config),$(PYTHON)-config,python-config) |
Namhyung Kim | 56c7d79 | 2014-07-29 15:57:19 +0900 | [diff] [blame] | 128 | override PYTHON_CONFIG := \ |
Thomas Ilsche | d6a947f | 2014-08-04 15:03:15 +0200 | [diff] [blame] | 129 | $(call get-executable-or-default,PYTHON_CONFIG,$(PYTHON2_CONFIG)) |
Namhyung Kim | 56c7d79 | 2014-07-29 15:57:19 +0900 | [diff] [blame] | 130 | |
| 131 | PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG)) |
| 132 | |
| 133 | PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null) |
| 134 | PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null) |
| 135 | |
| 136 | FEATURE_CHECK_CFLAGS-libpython := $(PYTHON_EMBED_CCOPTS) |
| 137 | FEATURE_CHECK_LDFLAGS-libpython := $(PYTHON_EMBED_LDOPTS) |
| 138 | FEATURE_CHECK_CFLAGS-libpython-version := $(PYTHON_EMBED_CCOPTS) |
| 139 | FEATURE_CHECK_LDFLAGS-libpython-version := $(PYTHON_EMBED_LDOPTS) |
| 140 | endif |
| 141 | |
Jiri Olsa | 2fe7374 | 2013-04-15 04:32:28 +0200 | [diff] [blame] | 142 | CFLAGS += -fno-omit-frame-pointer |
| 143 | CFLAGS += -ggdb3 |
| 144 | CFLAGS += -funwind-tables |
| 145 | CFLAGS += -Wall |
| 146 | CFLAGS += -Wextra |
| 147 | CFLAGS += -std=gnu99 |
Jiri Olsa | 9c12cf9 | 2013-03-21 11:30:54 +0100 | [diff] [blame] | 148 | |
Mathias Krause | 6392b4e | 2014-04-27 18:51:05 +0200 | [diff] [blame] | 149 | # Enforce a non-executable stack, as we may regress (again) in the future by |
| 150 | # adding assembler files missing the .GNU-stack linker note. |
| 151 | LDFLAGS += -Wl,-z,noexecstack |
| 152 | |
David Ahern | 6d19912 | 2013-09-22 19:44:57 -0600 | [diff] [blame] | 153 | EXTLIBS = -lelf -lpthread -lrt -lm -ldl |
Jiri Olsa | 362493f | 2013-03-25 00:40:48 +0100 | [diff] [blame] | 154 | |
Ingo Molnar | 1c2d1d8 | 2013-10-03 15:05:56 +0200 | [diff] [blame] | 155 | ifneq ($(OUTPUT),) |
| 156 | OUTPUT_FEATURES = $(OUTPUT)config/feature-checks/ |
| 157 | $(shell mkdir -p $(OUTPUT_FEATURES)) |
| 158 | endif |
| 159 | |
Ingo Molnar | baa9c30 | 2013-10-01 14:14:31 +0200 | [diff] [blame] | 160 | feature_check = $(eval $(feature_check_code)) |
Ingo Molnar | b6aa997 | 2013-09-30 10:08:24 +0200 | [diff] [blame] | 161 | define feature_check_code |
Chunwei Chen | 56560ec | 2013-12-21 13:48:11 +0800 | [diff] [blame] | 162 | feature-$(1) := $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) CFLAGS="$(EXTRA_CFLAGS) $(FEATURE_CHECK_CFLAGS-$(1))" LDFLAGS="$(LDFLAGS) $(FEATURE_CHECK_LDFLAGS-$(1))" -C config/feature-checks test-$1.bin >/dev/null 2>/dev/null && echo 1 || echo 0) |
Ingo Molnar | baa9c30 | 2013-10-01 14:14:31 +0200 | [diff] [blame] | 163 | endef |
| 164 | |
| 165 | feature_set = $(eval $(feature_set_code)) |
| 166 | define feature_set_code |
| 167 | feature-$(1) := 1 |
Ingo Molnar | b6aa997 | 2013-09-30 10:08:24 +0200 | [diff] [blame] | 168 | endef |
| 169 | |
| 170 | # |
| 171 | # Build the feature check binaries in parallel, ignore errors, ignore return value and suppress output: |
| 172 | # |
Ingo Molnar | b6aa997 | 2013-09-30 10:08:24 +0200 | [diff] [blame] | 173 | |
Ingo Molnar | f1138ec | 2013-10-02 09:54:43 +0200 | [diff] [blame] | 174 | # |
| 175 | # Note that this is not a complete list of all feature tests, just |
| 176 | # those that are typically built on a fully configured system. |
| 177 | # |
| 178 | # [ Feature tests not mentioned here have to be built explicitly in |
| 179 | # the rule that uses them - an example for that is the 'bionic' |
| 180 | # feature check. ] |
| 181 | # |
| 182 | CORE_FEATURE_TESTS = \ |
| 183 | backtrace \ |
Ingo Molnar | 8295d4e | 2013-10-07 10:35:39 +0200 | [diff] [blame] | 184 | dwarf \ |
Ingo Molnar | f1138ec | 2013-10-02 09:54:43 +0200 | [diff] [blame] | 185 | fortify-source \ |
Adrian Hunter | f6d3136 | 2014-07-14 13:02:53 +0300 | [diff] [blame] | 186 | sync-compare-and-swap \ |
Ingo Molnar | f1138ec | 2013-10-02 09:54:43 +0200 | [diff] [blame] | 187 | glibc \ |
Ingo Molnar | 7ef9e05 | 2013-09-30 15:01:56 +0200 | [diff] [blame] | 188 | gtk2 \ |
Ingo Molnar | c7a79e9 | 2013-09-30 15:08:30 +0200 | [diff] [blame] | 189 | gtk2-infobar \ |
Ingo Molnar | f1138ec | 2013-10-02 09:54:43 +0200 | [diff] [blame] | 190 | libaudit \ |
| 191 | libbfd \ |
| 192 | libelf \ |
| 193 | libelf-getphdrnum \ |
| 194 | libelf-mmap \ |
| 195 | libnuma \ |
Ingo Molnar | 7181a67 | 2013-09-30 15:15:36 +0200 | [diff] [blame] | 196 | libperl \ |
Ingo Molnar | 9734163 | 2013-09-30 15:18:37 +0200 | [diff] [blame] | 197 | libpython \ |
Ingo Molnar | 95d061c | 2013-09-30 15:40:04 +0200 | [diff] [blame] | 198 | libpython-version \ |
Ingo Molnar | f1138ec | 2013-10-02 09:54:43 +0200 | [diff] [blame] | 199 | libslang \ |
| 200 | libunwind \ |
Ingo Molnar | bb4c550 | 2013-11-14 08:33:24 +0100 | [diff] [blame] | 201 | stackprotector-all \ |
Jiri Olsa | 0a4f2b6 | 2014-02-19 16:52:58 +0100 | [diff] [blame] | 202 | timerfd \ |
| 203 | libdw-dwarf-unwind |
Ingo Molnar | b6aa997 | 2013-09-30 10:08:24 +0200 | [diff] [blame] | 204 | |
Jiri Olsa | 0695e57 | 2014-02-19 16:52:54 +0100 | [diff] [blame] | 205 | LIB_FEATURE_TESTS = \ |
| 206 | dwarf \ |
| 207 | glibc \ |
| 208 | gtk2 \ |
| 209 | libaudit \ |
| 210 | libbfd \ |
| 211 | libelf \ |
| 212 | libnuma \ |
| 213 | libperl \ |
| 214 | libpython \ |
| 215 | libslang \ |
Jiri Olsa | 0a4f2b6 | 2014-02-19 16:52:58 +0100 | [diff] [blame] | 216 | libunwind \ |
| 217 | libdw-dwarf-unwind |
Jiri Olsa | 0695e57 | 2014-02-19 16:52:54 +0100 | [diff] [blame] | 218 | |
| 219 | VF_FEATURE_TESTS = \ |
| 220 | backtrace \ |
| 221 | fortify-source \ |
Adrian Hunter | f6d3136 | 2014-07-14 13:02:53 +0300 | [diff] [blame] | 222 | sync-compare-and-swap \ |
Jiri Olsa | 0695e57 | 2014-02-19 16:52:54 +0100 | [diff] [blame] | 223 | gtk2-infobar \ |
| 224 | libelf-getphdrnum \ |
| 225 | libelf-mmap \ |
| 226 | libpython-version \ |
Jiri Olsa | 0695e57 | 2014-02-19 16:52:54 +0100 | [diff] [blame] | 227 | stackprotector-all \ |
| 228 | timerfd \ |
| 229 | libunwind-debug-frame \ |
Jiri Olsa | 2cf9040 | 2014-04-23 16:53:25 +0200 | [diff] [blame] | 230 | bionic \ |
| 231 | liberty \ |
| 232 | liberty-z \ |
Adrian Hunter | e477f3f | 2014-10-23 18:16:03 -0300 | [diff] [blame] | 233 | cplus-demangle \ |
| 234 | compile-32 \ |
| 235 | compile-x32 |
Jiri Olsa | 0695e57 | 2014-02-19 16:52:54 +0100 | [diff] [blame] | 236 | |
Jiri Olsa | c4eb6c0 | 2014-01-07 13:47:18 +0100 | [diff] [blame] | 237 | # Set FEATURE_CHECK_(C|LD)FLAGS-all for all CORE_FEATURE_TESTS features. |
| 238 | # If in the future we need per-feature checks/flags for features not |
| 239 | # mentioned in this list we need to refactor this ;-). |
| 240 | set_test_all_flags = $(eval $(set_test_all_flags_code)) |
| 241 | define set_test_all_flags_code |
| 242 | FEATURE_CHECK_CFLAGS-all += $(FEATURE_CHECK_CFLAGS-$(1)) |
| 243 | FEATURE_CHECK_LDFLAGS-all += $(FEATURE_CHECK_LDFLAGS-$(1)) |
| 244 | endef |
| 245 | |
| 246 | $(foreach feat,$(CORE_FEATURE_TESTS),$(call set_test_all_flags,$(feat))) |
| 247 | |
Ingo Molnar | baa9c30 | 2013-10-01 14:14:31 +0200 | [diff] [blame] | 248 | # |
| 249 | # Special fast-path for the 'all features are available' case: |
| 250 | # |
Ingo Molnar | b3b64a1 | 2013-10-02 10:01:42 +0200 | [diff] [blame] | 251 | $(call feature_check,all,$(MSG)) |
| 252 | |
| 253 | # |
| 254 | # Just in case the build freshly failed, make sure we print the |
| 255 | # feature matrix: |
| 256 | # |
Ingo Molnar | baa9c30 | 2013-10-01 14:14:31 +0200 | [diff] [blame] | 257 | ifeq ($(feature-all), 1) |
Ingo Molnar | f1138ec | 2013-10-02 09:54:43 +0200 | [diff] [blame] | 258 | # |
| 259 | # test-all.c passed - just set all the core feature flags to 1: |
| 260 | # |
| 261 | $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_set,$(feat))) |
Ingo Molnar | baa9c30 | 2013-10-01 14:14:31 +0200 | [diff] [blame] | 262 | else |
Chunwei Chen | 56560ec | 2013-12-21 13:48:11 +0800 | [diff] [blame] | 263 | $(shell $(MAKE) OUTPUT=$(OUTPUT_FEATURES) CFLAGS="$(EXTRA_CFLAGS)" LDFLAGS=$(LDFLAGS) -i -j -C config/feature-checks $(addsuffix .bin,$(CORE_FEATURE_TESTS)) >/dev/null 2>&1) |
Ingo Molnar | f1138ec | 2013-10-02 09:54:43 +0200 | [diff] [blame] | 264 | $(foreach feat,$(CORE_FEATURE_TESTS),$(call feature_check,$(feat))) |
Ingo Molnar | baa9c30 | 2013-10-01 14:14:31 +0200 | [diff] [blame] | 265 | endif |
| 266 | |
Ingo Molnar | 90ac542 | 2013-09-30 13:48:44 +0200 | [diff] [blame] | 267 | ifeq ($(feature-stackprotector-all), 1) |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 268 | CFLAGS += -fstack-protector-all |
Jiri Olsa | 362493f | 2013-03-25 00:40:48 +0100 | [diff] [blame] | 269 | endif |
| 270 | |
Ingo Molnar | fcf9258 | 2013-10-10 08:05:25 +0200 | [diff] [blame] | 271 | ifeq ($(DEBUG),0) |
Ingo Molnar | 1ea6f99 | 2013-10-07 09:38:28 +0200 | [diff] [blame] | 272 | ifeq ($(feature-fortify-source), 1) |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 273 | CFLAGS += -D_FORTIFY_SOURCE=2 |
| 274 | endif |
Jiri Olsa | 362493f | 2013-03-25 00:40:48 +0100 | [diff] [blame] | 275 | endif |
| 276 | |
Jiri Olsa | 2fe7374 | 2013-04-15 04:32:28 +0200 | [diff] [blame] | 277 | CFLAGS += -I$(src-perf)/util/include |
| 278 | CFLAGS += -I$(src-perf)/arch/$(ARCH)/include |
Namhyung Kim | 8a625c1 | 2014-01-09 23:00:52 +0900 | [diff] [blame] | 279 | CFLAGS += -I$(srctree)/tools/include/ |
Jiri Olsa | 2fe7374 | 2013-04-15 04:32:28 +0200 | [diff] [blame] | 280 | CFLAGS += -I$(srctree)/arch/$(ARCH)/include/uapi |
| 281 | CFLAGS += -I$(srctree)/arch/$(ARCH)/include |
| 282 | CFLAGS += -I$(srctree)/include/uapi |
| 283 | CFLAGS += -I$(srctree)/include |
Jiri Olsa | 7c53746 | 2013-05-24 14:35:23 +0200 | [diff] [blame] | 284 | |
| 285 | # $(obj-perf) for generated common-cmds.h |
| 286 | # $(obj-perf)/util for generated bison/flex headers |
| 287 | ifneq ($(OUTPUT),) |
Jiri Olsa | 2fe7374 | 2013-04-15 04:32:28 +0200 | [diff] [blame] | 288 | CFLAGS += -I$(obj-perf)/util |
| 289 | CFLAGS += -I$(obj-perf) |
Jiri Olsa | 7c53746 | 2013-05-24 14:35:23 +0200 | [diff] [blame] | 290 | endif |
| 291 | |
Jiri Olsa | 2fe7374 | 2013-04-15 04:32:28 +0200 | [diff] [blame] | 292 | CFLAGS += -I$(src-perf)/util |
| 293 | CFLAGS += -I$(src-perf) |
Robert Richter | 4e31902 | 2013-06-11 17:29:18 +0200 | [diff] [blame] | 294 | CFLAGS += -I$(LIB_INCLUDE) |
Jiri Olsa | 7c53746 | 2013-05-24 14:35:23 +0200 | [diff] [blame] | 295 | |
Jiri Olsa | 2fe7374 | 2013-04-15 04:32:28 +0200 | [diff] [blame] | 296 | CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE |
Jiri Olsa | 362493f | 2013-03-25 00:40:48 +0100 | [diff] [blame] | 297 | |
Adrian Hunter | f6d3136 | 2014-07-14 13:02:53 +0300 | [diff] [blame] | 298 | ifeq ($(feature-sync-compare-and-swap), 1) |
| 299 | CFLAGS += -DHAVE_SYNC_COMPARE_AND_SWAP_SUPPORT |
| 300 | endif |
| 301 | |
Jiri Olsa | 4e22db4 | 2013-05-24 14:35:24 +0200 | [diff] [blame] | 302 | ifndef NO_BIONIC |
David Ahern | 5febff0 | 2013-10-29 10:43:15 -0600 | [diff] [blame] | 303 | $(call feature_check,bionic) |
Ingo Molnar | 78e9d65 | 2013-09-30 14:11:46 +0200 | [diff] [blame] | 304 | ifeq ($(feature-bionic), 1) |
| 305 | BIONIC := 1 |
| 306 | EXTLIBS := $(filter-out -lrt,$(EXTLIBS)) |
| 307 | EXTLIBS := $(filter-out -lpthread,$(EXTLIBS)) |
| 308 | endif |
Jiri Olsa | 362493f | 2013-03-25 00:40:48 +0100 | [diff] [blame] | 309 | endif |
Jiri Olsa | cf4cca1 | 2013-03-25 00:45:08 +0100 | [diff] [blame] | 310 | |
| 311 | ifdef NO_LIBELF |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 312 | NO_DWARF := 1 |
| 313 | NO_DEMANGLE := 1 |
| 314 | NO_LIBUNWIND := 1 |
Jiri Olsa | 5ea8415 | 2014-02-19 16:52:57 +0100 | [diff] [blame] | 315 | NO_LIBDW_DWARF_UNWIND := 1 |
Jiri Olsa | cf4cca1 | 2013-03-25 00:45:08 +0100 | [diff] [blame] | 316 | else |
Ingo Molnar | 8f7f800 | 2013-09-30 14:20:25 +0200 | [diff] [blame] | 317 | ifeq ($(feature-libelf), 0) |
Ingo Molnar | e12762c | 2013-10-07 10:34:20 +0200 | [diff] [blame] | 318 | ifeq ($(feature-glibc), 1) |
Ingo Molnar | 50eed7a | 2013-09-30 14:11:16 +0200 | [diff] [blame] | 319 | LIBC_SUPPORT := 1 |
| 320 | endif |
| 321 | ifeq ($(BIONIC),1) |
| 322 | LIBC_SUPPORT := 1 |
| 323 | endif |
| 324 | ifeq ($(LIBC_SUPPORT),1) |
| 325 | msg := $(warning No libelf found, disables 'probe' tool, please install elfutils-libelf-devel/libelf-dev); |
Jiri Olsa | cf4cca1 | 2013-03-25 00:45:08 +0100 | [diff] [blame] | 326 | |
Ingo Molnar | 50eed7a | 2013-09-30 14:11:16 +0200 | [diff] [blame] | 327 | NO_LIBELF := 1 |
| 328 | NO_DWARF := 1 |
| 329 | NO_DEMANGLE := 1 |
Arnaldo Carvalho de Melo | 9458955 | 2014-03-25 09:35:11 -0300 | [diff] [blame] | 330 | NO_LIBUNWIND := 1 |
| 331 | NO_LIBDW_DWARF_UNWIND := 1 |
Ingo Molnar | 50eed7a | 2013-09-30 14:11:16 +0200 | [diff] [blame] | 332 | else |
Arnaldo Carvalho de Melo | f9ca2d8 | 2014-06-05 12:46:04 -0300 | [diff] [blame] | 333 | ifneq ($(filter s% -static%,$(LDFLAGS),),) |
| 334 | msg := $(error No static glibc found, please install glibc-static); |
| 335 | else |
| 336 | msg := $(error No gnu/libc-version.h found, please install glibc-dev[el]); |
| 337 | endif |
Ingo Molnar | 50eed7a | 2013-09-30 14:11:16 +0200 | [diff] [blame] | 338 | endif |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 339 | else |
Jiri Olsa | 0a4f2b6 | 2014-02-19 16:52:58 +0100 | [diff] [blame] | 340 | ifndef NO_LIBDW_DWARF_UNWIND |
| 341 | ifneq ($(feature-libdw-dwarf-unwind),1) |
| 342 | NO_LIBDW_DWARF_UNWIND := 1 |
| 343 | msg := $(warning No libdw DWARF unwind found, Please install elfutils-devel/libdw-dev >= 0.158 and/or set LIBDW_DIR); |
| 344 | endif |
| 345 | endif |
Ingo Molnar | 8295d4e | 2013-10-07 10:35:39 +0200 | [diff] [blame] | 346 | ifneq ($(feature-dwarf), 1) |
Ingo Molnar | 50eed7a | 2013-09-30 14:11:16 +0200 | [diff] [blame] | 347 | msg := $(warning No libdw.h found or old libdw.h found or elfutils is older than 0.138, disables dwarf support. Please install new elfutils-devel/libdw-dev); |
| 348 | NO_DWARF := 1 |
| 349 | endif # Dwarf support |
Ingo Molnar | 0648f83 | 2013-10-02 15:30:35 +0200 | [diff] [blame] | 350 | endif # libelf support |
Jiri Olsa | cf4cca1 | 2013-03-25 00:45:08 +0100 | [diff] [blame] | 351 | endif # NO_LIBELF |
| 352 | |
| 353 | ifndef NO_LIBELF |
Ingo Molnar | fb3d333 | 2013-10-07 10:05:51 +0200 | [diff] [blame] | 354 | CFLAGS += -DHAVE_LIBELF_SUPPORT |
Jiri Olsa | 779724f | 2013-03-25 00:48:14 +0100 | [diff] [blame] | 355 | |
Ingo Molnar | 8869b17 | 2013-09-30 15:02:28 +0200 | [diff] [blame] | 356 | ifeq ($(feature-libelf-mmap), 1) |
Ingo Molnar | fb3d333 | 2013-10-07 10:05:51 +0200 | [diff] [blame] | 357 | CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT |
| 358 | endif |
Jiri Olsa | 779724f | 2013-03-25 00:48:14 +0100 | [diff] [blame] | 359 | |
Ingo Molnar | b7bcef6 | 2013-09-30 14:35:27 +0200 | [diff] [blame] | 360 | ifeq ($(feature-libelf-getphdrnum), 1) |
Ingo Molnar | fb3d333 | 2013-10-07 10:05:51 +0200 | [diff] [blame] | 361 | CFLAGS += -DHAVE_ELF_GETPHDRNUM_SUPPORT |
| 362 | endif |
Jiri Olsa | 779724f | 2013-03-25 00:48:14 +0100 | [diff] [blame] | 363 | |
Ingo Molnar | fb3d333 | 2013-10-07 10:05:51 +0200 | [diff] [blame] | 364 | # include ARCH specific config |
| 365 | -include $(src-perf)/arch/$(ARCH)/Makefile |
| 366 | |
| 367 | ifndef NO_DWARF |
| 368 | ifeq ($(origin PERF_HAVE_DWARF_REGS), undefined) |
| 369 | msg := $(warning DWARF register mappings have not been defined for architecture $(ARCH), DWARF support disabled); |
| 370 | NO_DWARF := 1 |
| 371 | else |
| 372 | CFLAGS += -DHAVE_DWARF_SUPPORT $(LIBDW_CFLAGS) |
| 373 | LDFLAGS += $(LIBDW_LDFLAGS) |
| 374 | EXTLIBS += -lelf -ldw |
| 375 | endif # PERF_HAVE_DWARF_REGS |
| 376 | endif # NO_DWARF |
Jiri Olsa | cf4cca1 | 2013-03-25 00:45:08 +0100 | [diff] [blame] | 377 | endif # NO_LIBELF |
Jiri Olsa | 0e433fe | 2013-03-25 00:53:03 +0100 | [diff] [blame] | 378 | |
Anton Blanchard | 65ccb4f | 2014-08-25 18:25:06 +1000 | [diff] [blame] | 379 | ifeq ($(ARCH),powerpc) |
| 380 | ifndef NO_DWARF |
| 381 | CFLAGS += -DHAVE_SKIP_CALLCHAIN_IDX |
| 382 | endif |
| 383 | endif |
| 384 | |
Jiri Olsa | 0e433fe | 2013-03-25 00:53:03 +0100 | [diff] [blame] | 385 | ifndef NO_LIBUNWIND |
Ingo Molnar | 058f952 | 2013-09-30 14:45:44 +0200 | [diff] [blame] | 386 | ifneq ($(feature-libunwind), 1) |
Jiri Olsa | 0a4f2b6 | 2014-02-19 16:52:58 +0100 | [diff] [blame] | 387 | msg := $(warning No libunwind found. Please install libunwind-dev[el] >= 1.1 and/or set LIBUNWIND_DIR); |
Ingo Molnar | 308e1e7 | 2013-10-07 10:30:47 +0200 | [diff] [blame] | 388 | NO_LIBUNWIND := 1 |
Jiri Olsa | 0a4f2b6 | 2014-02-19 16:52:58 +0100 | [diff] [blame] | 389 | endif |
| 390 | endif |
| 391 | |
| 392 | dwarf-post-unwind := 1 |
| 393 | dwarf-post-unwind-text := BUG |
| 394 | |
| 395 | # setup DWARF post unwinder |
| 396 | ifdef NO_LIBUNWIND |
| 397 | ifdef NO_LIBDW_DWARF_UNWIND |
| 398 | msg := $(warning Disabling post unwind, no support found.); |
| 399 | dwarf-post-unwind := 0 |
Linus Torvalds | f47671e | 2013-11-14 08:51:29 +0900 | [diff] [blame] | 400 | else |
Jiri Olsa | 0a4f2b6 | 2014-02-19 16:52:58 +0100 | [diff] [blame] | 401 | dwarf-post-unwind-text := libdw |
| 402 | endif |
| 403 | else |
| 404 | dwarf-post-unwind-text := libunwind |
| 405 | # Enable libunwind support by default. |
| 406 | ifndef NO_LIBDW_DWARF_UNWIND |
| 407 | NO_LIBDW_DWARF_UNWIND := 1 |
| 408 | endif |
| 409 | endif |
| 410 | |
| 411 | ifeq ($(dwarf-post-unwind),1) |
| 412 | CFLAGS += -DHAVE_DWARF_UNWIND_SUPPORT |
| 413 | else |
| 414 | NO_DWARF_UNWIND := 1 |
| 415 | endif |
| 416 | |
| 417 | ifndef NO_LIBUNWIND |
Jean Pihet | 8ab596a | 2014-04-28 14:32:33 +0200 | [diff] [blame] | 418 | ifeq ($(ARCH),$(filter $(ARCH),arm arm64)) |
Jiri Olsa | 0a4f2b6 | 2014-02-19 16:52:58 +0100 | [diff] [blame] | 419 | $(call feature_check,libunwind-debug-frame) |
| 420 | ifneq ($(feature-libunwind-debug-frame), 1) |
| 421 | msg := $(warning No debug_frame support found in libunwind); |
Linus Torvalds | f47671e | 2013-11-14 08:51:29 +0900 | [diff] [blame] | 422 | CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME |
| 423 | endif |
Jiri Olsa | 0a4f2b6 | 2014-02-19 16:52:58 +0100 | [diff] [blame] | 424 | else |
| 425 | # non-ARM has no dwarf_find_debug_frame() function: |
| 426 | CFLAGS += -DNO_LIBUNWIND_DEBUG_FRAME |
| 427 | endif |
| 428 | CFLAGS += -DHAVE_LIBUNWIND_SUPPORT |
| 429 | EXTLIBS += $(LIBUNWIND_LIBS) |
| 430 | CFLAGS += $(LIBUNWIND_CFLAGS) |
| 431 | LDFLAGS += $(LIBUNWIND_LDFLAGS) |
Ingo Molnar | 058f952 | 2013-09-30 14:45:44 +0200 | [diff] [blame] | 432 | endif |
Jiri Olsa | a827952 | 2013-03-25 00:54:36 +0100 | [diff] [blame] | 433 | |
| 434 | ifndef NO_LIBAUDIT |
Ingo Molnar | d795a65 | 2013-09-30 14:55:31 +0200 | [diff] [blame] | 435 | ifneq ($(feature-libaudit), 1) |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 436 | msg := $(warning No libaudit.h found, disables 'trace' tool, please install audit-libs-devel or libaudit-dev); |
| 437 | NO_LIBAUDIT := 1 |
| 438 | else |
Ingo Molnar | 89fe808 | 2013-09-30 12:07:11 +0200 | [diff] [blame] | 439 | CFLAGS += -DHAVE_LIBAUDIT_SUPPORT |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 440 | EXTLIBS += -laudit |
| 441 | endif |
Jiri Olsa | a827952 | 2013-03-25 00:54:36 +0100 | [diff] [blame] | 442 | endif |
Jiri Olsa | 4a8f888 | 2013-03-25 00:56:08 +0100 | [diff] [blame] | 443 | |
| 444 | ifdef NO_NEWT |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 445 | NO_SLANG=1 |
Jiri Olsa | 4a8f888 | 2013-03-25 00:56:08 +0100 | [diff] [blame] | 446 | endif |
| 447 | |
| 448 | ifndef NO_SLANG |
Ingo Molnar | b9498b5 | 2013-09-30 14:57:54 +0200 | [diff] [blame] | 449 | ifneq ($(feature-libslang), 1) |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 450 | msg := $(warning slang not found, disables TUI support. Please install slang-devel or libslang-dev); |
| 451 | NO_SLANG := 1 |
| 452 | else |
| 453 | # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h |
| 454 | CFLAGS += -I/usr/include/slang |
Ingo Molnar | 89fe808 | 2013-09-30 12:07:11 +0200 | [diff] [blame] | 455 | CFLAGS += -DHAVE_SLANG_SUPPORT |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 456 | EXTLIBS += -lslang |
| 457 | endif |
Jiri Olsa | 4a8f888 | 2013-03-25 00:56:08 +0100 | [diff] [blame] | 458 | endif |
Jiri Olsa | 58cabf6 | 2013-03-18 00:09:24 +0100 | [diff] [blame] | 459 | |
| 460 | ifndef NO_GTK2 |
Mark Rutland | a8a5cd8 | 2014-01-15 10:44:08 +0000 | [diff] [blame] | 461 | FLAGS_GTK2=$(CFLAGS) $(LDFLAGS) $(EXTLIBS) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null) |
Ingo Molnar | 7ef9e05 | 2013-09-30 15:01:56 +0200 | [diff] [blame] | 462 | ifneq ($(feature-gtk2), 1) |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 463 | msg := $(warning GTK2 not found, disables GTK2 support. Please install gtk2-devel or libgtk2.0-dev); |
| 464 | NO_GTK2 := 1 |
| 465 | else |
Ingo Molnar | c7a79e9 | 2013-09-30 15:08:30 +0200 | [diff] [blame] | 466 | ifeq ($(feature-gtk2-infobar), 1) |
Namhyung Kim | fc67297 | 2013-09-13 15:27:43 +0900 | [diff] [blame] | 467 | GTK_CFLAGS := -DHAVE_GTK_INFO_BAR_SUPPORT |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 468 | endif |
Ingo Molnar | 89fe808 | 2013-09-30 12:07:11 +0200 | [diff] [blame] | 469 | CFLAGS += -DHAVE_GTK2_SUPPORT |
Mark Rutland | a8a5cd8 | 2014-01-15 10:44:08 +0000 | [diff] [blame] | 470 | GTK_CFLAGS += $(shell $(PKG_CONFIG) --cflags gtk+-2.0 2>/dev/null) |
| 471 | GTK_LIBS := $(shell $(PKG_CONFIG) --libs gtk+-2.0 2>/dev/null) |
Jiri Olsa | e213708 | 2013-09-26 20:55:54 +0200 | [diff] [blame] | 472 | EXTLIBS += -ldl |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 473 | endif |
Jiri Olsa | 58cabf6 | 2013-03-18 00:09:24 +0100 | [diff] [blame] | 474 | endif |
Jiri Olsa | 3082cb3 | 2013-03-18 00:19:44 +0100 | [diff] [blame] | 475 | |
| 476 | grep-libs = $(filter -l%,$(1)) |
| 477 | strip-libs = $(filter-out -l%,$(1)) |
| 478 | |
| 479 | ifdef NO_LIBPERL |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 480 | CFLAGS += -DNO_LIBPERL |
Jiri Olsa | 3082cb3 | 2013-03-18 00:19:44 +0100 | [diff] [blame] | 481 | else |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 482 | PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null) |
| 483 | PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS)) |
| 484 | PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS)) |
| 485 | PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null` |
| 486 | FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS) |
Jiri Olsa | 3082cb3 | 2013-03-18 00:19:44 +0100 | [diff] [blame] | 487 | |
Ingo Molnar | 7181a67 | 2013-09-30 15:15:36 +0200 | [diff] [blame] | 488 | ifneq ($(feature-libperl), 1) |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 489 | CFLAGS += -DNO_LIBPERL |
| 490 | NO_LIBPERL := 1 |
Arnaldo Carvalho de Melo | 6a2f254 | 2014-05-26 16:02:30 -0300 | [diff] [blame] | 491 | msg := $(warning Missing perl devel files. Disabling perl scripting support, consider installing perl-ExtUtils-Embed); |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 492 | else |
| 493 | LDFLAGS += $(PERL_EMBED_LDFLAGS) |
| 494 | EXTLIBS += $(PERL_EMBED_LIBADD) |
| 495 | endif |
Jiri Olsa | 3082cb3 | 2013-03-18 00:19:44 +0100 | [diff] [blame] | 496 | endif |
Jiri Olsa | 6e533cf | 2013-03-18 00:35:32 +0100 | [diff] [blame] | 497 | |
David Ahern | 87419c9 | 2013-10-29 10:43:16 -0600 | [diff] [blame] | 498 | ifeq ($(feature-timerfd), 1) |
| 499 | CFLAGS += -DHAVE_TIMERFD_SUPPORT |
| 500 | else |
| 501 | msg := $(warning No timerfd support. Disables 'perf kvm stat live'); |
| 502 | endif |
| 503 | |
Jiri Olsa | 6e533cf | 2013-03-18 00:35:32 +0100 | [diff] [blame] | 504 | disable-python = $(eval $(disable-python_code)) |
| 505 | define disable-python_code |
Jiri Olsa | 9c12cf9 | 2013-03-21 11:30:54 +0100 | [diff] [blame] | 506 | CFLAGS += -DNO_LIBPYTHON |
Jiri Olsa | 6e533cf | 2013-03-18 00:35:32 +0100 | [diff] [blame] | 507 | $(if $(1),$(warning No $(1) was found)) |
| 508 | $(warning Python support will not be built) |
| 509 | NO_LIBPYTHON := 1 |
| 510 | endef |
| 511 | |
Namhyung Kim | 56c7d79 | 2014-07-29 15:57:19 +0900 | [diff] [blame] | 512 | ifdef NO_LIBPYTHON |
| 513 | $(call disable-python) |
Jiri Olsa | 6e533cf | 2013-03-18 00:35:32 +0100 | [diff] [blame] | 514 | else |
| 515 | |
Namhyung Kim | 56c7d79 | 2014-07-29 15:57:19 +0900 | [diff] [blame] | 516 | ifndef PYTHON |
| 517 | $(call disable-python,python interpreter) |
Jiri Olsa | 6e533cf | 2013-03-18 00:35:32 +0100 | [diff] [blame] | 518 | else |
Namhyung Kim | 56c7d79 | 2014-07-29 15:57:19 +0900 | [diff] [blame] | 519 | PYTHON_WORD := $(call shell-wordify,$(PYTHON)) |
Jiri Olsa | 6e533cf | 2013-03-18 00:35:32 +0100 | [diff] [blame] | 520 | |
| 521 | ifndef PYTHON_CONFIG |
| 522 | $(call disable-python,python-config tool) |
| 523 | else |
| 524 | |
| 525 | PYTHON_CONFIG_SQ := $(call shell-sq,$(PYTHON_CONFIG)) |
| 526 | |
| 527 | PYTHON_EMBED_LDOPTS := $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null) |
| 528 | PYTHON_EMBED_LDFLAGS := $(call strip-libs,$(PYTHON_EMBED_LDOPTS)) |
| 529 | PYTHON_EMBED_LIBADD := $(call grep-libs,$(PYTHON_EMBED_LDOPTS)) |
| 530 | PYTHON_EMBED_CCOPTS := $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null) |
| 531 | FLAGS_PYTHON_EMBED := $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS) |
| 532 | |
Ingo Molnar | 9734163 | 2013-09-30 15:18:37 +0200 | [diff] [blame] | 533 | ifneq ($(feature-libpython), 1) |
Jiri Olsa | 6e533cf | 2013-03-18 00:35:32 +0100 | [diff] [blame] | 534 | $(call disable-python,Python.h (for Python 2.x)) |
| 535 | else |
| 536 | |
Ingo Molnar | 95d061c | 2013-09-30 15:40:04 +0200 | [diff] [blame] | 537 | ifneq ($(feature-libpython-version), 1) |
Jiri Olsa | 6e533cf | 2013-03-18 00:35:32 +0100 | [diff] [blame] | 538 | $(warning Python 3 is not yet supported; please set) |
| 539 | $(warning PYTHON and/or PYTHON_CONFIG appropriately.) |
| 540 | $(warning If you also have Python 2 installed, then) |
| 541 | $(warning try something like:) |
| 542 | $(warning $(and ,)) |
| 543 | $(warning $(and ,) make PYTHON=python2) |
| 544 | $(warning $(and ,)) |
| 545 | $(warning Otherwise, disable Python support entirely:) |
| 546 | $(warning $(and ,)) |
| 547 | $(warning $(and ,) make NO_LIBPYTHON=1) |
| 548 | $(warning $(and ,)) |
| 549 | $(error $(and ,)) |
| 550 | else |
Jiri Olsa | 1e9f7aa | 2013-03-21 11:41:05 +0100 | [diff] [blame] | 551 | LDFLAGS += $(PYTHON_EMBED_LDFLAGS) |
Jiri Olsa | 6e533cf | 2013-03-18 00:35:32 +0100 | [diff] [blame] | 552 | EXTLIBS += $(PYTHON_EMBED_LIBADD) |
Jiri Olsa | 7c53746 | 2013-05-24 14:35:23 +0200 | [diff] [blame] | 553 | LANG_BINDINGS += $(obj-perf)python/perf.so |
Jiri Olsa | 6e533cf | 2013-03-18 00:35:32 +0100 | [diff] [blame] | 554 | endif |
| 555 | endif |
| 556 | endif |
| 557 | endif |
| 558 | endif |
Jiri Olsa | c3cf836 | 2013-03-18 00:38:16 +0100 | [diff] [blame] | 559 | |
Jiri Olsa | 3e6a147 | 2013-10-10 22:24:00 +0200 | [diff] [blame] | 560 | ifeq ($(feature-libbfd), 1) |
Jiri Olsa | 2cf9040 | 2014-04-23 16:53:25 +0200 | [diff] [blame] | 561 | EXTLIBS += -lbfd |
| 562 | |
| 563 | # call all detections now so we get correct |
| 564 | # status in VF output |
| 565 | $(call feature_check,liberty) |
| 566 | $(call feature_check,liberty-z) |
| 567 | $(call feature_check,cplus-demangle) |
| 568 | |
| 569 | ifeq ($(feature-liberty), 1) |
| 570 | EXTLIBS += -liberty |
| 571 | else |
| 572 | ifeq ($(feature-liberty-z), 1) |
| 573 | EXTLIBS += -liberty -lz |
| 574 | endif |
| 575 | endif |
Jiri Olsa | 3e6a147 | 2013-10-10 22:24:00 +0200 | [diff] [blame] | 576 | endif |
| 577 | |
Jiri Olsa | c3cf836 | 2013-03-18 00:38:16 +0100 | [diff] [blame] | 578 | ifdef NO_DEMANGLE |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 579 | CFLAGS += -DNO_DEMANGLE |
Jiri Olsa | c3cf836 | 2013-03-18 00:38:16 +0100 | [diff] [blame] | 580 | else |
Ingo Molnar | 89fe808 | 2013-09-30 12:07:11 +0200 | [diff] [blame] | 581 | ifdef HAVE_CPLUS_DEMANGLE_SUPPORT |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 582 | EXTLIBS += -liberty |
Ingo Molnar | 89fe808 | 2013-09-30 12:07:11 +0200 | [diff] [blame] | 583 | CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 584 | else |
Jiri Olsa | 3e6a147 | 2013-10-10 22:24:00 +0200 | [diff] [blame] | 585 | ifneq ($(feature-libbfd), 1) |
Jiri Olsa | 2cf9040 | 2014-04-23 16:53:25 +0200 | [diff] [blame] | 586 | ifneq ($(feature-liberty), 1) |
| 587 | ifneq ($(feature-liberty-z), 1) |
| 588 | # we dont have neither HAVE_CPLUS_DEMANGLE_SUPPORT |
| 589 | # or any of 'bfd iberty z' trinity |
Ingo Molnar | 1c47661 | 2013-10-02 15:15:09 +0200 | [diff] [blame] | 590 | ifeq ($(feature-cplus-demangle), 1) |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 591 | EXTLIBS += -liberty |
Ingo Molnar | 89fe808 | 2013-09-30 12:07:11 +0200 | [diff] [blame] | 592 | CFLAGS += -DHAVE_CPLUS_DEMANGLE_SUPPORT |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 593 | else |
| 594 | msg := $(warning No bfd.h/libbfd found, install binutils-dev[el]/zlib-static to gain symbol demangling) |
| 595 | CFLAGS += -DNO_DEMANGLE |
| 596 | endif |
| 597 | endif |
| 598 | endif |
| 599 | endif |
| 600 | endif |
Jiri Olsa | c3cf836 | 2013-03-18 00:38:16 +0100 | [diff] [blame] | 601 | endif |
Jiri Olsa | a1c7c9e | 2013-03-18 00:41:04 +0100 | [diff] [blame] | 602 | |
Jiri Olsa | 3e6a147 | 2013-10-10 22:24:00 +0200 | [diff] [blame] | 603 | ifneq ($(filter -lbfd,$(EXTLIBS)),) |
| 604 | CFLAGS += -DHAVE_LIBBFD_SUPPORT |
| 605 | endif |
| 606 | |
Jiri Olsa | a1c7c9e | 2013-03-18 00:41:04 +0100 | [diff] [blame] | 607 | ifndef NO_BACKTRACE |
Ingo Molnar | 4cc9117 | 2013-09-30 16:49:38 +0200 | [diff] [blame] | 608 | ifeq ($(feature-backtrace), 1) |
Ingo Molnar | 89fe808 | 2013-09-30 12:07:11 +0200 | [diff] [blame] | 609 | CFLAGS += -DHAVE_BACKTRACE_SUPPORT |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 610 | endif |
Jiri Olsa | a1c7c9e | 2013-03-18 00:41:04 +0100 | [diff] [blame] | 611 | endif |
Jiri Olsa | 58a0abd | 2013-03-18 00:45:27 +0100 | [diff] [blame] | 612 | |
| 613 | ifndef NO_LIBNUMA |
Ingo Molnar | 3ae069c | 2013-09-30 13:37:10 +0200 | [diff] [blame] | 614 | ifeq ($(feature-libnuma), 0) |
Dongsheng Yang | 6305edf | 2013-12-02 10:26:48 -0500 | [diff] [blame] | 615 | msg := $(warning No numa.h found, disables 'perf bench numa mem' benchmark, please install numactl-devel/libnuma-devel/libnuma-dev); |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 616 | NO_LIBNUMA := 1 |
| 617 | else |
Ingo Molnar | 89fe808 | 2013-09-30 12:07:11 +0200 | [diff] [blame] | 618 | CFLAGS += -DHAVE_LIBNUMA_SUPPORT |
Jiri Olsa | 8e1b3f6 | 2013-04-15 04:06:58 +0200 | [diff] [blame] | 619 | EXTLIBS += -lnuma |
| 620 | endif |
Jiri Olsa | 58a0abd | 2013-03-18 00:45:27 +0100 | [diff] [blame] | 621 | endif |
Jiri Olsa | cd1c39f | 2013-03-18 00:56:01 +0100 | [diff] [blame] | 622 | |
Alexander Yarygin | da50ad6 | 2014-07-03 17:59:49 +0400 | [diff] [blame] | 623 | ifdef HAVE_KVM_STAT_SUPPORT |
| 624 | CFLAGS += -DHAVE_KVM_STAT_SUPPORT |
| 625 | endif |
| 626 | |
Adrian Hunter | e477f3f | 2014-10-23 18:16:03 -0300 | [diff] [blame] | 627 | ifeq (${IS_64_BIT}, 1) |
| 628 | ifndef NO_PERF_READ_VDSO32 |
| 629 | $(call feature_check,compile-32) |
Adrian Hunter | 46b1fa8 | 2014-10-23 13:45:24 +0300 | [diff] [blame^] | 630 | ifeq ($(feature-compile-32), 1) |
| 631 | CFLAGS += -DHAVE_PERF_READ_VDSO32 |
| 632 | else |
Adrian Hunter | e477f3f | 2014-10-23 18:16:03 -0300 | [diff] [blame] | 633 | NO_PERF_READ_VDSO32 := 1 |
| 634 | endif |
| 635 | endif |
| 636 | ifneq (${IS_X86_64}, 1) |
| 637 | NO_PERF_READ_VDSOX32 := 1 |
| 638 | endif |
| 639 | ifndef NO_PERF_READ_VDSOX32 |
| 640 | $(call feature_check,compile-x32) |
Adrian Hunter | 46b1fa8 | 2014-10-23 13:45:24 +0300 | [diff] [blame^] | 641 | ifeq ($(feature-compile-x32), 1) |
| 642 | CFLAGS += -DHAVE_PERF_READ_VDSOX32 |
| 643 | else |
Adrian Hunter | e477f3f | 2014-10-23 18:16:03 -0300 | [diff] [blame] | 644 | NO_PERF_READ_VDSOX32 := 1 |
| 645 | endif |
| 646 | endif |
| 647 | else |
| 648 | NO_PERF_READ_VDSO32 := 1 |
| 649 | NO_PERF_READ_VDSOX32 := 1 |
| 650 | endif |
| 651 | |
Jiri Olsa | cd1c39f | 2013-03-18 00:56:01 +0100 | [diff] [blame] | 652 | # Among the variables below, these: |
| 653 | # perfexecdir |
| 654 | # template_dir |
| 655 | # mandir |
| 656 | # infodir |
| 657 | # htmldir |
| 658 | # ETC_PERFCONFIG (but not sysconfdir) |
| 659 | # can be specified as a relative path some/where/else; |
| 660 | # this is interpreted as relative to $(prefix) and "perf" at |
| 661 | # runtime figures out where they are based on the path to the executable. |
| 662 | # This can help installing the suite in a relocatable way. |
| 663 | |
| 664 | # Make the path relative to DESTDIR, not to prefix |
| 665 | ifndef DESTDIR |
Jianyu Zhan | fc9cabe | 2014-06-03 00:44:34 +0800 | [diff] [blame] | 666 | prefix ?= $(HOME) |
Jiri Olsa | cd1c39f | 2013-03-18 00:56:01 +0100 | [diff] [blame] | 667 | endif |
| 668 | bindir_relative = bin |
| 669 | bindir = $(prefix)/$(bindir_relative) |
| 670 | mandir = share/man |
| 671 | infodir = share/info |
| 672 | perfexecdir = libexec/perf-core |
| 673 | sharedir = $(prefix)/share |
| 674 | template_dir = share/perf-core/templates |
| 675 | htmldir = share/doc/perf-doc |
| 676 | ifeq ($(prefix),/usr) |
| 677 | sysconfdir = /etc |
| 678 | ETC_PERFCONFIG = $(sysconfdir)/perfconfig |
| 679 | else |
| 680 | sysconfdir = $(prefix)/etc |
| 681 | ETC_PERFCONFIG = etc/perfconfig |
| 682 | endif |
Jiri Olsa | 6997af72 | 2014-08-25 16:55:52 +0200 | [diff] [blame] | 683 | ifndef lib |
Namhyung Kim | fc67297 | 2013-09-13 15:27:43 +0900 | [diff] [blame] | 684 | ifeq ($(IS_X86_64),1) |
| 685 | lib = lib64 |
| 686 | else |
Jiri Olsa | cd1c39f | 2013-03-18 00:56:01 +0100 | [diff] [blame] | 687 | lib = lib |
Namhyung Kim | fc67297 | 2013-09-13 15:27:43 +0900 | [diff] [blame] | 688 | endif |
Jiri Olsa | 6997af72 | 2014-08-25 16:55:52 +0200 | [diff] [blame] | 689 | endif # lib |
Namhyung Kim | fc67297 | 2013-09-13 15:27:43 +0900 | [diff] [blame] | 690 | libdir = $(prefix)/$(lib) |
Jiri Olsa | cd1c39f | 2013-03-18 00:56:01 +0100 | [diff] [blame] | 691 | |
| 692 | # Shell quote (do not use $(call) to accommodate ancient setups); |
| 693 | ETC_PERFCONFIG_SQ = $(subst ','\'',$(ETC_PERFCONFIG)) |
| 694 | DESTDIR_SQ = $(subst ','\'',$(DESTDIR)) |
| 695 | bindir_SQ = $(subst ','\'',$(bindir)) |
| 696 | mandir_SQ = $(subst ','\'',$(mandir)) |
| 697 | infodir_SQ = $(subst ','\'',$(infodir)) |
| 698 | perfexecdir_SQ = $(subst ','\'',$(perfexecdir)) |
| 699 | template_dir_SQ = $(subst ','\'',$(template_dir)) |
| 700 | htmldir_SQ = $(subst ','\'',$(htmldir)) |
| 701 | prefix_SQ = $(subst ','\'',$(prefix)) |
| 702 | sysconfdir_SQ = $(subst ','\'',$(sysconfdir)) |
Namhyung Kim | fc67297 | 2013-09-13 15:27:43 +0900 | [diff] [blame] | 703 | libdir_SQ = $(subst ','\'',$(libdir)) |
Jiri Olsa | cd1c39f | 2013-03-18 00:56:01 +0100 | [diff] [blame] | 704 | |
| 705 | ifneq ($(filter /%,$(firstword $(perfexecdir))),) |
| 706 | perfexec_instdir = $(perfexecdir) |
| 707 | else |
| 708 | perfexec_instdir = $(prefix)/$(perfexecdir) |
| 709 | endif |
| 710 | perfexec_instdir_SQ = $(subst ','\'',$(perfexec_instdir)) |
Jiri Olsa | 3d7c014 | 2013-12-03 14:09:21 +0100 | [diff] [blame] | 711 | |
| 712 | # If we install to $(HOME) we keep the traceevent default: |
| 713 | # $(HOME)/.traceevent/plugins |
| 714 | # Otherwise we install plugins into the global $(libdir). |
| 715 | ifdef DESTDIR |
| 716 | plugindir=$(libdir)/traceevent/plugins |
Josh Boyer | b935a58 | 2014-01-22 10:01:48 -0500 | [diff] [blame] | 717 | plugindir_SQ= $(subst ','\'',$(plugindir)) |
Jiri Olsa | 3d7c014 | 2013-12-03 14:09:21 +0100 | [diff] [blame] | 718 | endif |
Jiri Olsa | 0695e57 | 2014-02-19 16:52:54 +0100 | [diff] [blame] | 719 | |
| 720 | # |
| 721 | # Print the result of the feature test: |
| 722 | # |
Jiri Olsa | 8d79076 | 2014-02-19 16:52:55 +0100 | [diff] [blame] | 723 | feature_print_status = $(eval $(feature_print_status_code)) $(info $(MSG)) |
Jiri Olsa | 0695e57 | 2014-02-19 16:52:54 +0100 | [diff] [blame] | 724 | |
Jiri Olsa | 8d79076 | 2014-02-19 16:52:55 +0100 | [diff] [blame] | 725 | define feature_print_status_code |
Jiri Olsa | 0695e57 | 2014-02-19 16:52:54 +0100 | [diff] [blame] | 726 | ifeq ($(feature-$(1)), 1) |
| 727 | MSG = $(shell printf '...%30s: [ \033[32mon\033[m ]' $(1)) |
| 728 | else |
| 729 | MSG = $(shell printf '...%30s: [ \033[31mOFF\033[m ]' $(1)) |
| 730 | endif |
| 731 | endef |
| 732 | |
Jiri Olsa | 8d79076 | 2014-02-19 16:52:55 +0100 | [diff] [blame] | 733 | feature_print_var = $(eval $(feature_print_var_code)) $(info $(MSG)) |
| 734 | define feature_print_var_code |
| 735 | MSG = $(shell printf '...%30s: %s' $(1) $($(1))) |
| 736 | endef |
| 737 | |
| 738 | feature_print_text = $(eval $(feature_print_text_code)) $(info $(MSG)) |
| 739 | define feature_print_text_code |
| 740 | MSG = $(shell printf '...%30s: %s' $(1) $(2)) |
| 741 | endef |
| 742 | |
Jiri Olsa | 0695e57 | 2014-02-19 16:52:54 +0100 | [diff] [blame] | 743 | PERF_FEATURES := $(foreach feat,$(LIB_FEATURE_TESTS),feature-$(feat)($(feature-$(feat)))) |
| 744 | PERF_FEATURES_FILE := $(shell touch $(OUTPUT)PERF-FEATURES; cat $(OUTPUT)PERF-FEATURES) |
| 745 | |
Jiri Olsa | 0a4f2b6 | 2014-02-19 16:52:58 +0100 | [diff] [blame] | 746 | ifeq ($(dwarf-post-unwind),1) |
| 747 | PERF_FEATURES += dwarf-post-unwind($(dwarf-post-unwind-text)) |
| 748 | endif |
| 749 | |
Jiri Olsa | 0695e57 | 2014-02-19 16:52:54 +0100 | [diff] [blame] | 750 | # The $(display_lib) controls the default detection message |
| 751 | # output. It's set if: |
| 752 | # - detected features differes from stored features from |
| 753 | # last build (in PERF-FEATURES file) |
| 754 | # - one of the $(LIB_FEATURE_TESTS) is not detected |
| 755 | # - VF is enabled |
| 756 | |
| 757 | ifneq ("$(PERF_FEATURES)","$(PERF_FEATURES_FILE)") |
| 758 | $(shell echo "$(PERF_FEATURES)" > $(OUTPUT)PERF-FEATURES) |
| 759 | display_lib := 1 |
| 760 | endif |
| 761 | |
| 762 | feature_check = $(eval $(feature_check_code)) |
| 763 | define feature_check_code |
| 764 | ifneq ($(feature-$(1)), 1) |
| 765 | display_lib := 1 |
| 766 | endif |
| 767 | endef |
| 768 | |
| 769 | $(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_check,$(feat))) |
| 770 | |
| 771 | ifeq ($(VF),1) |
| 772 | display_lib := 1 |
| 773 | display_vf := 1 |
| 774 | endif |
| 775 | |
| 776 | ifeq ($(display_lib),1) |
| 777 | $(info ) |
| 778 | $(info Auto-detecting system features:) |
Jiri Olsa | 8d79076 | 2014-02-19 16:52:55 +0100 | [diff] [blame] | 779 | $(foreach feat,$(LIB_FEATURE_TESTS),$(call feature_print_status,$(feat),)) |
Jiri Olsa | 0a4f2b6 | 2014-02-19 16:52:58 +0100 | [diff] [blame] | 780 | |
| 781 | ifeq ($(dwarf-post-unwind),1) |
| 782 | $(call feature_print_text,"DWARF post unwind library", $(dwarf-post-unwind-text)) |
| 783 | endif |
Jiri Olsa | 0695e57 | 2014-02-19 16:52:54 +0100 | [diff] [blame] | 784 | endif |
| 785 | |
| 786 | ifeq ($(display_vf),1) |
Jiri Olsa | 8d79076 | 2014-02-19 16:52:55 +0100 | [diff] [blame] | 787 | $(foreach feat,$(VF_FEATURE_TESTS),$(call feature_print_status,$(feat),)) |
| 788 | $(info ) |
| 789 | $(call feature_print_var,prefix) |
| 790 | $(call feature_print_var,bindir) |
| 791 | $(call feature_print_var,libdir) |
| 792 | $(call feature_print_var,sysconfdir) |
Jiri Olsa | 0a4f2b6 | 2014-02-19 16:52:58 +0100 | [diff] [blame] | 793 | $(call feature_print_var,LIBUNWIND_DIR) |
| 794 | $(call feature_print_var,LIBDW_DIR) |
Jiri Olsa | 0695e57 | 2014-02-19 16:52:54 +0100 | [diff] [blame] | 795 | endif |
| 796 | |
| 797 | ifeq ($(display_lib),1) |
| 798 | $(info ) |
| 799 | endif |