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