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