e8e195f49a4ee7695a80b2a4d535fb35a5aac504
[firefly-linux-kernel-4.4.55.git] / tools / perf / config / feature-checks / Makefile
1
2 FILES=                                  \
3         test-all                        \
4         test-backtrace                  \
5         test-bionic                     \
6         test-dwarf                      \
7         test-fortify-source             \
8         test-glibc                      \
9         test-gtk2                       \
10         test-gtk2-infobar               \
11         test-hello                      \
12         test-libaudit                   \
13         test-libbfd                     \
14         test-liberty                    \
15         test-liberty-z                  \
16         test-cplus-demangle             \
17         test-libelf                     \
18         test-libelf-getphdrnum          \
19         test-libelf-mmap                \
20         test-libnuma                    \
21         test-libperl                    \
22         test-libpython                  \
23         test-libpython-version          \
24         test-libslang                   \
25         test-libunwind                  \
26         test-libunwind-debug-frame      \
27         test-on-exit                    \
28         test-stackprotector-all         \
29         test-stackprotector             \
30         test-timerfd
31
32 CC := $(CC) -MD
33
34 all: $(FILES)
35
36 BUILD = $(CC) $(CFLAGS) $(LDFLAGS) -o $(OUTPUT)$@ $@.c
37
38 ###############################
39
40 test-all:
41         $(BUILD) -Werror -fstack-protector -fstack-protector-all -O2 -Werror -D_FORTIFY_SOURCE=2 -ldw -lelf -lnuma $(LIBUNWIND_LIBS) -lelf -laudit -I/usr/include/slang -lslang $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null) $(FLAGS_PERL_EMBED) $(FLAGS_PYTHON_EMBED) -DPACKAGE='"perf"' -lbfd -ldl
42
43 test-hello:
44         $(BUILD)
45
46 test-stackprotector-all:
47         $(BUILD) -Werror -fstack-protector-all
48
49 test-stackprotector:
50         $(BUILD) -Werror -fstack-protector -Wstack-protector
51
52 test-fortify-source:
53         $(BUILD) -O2 -Werror -D_FORTIFY_SOURCE=2
54
55 test-bionic:
56         $(BUILD)
57
58 test-libelf:
59         $(BUILD) -lelf
60
61 test-glibc:
62         $(BUILD)
63
64 test-dwarf:
65         $(BUILD) -ldw
66
67 test-libelf-mmap:
68         $(BUILD) -lelf
69
70 test-libelf-getphdrnum:
71         $(BUILD) -lelf
72
73 test-libnuma:
74         $(BUILD) -lnuma
75
76 test-libunwind:
77         $(BUILD) $(LIBUNWIND_LIBS) -lelf
78
79 test-libaudit:
80         $(BUILD) -laudit
81
82 test-libslang:
83         $(BUILD) -I/usr/include/slang -lslang
84
85 test-gtk2:
86         $(BUILD) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
87
88 test-gtk2-infobar:
89         $(BUILD) $(shell pkg-config --libs --cflags gtk+-2.0 2>/dev/null)
90
91 grep-libs  = $(filter -l%,$(1))
92 strip-libs = $(filter-out -l%,$(1))
93
94 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null)
95 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS))
96 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS))
97 PERL_EMBED_CCOPTS = `perl -MExtUtils::Embed -e ccopts 2>/dev/null`
98 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS)
99
100 test-libperl:
101         $(BUILD) $(FLAGS_PERL_EMBED)
102
103 override PYTHON := python
104 override PYTHON_CONFIG := python-config
105
106 escape-for-shell-sq =  $(subst ','\'',$(1))
107 shell-sq = '$(escape-for-shell-sq)'
108
109 PYTHON_CONFIG_SQ = $(call shell-sq,$(PYTHON_CONFIG))
110
111 PYTHON_EMBED_LDOPTS = $(shell $(PYTHON_CONFIG_SQ) --ldflags 2>/dev/null)
112 PYTHON_EMBED_LDFLAGS = $(call strip-libs,$(PYTHON_EMBED_LDOPTS))
113 PYTHON_EMBED_LIBADD = $(call grep-libs,$(PYTHON_EMBED_LDOPTS))
114 PYTHON_EMBED_CCOPTS = $(shell $(PYTHON_CONFIG_SQ) --cflags 2>/dev/null)
115 FLAGS_PYTHON_EMBED = $(PYTHON_EMBED_CCOPTS) $(PYTHON_EMBED_LDOPTS)
116
117 test-libpython:
118         $(BUILD) $(FLAGS_PYTHON_EMBED)
119
120 test-libpython-version:
121         $(BUILD) $(FLAGS_PYTHON_EMBED)
122
123 test-libbfd:
124         $(BUILD) -DPACKAGE='"perf"' -lbfd -ldl
125
126 test-liberty:
127         $(CC) -o $(OUTPUT)$@ test-libbfd.c -DPACKAGE='"perf"' -lbfd -ldl -liberty
128
129 test-liberty-z:
130         $(CC) -o $(OUTPUT)$@ test-libbfd.c -DPACKAGE='"perf"' -lbfd -ldl -liberty -lz
131
132 test-cplus-demangle:
133         $(BUILD) -liberty
134
135 test-on-exit:
136         $(BUILD)
137
138 test-backtrace:
139         $(BUILD)
140
141 test-timerfd:
142         $(BUILD)
143
144 -include *.d
145
146 ###############################
147
148 clean:
149         rm -f $(FILES) *.d