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