2 # This file should be included (directly or indirectly) by every
3 # Makefile.am that builds programs. And also the top-level Makefile.am.
5 #----------------------------------------------------------------------------
7 #----------------------------------------------------------------------------
9 inplacedir = $(top_builddir)/.in_place
11 # This used to be required when Vex had a handwritten Makefile. It
12 # shouldn't be needed any more, though.
15 #----------------------------------------------------------------------------
16 # noinst_PROGRAMS and noinst_DSYMS targets
17 #----------------------------------------------------------------------------
19 # On Darwin, for a program 'p', the DWARF debug info is stored in the
20 # directory 'p.dSYM'. This must be generated after the executable is
21 # created, with 'dsymutil p'. We could redefine LINK with a script that
22 # executes 'dsymutil' after linking, but that's a pain. Instead we use this
23 # hook so that every time "make check" is run, we subsequently invoke
24 # 'dsymutil' on all the executables that lack a .dSYM directory, or that are
25 # newer than their corresponding .dSYM directory.
26 build-noinst_DSYMS: $(noinst_DSYMS)
27 for f in $(noinst_DSYMS); do \
28 if [ ! -e $$f.dSYM -o $$f -nt $$f.dSYM ] ; then \
29 echo "dsymutil $$f"; \
34 # This is used by coregrind/Makefile.am and Makefile.tool.am for doing
35 # "in-place" installs. It copies $(noinst_PROGRAMS) into $inplacedir.
36 # It needs to be depended on by an 'all-local' rule.
37 inplace-noinst_PROGRAMS: $(noinst_PROGRAMS)
38 mkdir -p $(inplacedir); \
39 for f in $(noinst_PROGRAMS) ; do \
40 rm -f $(inplacedir)/$$f; \
41 ln -f -s ../$(subdir)/$$f $(inplacedir); \
44 # Similar to inplace-noinst_PROGRAMS
45 inplace-noinst_DSYMS: build-noinst_DSYMS
46 mkdir -p $(inplacedir); \
47 for f in $(noinst_DSYMS); do \
48 rm -f $(inplacedir)/$$f.dSYM; \
49 ln -f -s ../$(subdir)/$$f.dSYM $(inplacedir); \
52 # This is used by coregrind/Makefile.am and by <tool>/Makefile.am for doing
53 # "make install". It copies $(noinst_PROGRAMS) into $prefix/lib/valgrind/.
54 # It needs to be depended on by an 'install-exec-local' rule.
55 install-noinst_PROGRAMS: $(noinst_PROGRAMS)
56 $(mkinstalldirs) $(DESTDIR)$(pkglibdir); \
57 for f in $(noinst_PROGRAMS); do \
58 $(INSTALL_PROGRAM) $$f $(DESTDIR)$(pkglibdir); \
61 # This is used by coregrind/Makefile.am and by <tool>/Makefile.am for doing
62 # "make uninstall". It removes $(noinst_PROGRAMS) from $prefix/lib/valgrind/.
63 # It needs to be depended on by an 'uninstall-local' rule.
64 uninstall-noinst_PROGRAMS:
65 for f in $(noinst_PROGRAMS); do \
66 rm -f $(DESTDIR)$(pkglibdir)/$$f; \
69 # Similar to install-noinst_PROGRAMS.
70 # Nb: we don't use $(INSTALL_PROGRAM) here because it doesn't work with
71 # directories. XXX: not sure whether the resulting permissions will be
72 # correct when using 'cp -R'...
73 install-noinst_DSYMS: build-noinst_DSYMS
74 $(mkinstalldirs) $(DESTDIR)$(pkglibdir); \
75 for f in $(noinst_DSYMS); do \
76 cp -R $$f.dSYM $(DESTDIR)$(pkglibdir); \
79 # Similar to uninstall-noinst_PROGRAMS.
80 uninstall-noinst_DSYMS:
81 for f in $(noinst_DSYMS); do \
82 rm -f $(DESTDIR)$(pkglibdir)/$$f.dSYM; \
85 # This needs to be depended on by a 'clean-local' rule.
87 for f in $(noinst_DSYMS); do \
91 #----------------------------------------------------------------------------
93 #----------------------------------------------------------------------------
95 # Baseline flags for all compilations. Aim here is to maximise
96 # performance and get whatever useful warnings we can out of gcc.
97 # -fno-builtin is important for defeating LLVM's idiom recognition
98 # that somehow causes VG_(memset) to get into infinite recursion.
104 -Wmissing-prototypes \
107 -Wstrict-prototypes \
108 -Wmissing-declarations \
110 @FLAG_W_WRITE_STRINGS@ \
111 @FLAG_W_EMPTY_BODY@ \
113 @FLAG_W_FORMAT_SECURITY@ \
114 @FLAG_W_IGNORED_QUALIFIERS@ \
115 @FLAG_W_MISSING_PARAMETER_TYPE@ \
116 @FLAG_W_OLD_STYLE_DECLARATION@ \
117 @FLAG_FNO_STACK_PROTECTOR@ \
119 -fno-strict-aliasing \
123 AM_CFLAGS_BASE += -Wno-cast-align -Wno-self-assign \
124 -Wno-tautological-compare
127 # These flags are used for building the preload shared objects (PSOs).
128 # The aim is to give reasonable performance but also to have good
129 # stack traces, since users often see stack traces extending
130 # into (and through) the preloads. Also, we must use any
131 # -mpreferred-stack-boundary flag to build the preload shared
132 # objects, since that risks misaligning the client's stack and
133 # results in segfaults like (eg) #324050.
134 if VGCONF_OS_IS_DARWIN
135 AM_CFLAGS_PSO_BASE = -dynamic \
136 -O -g -fno-omit-frame-pointer -fno-strict-aliasing \
137 -fpic -fPIC -fno-builtin @FLAG_FNO_IPA_ICF@
139 AM_CFLAGS_PSO_BASE = -O -g -fno-omit-frame-pointer -fno-strict-aliasing \
140 -fpic -fno-builtin @FLAG_FNO_IPA_ICF@
144 # Flags for specific targets.
146 # Nb: the AM_CPPFLAGS_* values are suitable for building tools and auxprogs.
147 # For building the core, coregrind/Makefile.am files add some extra things.
149 AM_CPPFLAGS_@VGCONF_PLATFORM_PRI_CAPS@ = \
151 -I$(top_srcdir)/include \
152 -I$(top_srcdir)/VEX/pub \
153 -I$(top_builddir)/VEX/pub \
154 -DVGA_@VGCONF_ARCH_PRI@=1 \
155 -DVGO_@VGCONF_OS@=1 \
156 -DVGP_@VGCONF_ARCH_PRI@_@VGCONF_OS@=1 \
157 -DVGPV_@VGCONF_ARCH_PRI@_@VGCONF_OS@_@VGCONF_PLATVARIANT@=1
158 if VGCONF_HAVE_PLATFORM_SEC
159 AM_CPPFLAGS_@VGCONF_PLATFORM_SEC_CAPS@ = \
161 -I$(top_srcdir)/include \
162 -I$(top_srcdir)/VEX/pub \
163 -I$(top_builddir)/VEX/pub \
164 -DVGA_@VGCONF_ARCH_SEC@=1 \
165 -DVGO_@VGCONF_OS@=1 \
166 -DVGP_@VGCONF_ARCH_SEC@_@VGCONF_OS@=1 \
167 -DVGPV_@VGCONF_ARCH_SEC@_@VGCONF_OS@_@VGCONF_PLATVARIANT@=1
170 AM_FLAG_M3264_X86_LINUX = @FLAG_M32@
171 AM_CFLAGS_X86_LINUX = @FLAG_M32@ @PREFERRED_STACK_BOUNDARY_2@ \
172 $(AM_CFLAGS_BASE) -fomit-frame-pointer
173 AM_CFLAGS_PSO_X86_LINUX = @FLAG_M32@ $(AM_CFLAGS_BASE) $(AM_CFLAGS_PSO_BASE)
174 AM_CCASFLAGS_X86_LINUX = @FLAG_M32@ -g
176 AM_FLAG_M3264_AMD64_LINUX = @FLAG_M64@
177 AM_CFLAGS_AMD64_LINUX = @FLAG_M64@ \
178 $(AM_CFLAGS_BASE) -fomit-frame-pointer
179 AM_CFLAGS_PSO_AMD64_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) $(AM_CFLAGS_PSO_BASE)
180 AM_CCASFLAGS_AMD64_LINUX = @FLAG_M64@ -g
182 AM_FLAG_M3264_PPC32_LINUX = @FLAG_M32@
183 AM_CFLAGS_PPC32_LINUX = @FLAG_M32@ $(AM_CFLAGS_BASE)
184 AM_CFLAGS_PSO_PPC32_LINUX = @FLAG_M32@ $(AM_CFLAGS_BASE) $(AM_CFLAGS_PSO_BASE)
185 AM_CCASFLAGS_PPC32_LINUX = @FLAG_M32@ -g
187 AM_FLAG_M3264_PPC64BE_LINUX = @FLAG_M64@
188 AM_CFLAGS_PPC64BE_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE)
189 AM_CFLAGS_PSO_PPC64BE_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) $(AM_CFLAGS_PSO_BASE)
190 AM_CCASFLAGS_PPC64BE_LINUX = @FLAG_M64@ -g
192 AM_FLAG_M3264_PPC64LE_LINUX = @FLAG_M64@
193 AM_CFLAGS_PPC64LE_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE)
194 AM_CFLAGS_PSO_PPC64LE_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) $(AM_CFLAGS_PSO_BASE)
195 AM_CCASFLAGS_PPC64LE_LINUX = @FLAG_M64@ -g
197 AM_FLAG_M3264_ARM_LINUX = @FLAG_M32@
198 AM_CFLAGS_ARM_LINUX = @FLAG_M32@ \
199 $(AM_CFLAGS_BASE) -marm -mcpu=cortex-a8
200 AM_CFLAGS_PSO_ARM_LINUX = @FLAG_M32@ $(AM_CFLAGS_BASE) \
201 -marm -mcpu=cortex-a8 $(AM_CFLAGS_PSO_BASE)
202 AM_CCASFLAGS_ARM_LINUX = @FLAG_M32@ \
203 -marm -mcpu=cortex-a8 -g
205 AM_FLAG_M3264_ARM64_LINUX = @FLAG_M64@
206 AM_CFLAGS_ARM64_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE)
207 AM_CFLAGS_PSO_ARM64_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) $(AM_CFLAGS_PSO_BASE)
208 AM_CCASFLAGS_ARM64_LINUX = @FLAG_M64@ -g
210 AM_FLAG_M3264_X86_DARWIN = -arch i386
211 AM_CFLAGS_X86_DARWIN = $(WERROR) -arch i386 $(AM_CFLAGS_BASE) \
212 -mmacosx-version-min=10.5 \
213 -fno-stack-protector -fno-pic -fno-PIC
215 AM_CFLAGS_PSO_X86_DARWIN = $(AM_CFLAGS_X86_DARWIN) $(AM_CFLAGS_PSO_BASE)
216 AM_CCASFLAGS_X86_DARWIN = -arch i386 -g
218 AM_FLAG_M3264_AMD64_DARWIN = -arch x86_64
219 AM_CFLAGS_AMD64_DARWIN = $(WERROR) -arch x86_64 $(AM_CFLAGS_BASE) \
220 -mmacosx-version-min=10.5 -fno-stack-protector
221 AM_CFLAGS_PSO_AMD64_DARWIN = $(AM_CFLAGS_AMD64_DARWIN) $(AM_CFLAGS_PSO_BASE)
222 AM_CCASFLAGS_AMD64_DARWIN = -arch x86_64 -g
224 AM_FLAG_M3264_S390X_LINUX = @FLAG_M64@
225 AM_CFLAGS_S390X_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) -fomit-frame-pointer
226 AM_CFLAGS_PSO_S390X_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) $(AM_CFLAGS_PSO_BASE)
227 AM_CCASFLAGS_S390X_LINUX = @FLAG_M64@ -g -mzarch -march=z900
229 AM_FLAG_M3264_MIPS32_LINUX = @FLAG_M32@
230 AM_CFLAGS_MIPS32_LINUX = @FLAG_M32@ $(AM_CFLAGS_BASE) @FLAG_MIPS32@
231 AM_CFLAGS_PSO_MIPS32_LINUX = @FLAG_M32@ $(AM_CFLAGS_BASE) @FLAG_MIPS32@ \
232 $(AM_CFLAGS_PSO_BASE)
233 AM_CCASFLAGS_MIPS32_LINUX = @FLAG_M32@ -g @FLAG_MIPS32@
235 AM_FLAG_M3264_MIPS64_LINUX = @FLAG_M64@
236 AM_CFLAGS_MIPS64_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) @FLAG_MIPS64@
237 AM_CFLAGS_PSO_MIPS64_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) @FLAG_MIPS64@ \
238 $(AM_CFLAGS_PSO_BASE)
239 AM_CCASFLAGS_MIPS64_LINUX = @FLAG_M64@ -g @FLAG_MIPS64@
241 AM_CFLAGS_TILEGX_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE)
242 AM_CFLAGS_PSO_TILEGX_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) $(AM_CFLAGS_PSO_BASE)
244 # Flags for the primary target. These must be used to build the
245 # regtests and performance tests. In fact, these must be used to
246 # build anything which is built only once on a dual-arch build.
248 AM_FLAG_M3264_PRI = $(AM_FLAG_M3264_@VGCONF_PLATFORM_PRI_CAPS@)
249 AM_CPPFLAGS_PRI = $(AM_CPPFLAGS_@VGCONF_PLATFORM_PRI_CAPS@)
250 AM_CFLAGS_PRI = $(AM_CFLAGS_@VGCONF_PLATFORM_PRI_CAPS@)
251 AM_CCASFLAGS_PRI = $(AM_CCASFLAGS_@VGCONF_PLATFORM_PRI_CAPS@)
253 if VGCONF_HAVE_PLATFORM_SEC
254 AM_FLAG_M3264_SEC = $(AM_FLAG_M3264_@VGCONF_PLATFORM_SEC_CAPS@)
260 # Baseline link flags for making vgpreload shared objects.
262 PRELOAD_LDFLAGS_COMMON_LINUX = -nodefaultlibs -shared -Wl,-z,interpose,-z,initfirst
263 PRELOAD_LDFLAGS_COMMON_DARWIN = -dynamic -dynamiclib -all_load
265 if VGCONF_PLATVARIANT_IS_ANDROID
266 # The Android toolchain includes all kinds of stdlib helpers present in
267 # bionic which is bad because we are not linking with it and the Android
269 PRELOAD_LDFLAGS_COMMON_LINUX += -nostdlib
272 PRELOAD_LDFLAGS_X86_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@
273 PRELOAD_LDFLAGS_AMD64_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@
274 PRELOAD_LDFLAGS_PPC32_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@
275 PRELOAD_LDFLAGS_PPC64BE_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@
276 PRELOAD_LDFLAGS_PPC64LE_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@
277 PRELOAD_LDFLAGS_ARM_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@
278 PRELOAD_LDFLAGS_ARM64_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@
279 PRELOAD_LDFLAGS_X86_DARWIN = $(PRELOAD_LDFLAGS_COMMON_DARWIN) -arch i386
280 PRELOAD_LDFLAGS_AMD64_DARWIN = $(PRELOAD_LDFLAGS_COMMON_DARWIN) -arch x86_64
281 PRELOAD_LDFLAGS_S390X_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@
282 PRELOAD_LDFLAGS_MIPS32_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@
283 PRELOAD_LDFLAGS_MIPS64_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@
284 PRELOAD_LDFLAGS_TILEGX_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@