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