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