Backed out changeset 3732f69b6d81 (bug 843019) for mochitest-bc failures.
[gecko.git] / Makefile.in
blob87b11c4496ea41c60af43dff185bd11248cba3d2
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 ifndef .PYMAKE
7 ifeq (,$(MAKE_VERSION))
8 $(error GNU Make is required)
9 endif
10 ifeq (,$(filter-out 3.78 3.79,$(MAKE_VERSION)))
11 $(error GNU Make 3.80 or higher is required)
12 endif
13 endif
15 export TOPLEVEL_BUILD := 1
17 default::
19 ifdef COMPILE_ENVIRONMENT
20 include $(topsrcdir)/$(MOZ_BUILD_APP)/build.mk
21 endif
24 include $(topsrcdir)/config/config.mk
26 GARBAGE_DIRS += dist _javagen _profile staticlib
27 DIST_GARBAGE = config.cache config.log config.status* config-defs.h \
28 config/autoconf.mk \
29 mozilla-config.h \
30 netwerk/necko-config.h xpcom/xpcom-config.h xpcom/xpcom-private.h \
31 .mozconfig.mk
33 ifndef MOZ_PROFILE_USE
34 # We need to explicitly put backend.RecursiveMakeBackend.built here
35 # otherwise the rule in rules.mk doesn't run early enough.
36 libs export tools:: CLOBBER $(topsrcdir)/configure config.status backend.RecursiveMakeBackend.built js-config-status
37 endif
39 CLOBBER: $(topsrcdir)/CLOBBER
40 @echo "STOP! The CLOBBER file has changed."
41 @echo "Please run the build through a sanctioned build wrapper, such as"
42 @echo "'mach build' or client.mk."
43 @exit 1
45 $(topsrcdir)/configure: $(topsrcdir)/configure.in
46 @echo "STOP! configure.in has changed, and your configure is out of date."
47 @echo "Please rerun autoconf and re-configure your build directory."
48 @echo "To ignore this message, touch 'configure' in the source directory,"
49 @echo "but your build might not succeed."
50 @exit 1
52 config.status: $(topsrcdir)/configure
53 @echo "STOP! configure has changed and needs to be run in this build directory."
54 @echo "Please rerun configure."
55 @echo "To ignore this message, touch 'config.status' in the build directory,"
56 @echo "but your build might not succeed."
57 @exit 1
59 .PHONY: js-config-status
60 js-config-status:
61 $(call SUBMAKE,backend.RecursiveMakeBackend.built,js/src,1)
63 install_manifests := bin idl include public private sdk
64 install_manifest_depends = \
65 CLOBBER \
66 $(topsrcdir)/configure \
67 config.status \
68 backend.RecursiveMakeBackend.built \
69 js-config-status \
70 $(NULL)
72 .PHONY: install-manifests
73 install-manifests: $(addprefix install-dist-,$(install_manifests))
75 .PHONY: $(addprefix install-dist-,$(install_manifests))
76 $(addprefix install-dist-,$(install_manifests)): install-dist-%: $(install_manifest_depends)
77 $(call py_action,process_install_manifest,$(if $(NO_REMOVE),--no-remove )$(DIST)/$* _build_manifests/install/dist_$* js/src/_build_manifests/install/dist_$*)
79 .PHONY: install-tests
80 install-manifests: install-tests
81 install-tests: $(install_manifest_depends)
82 $(call py_action,process_install_manifest,$(if $(NO_REMOVE),--no-remove )_tests _build_manifests/install/tests js/src/_build_manifests/install/tests)
85 # _tests should be purged during cleaning. However, we don't want it purged
86 # during PGO builds because it contains some auto-generated files.
87 ifneq ($(filter-out maybe_clobber_profiledbuild,$(MAKECMDGOALS)),)
88 GARBAGE_DIRS += _tests
89 endif
91 # Windows PGO builds don't perform a clean before the 2nd pass. So, we want
92 # to preserve content for the 2nd pass on Windows. Everywhere else, we always
93 # process the install manifests as part of export.
94 ifdef MOZ_PROFILE_USE
95 ifndef NO_PROFILE_GUIDED_OPTIMIZE
96 ifneq ($(OS_ARCH)_$(GNU_CC), WINNT_)
97 export:: install-manifests
98 endif
99 endif
100 else # !MOZ_PROFILE_USE (normal build)
101 export:: install-manifests
102 endif
104 # For historical reasons that are unknown, $(DIST)/sdk is always blown away
105 # with no regard for PGO passes. This decision could probably be revisited.
106 export:: install-dist-sdk
108 ifdef ENABLE_TESTS
109 # Additional makefile targets to call automated test suites
110 include $(topsrcdir)/testing/testsuite-targets.mk
111 endif
113 default all::
114 $(call BUILDSTATUS,TIERS export $(if $(MOZ_PSEUDO_DERECURSE),compile )libs tools)
116 include $(topsrcdir)/config/rules.mk
118 distclean::
119 $(RM) $(DIST_GARBAGE)
121 ifeq ($(OS_ARCH),WINNT)
122 # we want to copy PDB files on Windows
123 MAKE_SYM_STORE_ARGS := -c --vcs-info
124 ifdef PDBSTR_PATH
125 MAKE_SYM_STORE_ARGS += -i
126 endif
127 DUMP_SYMS_BIN ?= $(topsrcdir)/toolkit/crashreporter/tools/win32/dump_syms_vc$(_MSC_VER).exe
128 # PDB files don't get moved to dist, so we need to scan the whole objdir
129 MAKE_SYM_STORE_PATH := .
130 endif
131 ifeq ($(OS_ARCH),Darwin)
132 # need to pass arch flags for universal builds
133 ifdef UNIVERSAL_BINARY
134 MAKE_SYM_STORE_ARGS := -c -a "i386 x86_64" --vcs-info
135 MAKE_SYM_STORE_PATH := $(DIST)/universal
136 else
137 MAKE_SYM_STORE_ARGS := -c -a $(OS_TEST) --vcs-info
138 MAKE_SYM_STORE_PATH := $(DIST)/bin
139 endif
140 DUMP_SYMS_BIN ?= $(DIST)/host/bin/dump_syms
141 endif
142 ifeq (,$(filter-out Linux SunOS,$(OS_ARCH)))
143 MAKE_SYM_STORE_ARGS := -c --vcs-info
144 DUMP_SYMS_BIN ?= $(DIST)/host/bin/dump_syms
145 MAKE_SYM_STORE_PATH := $(DIST)/bin
146 endif
148 SYM_STORE_SOURCE_DIRS := $(topsrcdir)
150 include $(topsrcdir)/toolkit/mozapps/installer/package-name.mk
152 ifdef MOZ_SYMBOLS_EXTRA_BUILDID
153 EXTRA_BUILDID := -$(MOZ_SYMBOLS_EXTRA_BUILDID)
154 endif
156 SYMBOL_INDEX_NAME = \
157 $(MOZ_APP_NAME)-$(MOZ_APP_VERSION)-$(OS_TARGET)-$(BUILDID)-$(CPU_ARCH)$(EXTRA_BUILDID)-symbols.txt
159 buildsymbols:
160 ifdef MOZ_CRASHREPORTER
161 echo building symbol store
162 $(RM) -r $(DIST)/crashreporter-symbols
163 $(RM) "$(DIST)/$(SYMBOL_ARCHIVE_BASENAME).zip"
164 $(NSINSTALL) -D $(DIST)/crashreporter-symbols
165 OBJCOPY="$(OBJCOPY)" \
166 $(PYTHON) $(topsrcdir)/toolkit/crashreporter/tools/symbolstore.py \
167 $(MAKE_SYM_STORE_ARGS) \
168 $(foreach dir,$(SYM_STORE_SOURCE_DIRS),-s $(dir)) \
169 $(DUMP_SYMS_BIN) \
170 $(DIST)/crashreporter-symbols \
171 $(MAKE_SYM_STORE_PATH) | grep -iv test > \
172 $(DIST)/crashreporter-symbols/$(SYMBOL_INDEX_NAME)
173 echo packing symbols
174 $(NSINSTALL) -D $(DIST)/$(PKG_PATH)
175 cd $(DIST)/crashreporter-symbols && \
176 zip -r9D "../$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip" . -x "*test*" -x "*Test*"
177 cd $(DIST)/crashreporter-symbols && \
178 grep "sym" $(SYMBOL_INDEX_NAME) > $(SYMBOL_INDEX_NAME).tmp && \
179 mv $(SYMBOL_INDEX_NAME).tmp $(SYMBOL_INDEX_NAME)
180 cd $(DIST)/crashreporter-symbols && \
181 zip -r9D "../$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip" . -i "*.sym" -i "*.txt" -x "*test*" -x "*Test*"
182 endif # MOZ_CRASHREPORTER
184 uploadsymbols:
185 ifdef MOZ_CRASHREPORTER
186 $(SHELL) $(topsrcdir)/toolkit/crashreporter/tools/upload_symbols.sh $(SYMBOL_INDEX_NAME) "$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip"
187 endif
189 # MOZ_SOURCE_STAMP is defined in package-name.mk with a deferred assignment.
190 # exporting it makes make run its $(shell) command for each invoked submake,
191 # so transform it to an immediate assignment.
192 MOZ_SOURCE_STAMP := $(MOZ_SOURCE_STAMP)
193 export MOZ_SOURCE_STAMP
195 #XXX: this is a hack, since we don't want to clobber for MSVC
196 # PGO support, but we can't do this test in client.mk
197 ifneq ($(OS_ARCH)_$(GNU_CC), WINNT_)
198 # No point in clobbering if PGO has been explicitly disabled.
199 ifndef NO_PROFILE_GUIDED_OPTIMIZE
200 maybe_clobber_profiledbuild: clean
201 else
202 maybe_clobber_profiledbuild:
203 endif
204 else
205 maybe_clobber_profiledbuild:
206 $(RM) $(DIST)/bin/*.pgc
207 find $(DIST)/$(MOZ_APP_NAME) -name "*.pgc" -exec mv {} $(DIST)/bin \;
208 endif
210 .PHONY: maybe_clobber_profiledbuild
212 # Look for R_386_PC32 relocations in shared libs, these
213 # break x86_64 builds and SELinux users.
214 ifeq ($(OS_TARGET)_$(TARGET_XPCOM_ABI),Linux_x86-gcc3)
215 scheck::
216 @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
217 endif
219 js/src/Makefile: subsrcdir := js/src
221 ifdef ENABLE_TESTS
222 # Incorporate static tier directories into tests. This should be incorporated
223 # into moz.build files someday.
224 check::
225 $(call SUBMAKE,$@,js/src)
226 endif
228 ifdef MOZ_PSEUDO_DERECURSE
229 # Interdependencies for parallel export.
230 js/xpconnect/src/export: config/makefiles/precompile/export
231 accessible/src/xpcom/export: config/makefiles/precompile/export
232 js/src/export: mfbt/export
233 endif