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