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