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.
102 -Wmissing-prototypes \
105 -Wstrict-prototypes \
106 -Wmissing-declarations \
107 @FLAG_W_NO_FORMAT_ZERO_LENGTH@ \
108 @FLAG_W_NO_TAUTOLOGICAL_COMPARE@ \
109 -fno-strict-aliasing \
112 # These flags are used for building the preload shared objects (PSOs).
113 # The aim is to give reasonable performance but also to have good
114 # stack traces, since users often see stack traces extending
115 # into (and through) the preloads. Also, we must use any
116 # -mpreferred-stack-boundary flag to build the preload shared
117 # objects, since that risks misaligning the client's stack and
118 # results in segfaults like (eg) #324050.
119 if VGCONF_OS_IS_DARWIN
120 AM_CFLAGS_PSO_BASE = -dynamic \
121 -O -g -fno-omit-frame-pointer -fno-strict-aliasing \
122 -fpic -fPIC -fno-builtin
124 AM_CFLAGS_PSO_BASE = -O -g -fno-omit-frame-pointer -fno-strict-aliasing \
129 # Flags for specific targets.
131 # Nb: the AM_CPPFLAGS_* values are suitable for building tools and auxprogs.
132 # For building the core, coregrind/Makefile.am files add some extra things.
134 AM_CPPFLAGS_@VGCONF_PLATFORM_PRI_CAPS@ = \
136 -I$(top_srcdir)/include \
137 -I$(top_srcdir)/VEX/pub \
138 -I$(top_builddir)/VEX/pub \
139 -DVGA_@VGCONF_ARCH_PRI@=1 \
140 -DVGO_@VGCONF_OS@=1 \
141 -DVGP_@VGCONF_ARCH_PRI@_@VGCONF_OS@=1 \
142 -DVGPV_@VGCONF_ARCH_PRI@_@VGCONF_OS@_@VGCONF_PLATVARIANT@=1
143 if VGCONF_HAVE_PLATFORM_SEC
144 AM_CPPFLAGS_@VGCONF_PLATFORM_SEC_CAPS@ = \
146 -I$(top_srcdir)/include \
147 -I$(top_srcdir)/VEX/pub \
148 -I$(top_builddir)/VEX/pub \
149 -DVGA_@VGCONF_ARCH_SEC@=1 \
150 -DVGO_@VGCONF_OS@=1 \
151 -DVGP_@VGCONF_ARCH_SEC@_@VGCONF_OS@=1 \
152 -DVGPV_@VGCONF_ARCH_SEC@_@VGCONF_OS@_@VGCONF_PLATVARIANT@=1
155 AM_FLAG_M3264_X86_LINUX = @FLAG_M32@
156 AM_CFLAGS_X86_LINUX = @FLAG_M32@ @PREFERRED_STACK_BOUNDARY_2@ \
157 $(AM_CFLAGS_BASE) -fomit-frame-pointer
158 AM_CFLAGS_PSO_X86_LINUX = @FLAG_M32@ $(AM_CFLAGS_BASE) $(AM_CFLAGS_PSO_BASE)
159 AM_CCASFLAGS_X86_LINUX = @FLAG_M32@ -g
161 AM_FLAG_M3264_AMD64_LINUX = @FLAG_M64@
162 AM_CFLAGS_AMD64_LINUX = @FLAG_M64@ \
163 $(AM_CFLAGS_BASE) -fomit-frame-pointer
164 AM_CFLAGS_PSO_AMD64_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) $(AM_CFLAGS_PSO_BASE)
165 AM_CCASFLAGS_AMD64_LINUX = @FLAG_M64@ -g
167 AM_FLAG_M3264_PPC32_LINUX = @FLAG_M32@
168 AM_CFLAGS_PPC32_LINUX = @FLAG_M32@ $(AM_CFLAGS_BASE)
169 AM_CFLAGS_PSO_PPC32_LINUX = @FLAG_M32@ $(AM_CFLAGS_BASE) $(AM_CFLAGS_PSO_BASE)
170 AM_CCASFLAGS_PPC32_LINUX = @FLAG_M32@ -g
172 AM_FLAG_M3264_PPC64BE_LINUX = @FLAG_M64@
173 AM_CFLAGS_PPC64BE_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE)
174 AM_CFLAGS_PSO_PPC64BE_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) $(AM_CFLAGS_PSO_BASE)
175 AM_CCASFLAGS_PPC64BE_LINUX = @FLAG_M64@ -g
177 AM_FLAG_M3264_PPC64LE_LINUX = @FLAG_M64@
178 AM_CFLAGS_PPC64LE_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE)
179 AM_CFLAGS_PSO_PPC64LE_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) $(AM_CFLAGS_PSO_BASE)
180 AM_CCASFLAGS_PPC64LE_LINUX = @FLAG_M64@ -g
182 AM_FLAG_M3264_ARM_LINUX = @FLAG_M32@
183 AM_CFLAGS_ARM_LINUX = @FLAG_M32@ \
184 $(AM_CFLAGS_BASE) -marm -mcpu=cortex-a8
185 AM_CFLAGS_PSO_ARM_LINUX = @FLAG_M32@ $(AM_CFLAGS_BASE) \
186 -marm -mcpu=cortex-a8 $(AM_CFLAGS_PSO_BASE)
187 AM_CCASFLAGS_ARM_LINUX = @FLAG_M32@ \
188 -marm -mcpu=cortex-a8 -g
190 AM_FLAG_M3264_ARM64_LINUX = @FLAG_M64@
191 AM_CFLAGS_ARM64_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE)
192 AM_CFLAGS_PSO_ARM64_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) $(AM_CFLAGS_PSO_BASE)
193 AM_CCASFLAGS_ARM64_LINUX = @FLAG_M64@ -g
195 AM_FLAG_M3264_X86_DARWIN = -arch i386
196 AM_CFLAGS_X86_DARWIN = $(WERROR) -arch i386 $(AM_CFLAGS_BASE) \
197 -mmacosx-version-min=10.5 \
198 -fno-stack-protector -fno-pic -fno-PIC
200 AM_CFLAGS_PSO_X86_DARWIN = $(AM_CFLAGS_X86_DARWIN) $(AM_CFLAGS_PSO_BASE)
201 AM_CCASFLAGS_X86_DARWIN = -arch i386 -g
203 AM_FLAG_M3264_AMD64_DARWIN = -arch x86_64
204 AM_CFLAGS_AMD64_DARWIN = $(WERROR) -arch x86_64 $(AM_CFLAGS_BASE) \
205 -mmacosx-version-min=10.5 -fno-stack-protector
206 AM_CFLAGS_PSO_AMD64_DARWIN = $(AM_CFLAGS_AMD64_DARWIN) $(AM_CFLAGS_PSO_BASE)
207 AM_CCASFLAGS_AMD64_DARWIN = -arch x86_64 -g
209 AM_FLAG_M3264_S390X_LINUX = @FLAG_M64@
210 AM_CFLAGS_S390X_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) -fomit-frame-pointer
211 AM_CFLAGS_PSO_S390X_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) $(AM_CFLAGS_PSO_BASE)
212 AM_CCASFLAGS_S390X_LINUX = @FLAG_M64@ -g -mzarch -march=z900
214 AM_FLAG_M3264_MIPS32_LINUX = @FLAG_M32@
215 AM_CFLAGS_MIPS32_LINUX = @FLAG_M32@ $(AM_CFLAGS_BASE) @FLAG_MIPS32@
216 AM_CFLAGS_PSO_MIPS32_LINUX = @FLAG_M32@ $(AM_CFLAGS_BASE) @FLAG_MIPS32@ \
217 $(AM_CFLAGS_PSO_BASE)
218 AM_CCASFLAGS_MIPS32_LINUX = @FLAG_M32@ -g @FLAG_MIPS32@
220 AM_FLAG_M3264_MIPS64_LINUX = @FLAG_M64@
221 AM_CFLAGS_MIPS64_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) @FLAG_MIPS64@
222 AM_CFLAGS_PSO_MIPS64_LINUX = @FLAG_M64@ $(AM_CFLAGS_BASE) @FLAG_MIPS64@ \
223 $(AM_CFLAGS_PSO_BASE)
224 AM_CCASFLAGS_MIPS64_LINUX = @FLAG_M64@ -g @FLAG_MIPS64@
226 # Flags for the primary target. These must be used to build the
227 # regtests and performance tests. In fact, these must be used to
228 # build anything which is built only once on a dual-arch build.
230 AM_FLAG_M3264_PRI = $(AM_FLAG_M3264_@VGCONF_PLATFORM_PRI_CAPS@)
231 AM_CPPFLAGS_PRI = $(AM_CPPFLAGS_@VGCONF_PLATFORM_PRI_CAPS@)
232 AM_CFLAGS_PRI = $(AM_CFLAGS_@VGCONF_PLATFORM_PRI_CAPS@)
233 AM_CCASFLAGS_PRI = $(AM_CCASFLAGS_@VGCONF_PLATFORM_PRI_CAPS@)
235 if VGCONF_HAVE_PLATFORM_SEC
236 AM_FLAG_M3264_SEC = $(AM_FLAG_M3264_@VGCONF_PLATFORM_SEC_CAPS@)
242 # Baseline link flags for making vgpreload shared objects.
244 PRELOAD_LDFLAGS_COMMON_LINUX = -nodefaultlibs -shared -Wl,-z,interpose,-z,initfirst
245 PRELOAD_LDFLAGS_COMMON_DARWIN = -dynamic -dynamiclib -all_load
247 if VGCONF_PLATVARIANT_IS_ANDROID
248 # The Android toolchain includes all kinds of stdlib helpers present in
249 # bionic which is bad because we are not linking with it and the Android
251 PRELOAD_LDFLAGS_COMMON_LINUX += -nostdlib
254 PRELOAD_LDFLAGS_X86_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@
255 PRELOAD_LDFLAGS_AMD64_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@
256 PRELOAD_LDFLAGS_PPC32_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@
257 PRELOAD_LDFLAGS_PPC64BE_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@
258 PRELOAD_LDFLAGS_PPC64LE_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@
259 PRELOAD_LDFLAGS_ARM_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@
260 PRELOAD_LDFLAGS_ARM64_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@
261 PRELOAD_LDFLAGS_X86_DARWIN = $(PRELOAD_LDFLAGS_COMMON_DARWIN) -arch i386
262 PRELOAD_LDFLAGS_AMD64_DARWIN = $(PRELOAD_LDFLAGS_COMMON_DARWIN) -arch x86_64
263 PRELOAD_LDFLAGS_S390X_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@
264 PRELOAD_LDFLAGS_MIPS32_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M32@
265 PRELOAD_LDFLAGS_MIPS64_LINUX = $(PRELOAD_LDFLAGS_COMMON_LINUX) @FLAG_M64@