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