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