Bug 1034294 - Fix SharedBufferManagerParent
[gecko.git] / Makefile.in
blob70b14d02912618c38c72266f5b156040b59af6c0
2 # This Source Code Form is subject to the terms of the Mozilla Public
3 # License, v. 2.0. If a copy of the MPL was not distributed with this
4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 ifeq (,$(MAKE_VERSION))
7 $(error GNU Make is required)
8 endif
9 make_min_ver := 3.81
10 ifneq ($(make_min_ver),$(firstword $(sort $(make_min_ver) $(MAKE_VERSION))))
11 $(error GNU Make $(make_min_ver) or higher is required)
12 endif
14 export TOPLEVEL_BUILD := 1
16 default::
18 ifdef MOZ_BUILD_APP
19 include $(topsrcdir)/$(MOZ_BUILD_APP)/build.mk
20 endif
22 include $(topsrcdir)/config/config.mk
24 GARBAGE_DIRS += dist _javagen _profile staticlib
25 DIST_GARBAGE = config.cache config.log config.status* config-defs.h \
26 config/autoconf.mk \
27 mozilla-config.h \
28 netwerk/necko-config.h xpcom/xpcom-config.h xpcom/xpcom-private.h \
29 .mozconfig.mk
31 ifdef JS_STANDALONE
32 configure_dir = $(topsrcdir)/js/src
33 else
34 configure_dir = $(topsrcdir)
35 endif
37 ifndef MOZ_PROFILE_USE
38 # We need to explicitly put backend.RecursiveMakeBackend here
39 # otherwise the rule in rules.mk doesn't run early enough.
40 libs binaries export tools:: CLOBBER $(configure_dir)/configure config.status backend.RecursiveMakeBackend
41 ifndef JS_STANDALONE
42 ifndef LIBXUL_SDK
43 libs binaries export tools:: $(topsrcdir)/js/src/configure js/src/config.status
44 endif
45 endif
46 endif
48 ifdef JS_STANDALONE
49 .PHONY: CLOBBER
50 CLOBBER:
51 else
52 CLOBBER: $(topsrcdir)/CLOBBER
53 @echo 'STOP! The CLOBBER file has changed.'
54 @echo 'Please run the build through a sanctioned build wrapper, such as'
55 @echo '"mach build" or client.mk.'
56 @exit 1
57 endif
59 $(topsrcdir)/configure: $(topsrcdir)/configure.in
60 $(topsrcdir)/js/src/configure: $(topsrcdir)/js/src/configure.in
61 $(topsrcdir)/configure $(topsrcdir)/js/src/configure:
62 @echo 'STOP! $^ has changed, and your configure is out of date.'
63 @echo 'Please rerun autoconf and re-configure your build directory.'
64 @echo 'To ignore this message, touch "$@",'
65 @echo 'but your build might not succeed.'
66 @exit 1
68 config.status: $(configure_dir)/configure
69 js/src/config.status: $(topsrcdir)/js/src/configure
70 config.status js/src/config.status:
71 @echo 'STOP! $^ has changed and needs to be run again.'
72 @echo 'Please rerun it.'
73 @echo 'To ignore this message, touch "$(CURDIR)/$@",'
74 @echo 'but your build might not succeed.'
75 @exit 1
77 # Regenerate the build backend if it is out of date. We only have this rule in
78 # this main make file because having it in rules.mk and applied to partial tree
79 # builds resulted in a world of hurt. Gory details are in bug 877308.
81 # The mach build driver will ensure the backend is up to date for partial tree
82 # builds. This cleanly avoids most of the pain.
84 backend.RecursiveMakeBackend:
85 @echo 'Build configuration changed. Regenerating backend.'
86 $(PYTHON) config.status
88 Makefile: backend.RecursiveMakeBackend
89 @$(TOUCH) $@
91 include backend.RecursiveMakeBackend.pp
93 default:: backend.RecursiveMakeBackend
95 install_manifests := bin idl include public private sdk
96 install_manifest_depends = \
97 CLOBBER \
98 $(configure_dir)/configure \
99 config.status \
100 backend.RecursiveMakeBackend \
101 $(NULL)
103 ifndef JS_STANDALONE
104 ifndef LIBXUL_SDK
105 install_manifest_depends += \
106 $(topsrcdir)/js/src/configure \
107 js/src/config.status \
108 $(NULL)
109 endif
110 endif
112 .PHONY: install-manifests
113 install-manifests: $(addprefix install-dist-,$(install_manifests))
115 # process_install_manifest needs to be invoked with --no-remove when building
116 # js as standalone because automated builds are building nspr separately and
117 # that would remove the resulting files.
118 # Eventually, a standalone js build would just be able to build nspr itself,
119 # removing the need for the former.
120 ifdef JS_STANDALONE
121 NO_REMOVE=1
122 endif
124 .PHONY: $(addprefix install-dist-,$(install_manifests))
125 $(addprefix install-dist-,$(install_manifests)): install-dist-%: $(install_manifest_depends)
126 $(call py_action,process_install_manifest,$(if $(NO_REMOVE),--no-remove )$(DIST)/$* _build_manifests/install/dist_$*)
128 .PHONY: install-tests
129 install-manifests: install-tests
130 install-tests: $(install_manifest_depends)
131 $(call py_action,process_install_manifest,$(if $(NO_REMOVE),--no-remove )_tests _build_manifests/install/tests)
133 include $(topsrcdir)/build/moz-automation.mk
135 # _tests should be purged during cleaning. However, we don't want it purged
136 # during PGO builds because it contains some auto-generated files.
137 ifneq ($(filter-out maybe_clobber_profiledbuild,$(MAKECMDGOALS)),)
138 GARBAGE_DIRS += _tests
139 endif
141 # Windows PGO builds don't perform a clean before the 2nd pass. So, we want
142 # to preserve content for the 2nd pass on Windows. Everywhere else, we always
143 # process the install manifests as part of export.
144 ifdef MOZ_PROFILE_USE
145 ifndef NO_PROFILE_GUIDED_OPTIMIZE
146 ifneq ($(OS_ARCH)_$(GNU_CC), WINNT_)
147 export:: install-manifests
148 binaries::
149 @$(MAKE) install-manifests NO_REMOVE=1
150 endif
151 endif
152 else # !MOZ_PROFILE_USE (normal build)
153 export:: install-manifests
154 binaries::
155 @$(MAKE) install-manifests NO_REMOVE=1
156 endif
158 # For historical reasons that are unknown, $(DIST)/sdk is always blown away
159 # with no regard for PGO passes. This decision could probably be revisited.
160 export:: install-dist-sdk
162 ifndef JS_STANDALONE
163 ifdef ENABLE_TESTS
164 # Additional makefile targets to call automated test suites
165 include $(topsrcdir)/testing/testsuite-targets.mk
166 endif
167 endif
169 default all::
170 $(call BUILDSTATUS,TIERS export $(if $(COMPILE_ENVIRONMENT),$(if $(MOZ_PSEUDO_DERECURSE),compile ))libs tools $(if $(MOZ_AUTOMATION),$(MOZ_AUTOMATION_TIERS)))
172 include $(topsrcdir)/config/rules.mk
174 distclean::
175 $(RM) $(DIST_GARBAGE)
177 ifeq ($(OS_ARCH),WINNT)
178 # we want to copy PDB files on Windows
179 MAKE_SYM_STORE_ARGS := -c --vcs-info
180 ifdef PDBSTR_PATH
181 MAKE_SYM_STORE_ARGS += -i
182 endif
183 DUMP_SYMS_BIN ?= $(topsrcdir)/toolkit/crashreporter/tools/win32/dump_syms_vc$(_MSC_VER).exe
184 # PDB files don't get moved to dist, so we need to scan the whole objdir
185 MAKE_SYM_STORE_PATH := .
186 endif
187 ifeq ($(OS_ARCH),Darwin)
188 # need to pass arch flags for universal builds
189 ifdef UNIVERSAL_BINARY
190 MAKE_SYM_STORE_ARGS := -c -a 'i386 x86_64' --vcs-info
191 MAKE_SYM_STORE_PATH := $(DIST)/universal
192 else
193 MAKE_SYM_STORE_ARGS := -c -a $(OS_TEST) --vcs-info
194 MAKE_SYM_STORE_PATH := $(DIST)/bin
195 endif
196 DUMP_SYMS_BIN ?= $(DIST)/host/bin/dump_syms
197 endif
198 ifeq (,$(filter-out Linux SunOS,$(OS_ARCH)))
199 MAKE_SYM_STORE_ARGS := -c --vcs-info
200 DUMP_SYMS_BIN ?= $(DIST)/host/bin/dump_syms
201 MAKE_SYM_STORE_PATH := $(DIST)/bin
202 endif
204 SYM_STORE_SOURCE_DIRS := $(topsrcdir)
206 ifndef JS_STANDALONE
207 include $(topsrcdir)/toolkit/mozapps/installer/package-name.mk
209 ifdef MOZ_SYMBOLS_EXTRA_BUILDID
210 EXTRA_BUILDID := -$(MOZ_SYMBOLS_EXTRA_BUILDID)
211 endif
213 SYMBOL_INDEX_NAME = \
214 $(MOZ_APP_NAME)-$(MOZ_APP_VERSION)-$(OS_TARGET)-$(BUILDID)-$(CPU_ARCH)$(EXTRA_BUILDID)-symbols.txt
216 buildsymbols:
217 ifdef MOZ_CRASHREPORTER
218 echo building symbol store
219 $(RM) -r $(DIST)/crashreporter-symbols
220 $(RM) '$(DIST)/$(SYMBOL_ARCHIVE_BASENAME).zip'
221 $(NSINSTALL) -D $(DIST)/crashreporter-symbols
222 OBJCOPY='$(OBJCOPY)' \
223 $(PYTHON) $(topsrcdir)/toolkit/crashreporter/tools/symbolstore.py \
224 $(MAKE_SYM_STORE_ARGS) \
225 $(foreach dir,$(SYM_STORE_SOURCE_DIRS),-s $(dir)) \
226 $(DUMP_SYMS_BIN) \
227 $(DIST)/crashreporter-symbols \
228 $(MAKE_SYM_STORE_PATH) | grep -iv test > \
229 $(DIST)/crashreporter-symbols/$(SYMBOL_INDEX_NAME)
230 echo packing symbols
231 $(NSINSTALL) -D $(DIST)/$(PKG_PATH)
232 cd $(DIST)/crashreporter-symbols && \
233 zip -r9D '../$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip' . -x '*test*' -x '*Test*'
234 cd $(DIST)/crashreporter-symbols && \
235 grep 'sym' $(SYMBOL_INDEX_NAME) > $(SYMBOL_INDEX_NAME).tmp && \
236 mv $(SYMBOL_INDEX_NAME).tmp $(SYMBOL_INDEX_NAME)
237 cd $(DIST)/crashreporter-symbols && \
238 zip -r9D '../$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip' . -i '*.sym' -i '*.txt' -x '*test*' -x '*Test*'
239 endif # MOZ_CRASHREPORTER
241 uploadsymbols:
242 ifdef MOZ_CRASHREPORTER
243 $(SHELL) $(topsrcdir)/toolkit/crashreporter/tools/upload_symbols.sh $(SYMBOL_INDEX_NAME) '$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip'
244 endif
246 # MOZ_SOURCE_STAMP is defined in package-name.mk with a deferred assignment.
247 # exporting it makes make run its $(shell) command for each invoked submake,
248 # so transform it to an immediate assignment.
249 MOZ_SOURCE_STAMP := $(MOZ_SOURCE_STAMP)
250 export MOZ_SOURCE_STAMP
251 endif
253 update-packaging:
254 $(MAKE) -C tools/update-packaging
256 #XXX: this is a hack, since we don't want to clobber for MSVC
257 # PGO support, but we can't do this test in client.mk
258 ifneq ($(OS_ARCH)_$(GNU_CC), WINNT_)
259 # No point in clobbering if PGO has been explicitly disabled.
260 ifndef NO_PROFILE_GUIDED_OPTIMIZE
261 maybe_clobber_profiledbuild: clean
262 else
263 maybe_clobber_profiledbuild:
264 endif
265 else
266 maybe_clobber_profiledbuild:
267 $(RM) $(DIST)/bin/*.pgc
268 find $(DIST)/$(MOZ_APP_NAME) -name '*.pgc' -exec mv {} $(DIST)/bin \;
269 endif
271 .PHONY: maybe_clobber_profiledbuild
273 # Look for R_386_PC32 relocations in shared libs, these
274 # break x86_64 builds and SELinux users.
275 ifeq ($(OS_TARGET)_$(TARGET_XPCOM_ABI),Linux_x86-gcc3)
276 check::
277 @relcount=`find $(DIST)/bin -name '*.so' | xargs objdump -R | grep R_386_PC32 | wc -l` && if test $$relcount -gt 0; then echo 'FAILED: R_386_PC32 relocations detected in a shared library. Did you use a system header without adding it to config/system-headers?'; exit 1; else echo 'PASSED'; fi
278 endif
280 ifdef JS_STANDALONE
281 # Delegate js-specific rules to js
282 check-%:
283 $(MAKE) -C js/src $@
285 source-package install:
286 $(MAKE) -C js/src $@
288 # Every export rule depends on config/export, but the rule for config/export
289 # doesn't exist when building js non-standalone.
290 .PHONY: config/export
291 config/export:
293 endif
295 ifdef MOZ_PSEUDO_DERECURSE
296 # Interdependencies for parallel export.
297 js/xpconnect/src/export: dom/bindings/export xpcom/xpidl/export
298 accessible/xpcom/export: xpcom/xpidl/export
299 ifdef ENABLE_CLANG_PLUGIN
300 js/src/export config/export: build/clang-plugin/export
301 endif
302 endif