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