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