1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 include("build/moz.configure/init.configure")
10 # - Gecko-specific options and rules should go in toolkit/moz.configure.
11 # - Firefox-specific options and rules should go in browser/moz.configure.
12 # - Fennec-specific options and rules should go in
13 # mobile/android/moz.configure.
14 # - Spidermonkey-specific options and rules should go in js/moz.configure.
18 "--enable-artifact-builds",
19 env="MOZ_ARTIFACT_BUILDS",
20 help="Download and use prebuilt binary artifacts.",
24 @depends("--enable-artifact-builds")
25 def artifact_builds(value):
30 set_config("MOZ_ARTIFACT_BUILDS", artifact_builds)
33 "--enable-artifact-build-symbols",
34 depends(artifact_builds)(lambda v: False if v is None else None),
35 reason="--disable-artifact-builds",
39 "--enable-artifact-build-symbols",
42 help="Download symbols when artifact builds are enabled.",
46 @depends("--enable-artifact-build-symbols", "MOZ_AUTOMATION", target)
47 def enable_artifact_build_symbols(value, automation, target):
51 if target.os == "Android" and not automation:
57 set_config("MOZ_ARTIFACT_BUILD_SYMBOLS", enable_artifact_build_symbols)
60 @depends("--enable-artifact-builds")
61 def imply_disable_compile_environment(value):
68 help="For builds that do not support symbols in the normal fashion,"
69 " generate and copy them into the resulting build archive.",
72 set_config("MOZ_COPY_PDBS", depends_if("MOZ_COPY_PDBS")(lambda _: True))
74 imply_option("--enable-compile-environment", imply_disable_compile_environment)
76 option("--disable-compile-environment", help="Disable compiler/library checks")
79 @depends("--disable-compile-environment")
80 def compile_environment(compile_env):
85 set_config("COMPILE_ENVIRONMENT", compile_environment)
86 add_old_configure_assignment("COMPILE_ENVIRONMENT", compile_environment)
88 option("--disable-tests", help="Do not build test libraries & programs")
91 @depends("--disable-tests")
92 def enable_tests(value):
97 set_config("ENABLE_TESTS", enable_tests)
98 set_define("ENABLE_TESTS", enable_tests)
101 @depends(enable_tests)
102 def gtest_has_rtti(value):
107 set_define("GTEST_HAS_RTTI", gtest_has_rtti)
110 @depends(target, enable_tests)
111 def linux_gtest_defines(target, enable_tests):
112 if enable_tests and target.os == "Android":
113 return namespace(os_linux_android=True, use_own_tr1_tuple=True, has_clone="0")
116 set_define("GTEST_OS_LINUX_ANDROID", linux_gtest_defines.os_linux_android)
117 set_define("GTEST_USE_OWN_TR1_TUPLE", linux_gtest_defines.use_own_tr1_tuple)
118 set_define("GTEST_HAS_CLONE", linux_gtest_defines.has_clone)
123 help="Enable building with developer debug info "
124 "(using the given compiler flags).",
128 @depends("--enable-debug")
129 def moz_debug(debug):
134 set_config("MOZ_DEBUG", moz_debug)
135 set_define("MOZ_DEBUG", moz_debug)
136 # Override any value MOZ_DEBUG may have from the environment when passing it
137 # down to old-configure.
138 add_old_configure_assignment("MOZ_DEBUG", depends("--enable-debug")(lambda x: bool(x)))
141 "--with-debug-label",
143 help="Debug DEBUG_<value> for each comma-separated value given",
147 @depends(moz_debug, "--with-debug-label")
148 def debug_defines(debug, labels):
150 return ["DEBUG"] + ["DEBUG_%s" % label for label in labels]
151 return ["NDEBUG", "TRIMMED"]
154 set_config("MOZ_DEBUG_DEFINES", debug_defines)
157 "--enable-rust-debug",
158 default=depends(when="--enable-debug")(lambda: True),
159 help="{Build|Do not build} Rust code with debug assertions turned " "on.",
163 @depends(when="--enable-rust-debug")
168 set_config("MOZ_DEBUG_RUST", debug_rust)
169 set_define("MOZ_DEBUG_RUST", debug_rust)
171 option(env="MOZ_PGO", help="Build with profile guided optimizations")
173 set_config("MOZ_PGO", depends("MOZ_PGO")(lambda x: bool(x)))
176 imply_option("--enable-release", mozilla_official)
177 imply_option("--enable-release", depends_if("MOZ_AUTOMATION")(lambda x: True))
181 default=milestone.is_release_or_beta,
182 help="{Build|Do not build} with more conservative, release "
183 "engineering-oriented options.{ This may slow down builds.|}",
187 @depends("--enable-release")
188 def developer_options(value):
193 add_old_configure_assignment("DEVELOPER_OPTIONS", developer_options)
194 set_config("DEVELOPER_OPTIONS", developer_options)
198 env="MOZ_FETCHES_DIR",
200 when="MOZ_AUTOMATION",
201 help="Directory containing fetched artifacts",
205 @depends("MOZ_FETCHES_DIR", when="MOZ_AUTOMATION")
206 def moz_fetches_dir(value):
211 @depends(developer_options, moz_fetches_dir)
212 def bootstrap_search_path_order(developer_options, moz_fetches_dir):
214 log.debug("Prioritizing MOZ_FETCHES_DIR in toolchain path.")
217 if developer_options:
219 "Prioritizing mozbuild state dir in toolchain paths because "
220 "you are not building in release mode."
225 "Prioritizing system over mozbuild state dir in "
226 "toolchain paths because you are building in "
232 toolchains_base_dir = moz_fetches_dir | mozbuild_state_path
237 @imports(_from="os", _import="environ")
239 return environ["PATH"].split(os.pathsep)
243 "--enable-bootstrap",
244 when=developer_options,
245 help="Automatically update/bootstrap some toolchains when they are present but out of date",
249 @depends("--enable-bootstrap", when=developer_options)
250 def bootstrap(value):
255 @depends(host, when=bootstrap)
257 @imports(_from="mozbuild.toolchains", _import="toolchain_task_definitions")
258 @imports(_from="__builtin__", _import="Exception")
259 def bootstrap_toolchain_tasks(host):
261 ("x86_64", "GNU", "Linux"): "linux64",
262 ("x86_64", "OSX", "Darwin"): "macosx64",
263 ("x86_64", "WINNT", "WINNT"): "win64",
264 }.get((host.cpu, host.os, host.kernel))
267 return namespace(prefix=prefix, tasks=toolchain_task_definitions())
273 def bootstrap_search_path(*path_parts, **kwargs):
274 when = kwargs.pop("when", None)
276 configure_error("bootstrap_search_path only takes `when` as keyword argument")
280 bootstrap_search_path_order,
283 bootstrap_toolchain_tasks,
285 check_build_environment,
289 @imports("subprocess")
290 @imports(_from="mozbuild.util", _import="ensureParentDir")
291 @imports(_from="__builtin__", _import="open")
292 @imports(_from="__builtin__", _import="Exception")
293 def bootstrap_search_path(
294 bootstrap, order, original_path, toolchains_base_dir, tasks, shell, build_env
297 label = "toolchain-{}-{}".format(
298 tasks.prefix, path_parts[0].replace("_", "-")
300 task = tasks.tasks.get(label)
303 task_index = task.optimization.get("index-search")
306 task_index = task_index[0].split(".")[-1]
307 artifact = task.attributes["toolchain-artifact"]
308 # `mach artifact toolchain` doesn't support authentication for
310 if not artifact.startswith("public/"):
312 index_file = os.path.join(toolchains_base_dir, "indices", path_parts[0])
314 with open(index_file) as fh:
315 index = fh.read().strip()
318 if index == task_index:
321 "Updating bootstrapped toolchain in %s",
322 os.path.join(toolchains_base_dir, path_parts[0]),
327 os.path.join(build_env.topsrcdir, "mach"),
334 cwd=toolchains_base_dir,
337 ensureParentDir(index_file)
338 with open(index_file, "w") as fh:
341 path = os.path.join(toolchains_base_dir, *path_parts)
342 # Only bootstrap toolchains that have been bootstrapped at least once.
343 if bootstrap and tasks and os.path.exists(path):
346 except Exception as e:
348 die("If you can't fix the above, retry with --disable-bootstrap.")
349 if order == "prepend":
350 return [path] + original_path
351 return original_path + [path]
353 return bootstrap_search_path
356 @depends(target, host)
357 def want_wine(target, host):
358 return target.kernel == "WINNT" and host.kernel != "WINNT"
366 paths=bootstrap_search_path("wine", "bin", when=want_wine),
368 check_prog("WGET", ("wget",), allow_missing=True)
371 include("build/moz.configure/toolchain.configure", when="--enable-compile-environment")
373 include("build/moz.configure/pkg.configure")
374 # Make this assignment here rather than in pkg.configure to avoid
375 # requiring this file in unit tests.
376 add_old_configure_assignment("PKG_CONFIG", pkg_config)
378 include("build/moz.configure/memory.configure", when="--enable-compile-environment")
379 include("build/moz.configure/headers.configure", when="--enable-compile-environment")
380 include("build/moz.configure/warnings.configure", when="--enable-compile-environment")
381 include("build/moz.configure/flags.configure", when="--enable-compile-environment")
382 include("build/moz.configure/lto-pgo.configure", when="--enable-compile-environment")
383 # rust.configure is included by js/moz.configure.
385 option("--enable-valgrind", help="Enable Valgrind integration hooks")
387 valgrind_h = check_header("valgrind/valgrind.h", when="--enable-valgrind")
390 @depends("--enable-valgrind", valgrind_h)
391 def check_valgrind(valgrind, valgrind_h):
394 die("--enable-valgrind specified but Valgrind is not installed")
398 set_define("MOZ_VALGRIND", check_valgrind)
399 set_config("MOZ_VALGRIND", check_valgrind)
402 @depends(target, host)
403 def is_openbsd(target, host):
404 return target.kernel == "OpenBSD" or host.kernel == "OpenBSD"
412 help="Shared library version for OpenBSD systems",
416 @depends("SO_VERSION", when=is_openbsd)
417 def so_version(value):
422 def library_name_info_template(host_or_target):
423 assert host_or_target in {host, target}
425 host: host_c_compiler,
429 @depends(host_or_target, compiler, so_version)
430 def library_name_info_impl(host_or_target, compiler, so_version):
431 if host_or_target.kernel == "WINNT":
432 # There aren't artifacts for mingw builds, so it's OK that the
433 # results are inaccurate in that case.
434 if compiler and compiler.type != "clang-cl":
436 dll=namespace(prefix="", suffix=".dll"),
437 lib=namespace(prefix="lib", suffix="a"),
438 import_lib=namespace(prefix="lib", suffix="a"),
439 obj=namespace(prefix="", suffix="o"),
443 dll=namespace(prefix="", suffix=".dll"),
444 lib=namespace(prefix="", suffix="lib"),
445 import_lib=namespace(prefix="", suffix="lib"),
446 obj=namespace(prefix="", suffix="obj"),
449 elif host_or_target.kernel == "Darwin":
451 dll=namespace(prefix="lib", suffix=".dylib"),
452 lib=namespace(prefix="lib", suffix="a"),
453 import_lib=namespace(prefix=None, suffix=""),
454 obj=namespace(prefix="", suffix="o"),
457 so = ".so.%s" % so_version
462 dll=namespace(prefix="lib", suffix=so),
463 lib=namespace(prefix="lib", suffix="a"),
464 import_lib=namespace(prefix=None, suffix=""),
465 obj=namespace(prefix="", suffix="o"),
468 return library_name_info_impl
471 host_library_name_info = library_name_info_template(host)
472 library_name_info = library_name_info_template(target)
474 set_config("DLL_PREFIX", library_name_info.dll.prefix)
475 set_config("DLL_SUFFIX", library_name_info.dll.suffix)
476 set_config("HOST_DLL_PREFIX", host_library_name_info.dll.prefix)
477 set_config("HOST_DLL_SUFFIX", host_library_name_info.dll.suffix)
478 set_config("LIB_PREFIX", library_name_info.lib.prefix)
479 set_config("LIB_SUFFIX", library_name_info.lib.suffix)
480 set_config("OBJ_SUFFIX", library_name_info.obj.suffix)
481 # Lots of compilation tests depend on this variable being present.
482 add_old_configure_assignment("OBJ_SUFFIX", library_name_info.obj.suffix)
483 set_config("IMPORT_LIB_SUFFIX", library_name_info.import_lib.suffix)
485 "MOZ_DLL_PREFIX", depends(library_name_info.dll.prefix)(lambda s: '"%s"' % s)
488 "MOZ_DLL_SUFFIX", depends(library_name_info.dll.suffix)(lambda s: '"%s"' % s)
490 set_config("WASM_OBJ_SUFFIX", "wasm")
492 # Make `profiling` available to this file even when js/moz.configure
493 # doesn't end up included.
494 profiling = dependable(False)
495 # Same for js_standalone
496 js_standalone = dependable(False)
498 fold_libs = dependable(False)
500 include(include_project_configure)
504 @imports(_from="mozbuild.backend", _import="backends")
505 def build_backends_choices(_):
506 return tuple(backends)
509 @deprecated_option("--enable-build-backend", nargs="+", choices=build_backends_choices)
510 def build_backend(backends):
512 return tuple("+%s" % b for b in backends)
515 imply_option("--build-backends", build_backend)
519 "--enable-artifact-builds",
520 "--disable-compile-environment",
521 "--enable-build-backend",
523 "--enable-application",
527 def build_backend_defaults(
528 artifact_builds, compile_environment, requested_backends, project, application, _
531 project = application[0]
535 if "Tup" in requested_backends:
536 # As a special case, if Tup was requested, do not combine it with any
537 # Make based backend by default.
539 elif artifact_builds:
540 all_backends = ["FasterMake+RecursiveMake"]
542 all_backends = ["RecursiveMake", "FasterMake"]
543 # Normally, we'd use target.os == 'WINNT', but a dependency on target
544 # would require target to depend on --help, as well as host and shell,
545 # and this is not a can of worms we can open at the moment.
546 if sys.platform == "win32" and compile_environment and project != "mobile/android":
547 all_backends.append("VisualStudio")
548 return tuple(all_backends) or None
554 default=build_backend_defaults,
555 choices=build_backends_choices,
556 help="Build backends to generate",
560 @depends("--build-backends")
561 def build_backends(backends):
565 set_config("BUILD_BACKENDS", build_backends)
568 @depends(check_build_environment, build_backends)
570 def check_objdir_backend_reuse(build_env, backends):
571 # "Make based" might be RecursiveMake or a hybrid backend, so "Make" is
572 # intentionally vague for use with the substring match below.
573 incompatible_backends = (("Tup", "Make"), ("Make", "Tup"))
574 for backend_file in glob.iglob(
575 os.path.join(build_env.topobjdir, "backend.*Backend")
577 for prev, curr in incompatible_backends:
578 if prev in backend_file and any(curr in b for b in backends):
580 "The active objdir, %s, was previously "
581 "used to build with a %s based backend. "
582 "Change objdirs (by setting MOZ_OBJDIR in "
583 "your mozconfig) or clobber to continue.\n",
590 "--disable-gtest-in-build",
591 help="Force disable building the gtest libxul during the build.",
592 when="--enable-compile-environment",
595 # Determine whether to build the gtest xul. This happens in automation
596 # on Android and Desktop platforms with the exception of:
597 # - Windows PGO, where linking xul-gtest.dll takes too long;
598 # - Android other than x86_64, where gtest is not required.
604 "--disable-gtest-in-build",
606 when="--enable-compile-environment",
608 def build_gtest(pgo, build_project, target, automation, enabled, enable_tests):
609 if not enable_tests or not enabled:
613 and build_project in ("browser", "comm/mail", "mobile/android")
615 (pgo and target.os == "WINNT")
616 or (target.os == "Android" and target.cpu != "x86_64")
622 set_config("LINK_GTEST_DURING_COMPILE", build_gtest)
625 # ==============================================================
627 "--enable-ui-locale",
629 help="Select the user interface locale (default: en-US)",
632 set_config("MOZ_UI_LOCALE", depends("--enable-ui-locale")(lambda x: x))
634 # clang-plugin location
635 # ==============================================================
636 @depends(host_library_name_info, check_build_environment, when="--enable-clang-plugin")
637 def clang_plugin_path(library_name_info, build_env):
638 topobjdir = build_env.topobjdir
639 if topobjdir.endswith("/js/src"):
640 topobjdir = topobjdir[:-7]
641 return os.path.abspath(
647 % (library_name_info.dll.prefix, library_name_info.dll.suffix),
652 add_old_configure_assignment("CLANG_PLUGIN", clang_plugin_path)
656 # ==============================================================
657 awk = check_prog("AWK", ("gawk", "mawk", "nawk", "awk"))
659 # Until the AWK variable is not necessary in old-configure
661 def awk_for_old_configure(value):
665 add_old_configure_assignment("AWK", awk_for_old_configure)
669 # ==============================================================
670 perl = check_prog("PERL", ("perl5", "perl"))
672 # Until the PERL variable is not necessary in old-configure
674 def perl_for_old_configure(value):
678 add_old_configure_assignment("PERL", perl_for_old_configure)
682 def perl_version_check(min_version):
684 @checking("for minimum required perl version >= %s" % min_version)
685 def get_perl_version(perl):
691 onerror=lambda: die("Failed to get perl version."),
695 @depends(get_perl_version)
696 def check_perl_version(version):
697 if version < min_version:
698 die("Perl %s or higher is required.", min_version)
701 @checking("for full perl installation")
702 @imports("subprocess")
703 def has_full_perl_installation(perl):
704 ret = subprocess.call([perl, "-e", "use Config; exit(!-d $Config{archlib})"])
707 @depends(has_full_perl_installation)
708 def require_full_perl_installation(has_full_perl_installation):
709 if not has_full_perl_installation:
711 "Cannot find Config.pm or $Config{archlib}. "
712 "A full perl installation is required."
716 perl_version_check("5.006")
720 # ==============================================================
721 option(env="MAKE", nargs=1, help="Path to GNU make")
724 @depends("MAKE", host)
725 def possible_makes(make, host):
727 if host.kernel == "WINNT":
728 candidates.append("mingw32-make")
730 candidates.append(make[0])
731 if host.kernel == "WINNT":
732 candidates.extend(("make", "gmake"))
734 candidates.extend(("gmake", "make"))
738 check_prog("GMAKE", possible_makes)
741 # ==============================================================
743 option(env="WATCHMAN", nargs=1, help="Path to the watchman program")
746 @depends(host, "WATCHMAN")
747 @checking("for watchman", callback=lambda w: w.path if w else "not found")
748 def watchman(host, prog):
749 # On Windows, `watchman` is only supported on 64-bit hosts.
750 if host.os == "WINNT" and host.cpu != "x86_64":
754 prog = find_program("watchman")
759 # `watchman version` will talk to the Watchman daemon service.
760 # This can hang due to permissions problems. e.g.
761 # https://github.com/facebook/watchman/issues/376. So use
762 # `watchman --version` to prevent a class of failures.
763 out = check_cmd_output(prog, "--version", onerror=lambda: None)
767 return namespace(path=prog, version=Version(out.strip()))
770 @depends_if(watchman)
771 @checking("for watchman version")
772 def watchman_version(w):
776 set_config("WATCHMAN", watchman.path)
779 @depends_all(hg_version, hg_config, watchman)
780 @checking("for watchman Mercurial integration")
782 def watchman_hg(hg_version, hg_config, watchman):
783 if hg_version < Version("3.8"):
784 return "no (Mercurial 3.8+ required)"
787 mode_disabled = False
789 for k in ("extensions.fsmonitor", "extensions.hgext.fsmonitor"):
790 if k in hg_config and hg_config[k] != "!":
793 mode_disabled = hg_config.get("fsmonitor.mode") == "off"
796 return "no (fsmonitor extension not enabled)"
798 return "no (fsmonitor.mode=off disables fsmonitor)"
803 # Miscellaneous programs
804 # ==============================================================
805 check_prog("XARGS", ("xargs",))
809 def extra_programs(target):
810 if target.kernel == "Darwin":
812 DSYMUTIL=("dsymutil", "llvm-dsymutil"),
813 MKFSHFS=("newfs_hfs", "mkfs.hfsplus"),
814 HFS_TOOL=("hfsplus",),
816 if target.os == "GNU" and target.kernel == "Linux":
817 return namespace(RPMBUILD=("rpmbuild",))
820 check_prog("DSYMUTIL", extra_programs.DSYMUTIL, allow_missing=True)
821 check_prog("MKFSHFS", extra_programs.MKFSHFS, allow_missing=True)
822 check_prog("HFS_TOOL", extra_programs.HFS_TOOL, allow_missing=True)
823 check_prog("RPMBUILD", extra_programs.RPMBUILD, allow_missing=True)
828 def makensis_progs(target):
829 if target.kernel != "WINNT":
839 # Look for nsis installed by msys environment. But only the 32-bit version.
840 # We use an absolute path and insert as the first entry so it is preferred
841 # over a 64-bit exe that may be in PATH.
842 if "MSYSTEM_PREFIX" in os.environ:
843 prefix = os.path.dirname(os.environ["MSYSTEM_PREFIX"])
844 candidates.insert(0, os.path.join(prefix, "mingw32", "bin", "makensis.exe"))
846 return tuple(candidates)
849 nsis = check_prog("MAKENSISU", makensis_progs, allow_missing=True)
851 # Make sure the version of makensis is up to date.
853 @checking("for NSIS version")
855 def nsis_version(nsis, wine):
858 nsis_min_version = "3.0b1"
859 onerror = lambda: die("Failed to get nsis version.")
860 if wine and nsis.lower().endswith(".exe"):
861 out = check_cmd_output(wine, nsis, "-version", onerror=onerror)
863 out = check_cmd_output(nsis, "-version", onerror=onerror)
865 m = re.search(r"(?<=v)[0-9]+\.[0-9]+((a|b|rc)[0-9]+)?", out)
868 raise FatalCheckError("Unknown version of makensis")
869 ver = Version(m.group(0))
871 # Versions comparisons don't quite work well with beta versions, so ensure
872 # it works for the non-beta version.
873 if ver < nsis_min_version and (ver >= "3.0a" or ver < "3"):
874 raise FatalCheckError(
875 "To build the installer you must have NSIS"
876 " version %s or greater in your path" % nsis_min_version
882 # And that makensis is 32-bit (but only on Windows).
883 @depends_if(nsis, when=depends(host)(lambda h: h.kernel == "WINNT"))
884 @checking("for 32-bit NSIS")
885 def nsis_binary_type(nsis):
886 bin_type = windows_binary_type(nsis)
887 if bin_type != "win32":
888 raise FatalCheckError("%s is not a 32-bit Windows application" % nsis)
893 # And any flags we have to give to makensis
895 def nsis_flags(host):
896 if host.kernel != "WINNT":
901 set_config("MAKENSISU_FLAGS", nsis_flags)
903 check_prog("7Z", ("7z", "7za"), allow_missing=True, when=target_is_windows)
904 check_prog("UPX", ("upx",), allow_missing=True, when=target_is_windows)
907 @depends(host_c_compiler, c_compiler, bindgen_config_paths)
908 def llvm_objdump(host_c_compiler, c_compiler, bindgen_config_paths):
910 for compiler in (host_c_compiler, c_compiler):
911 if compiler and compiler.type == "clang":
912 clang = compiler.compiler
914 elif compiler and compiler.type == "clang-cl":
915 clang = os.path.join(os.path.dirname(compiler.compiler), "clang")
918 if not clang and bindgen_config_paths:
919 clang = bindgen_config_paths.clang_path
920 llvm_objdump = "llvm-objdump"
922 out = check_cmd_output(
923 clang, "--print-prog-name=llvm-objdump", onerror=lambda: None
926 llvm_objdump = out.rstrip()
927 return (llvm_objdump,)
930 llvm_objdump = check_prog(
934 when="--enable-compile-environment",
935 paths=clang_search_path,
938 add_old_configure_assignment("LLVM_OBJDUMP", llvm_objdump)
941 option("--enable-dtrace", help="Build with dtrace support")
943 dtrace = check_header(
945 when="--enable-dtrace",
946 onerror=lambda: die("dtrace enabled but sys/sdt.h not found"),
949 set_config("HAVE_DTRACE", True, when=dtrace)
950 set_define("INCLUDE_MOZILLA_DTRACE", True, when=dtrace)
951 add_old_configure_assignment("enable_dtrace", "yes", when=dtrace)
954 option("--disable-icf", help="Disable Identical Code Folding")
956 add_old_configure_assignment(
957 "MOZ_DISABLE_ICF", "1", when=depends("--enable-icf")(lambda x: not x)
963 when=compile_environment,
964 help="Enable stripping of libs & executables",
967 # This should be handled as a `when` once bug 1617793 is fixed.
968 @depends("--enable-strip", c_compiler, when=compile_environment)
969 def enable_strip(strip, c_compiler):
970 if strip and c_compiler.type != "clang-cl":
974 set_config("ENABLE_STRIP", enable_strip)
977 "--disable-install-strip",
978 when=compile_environment,
979 help="Enable stripping of libs & executables when packaging",
982 # This should be handled as a `when` once bug 1617793 is fixed.
983 @depends("--enable-install-strip", c_compiler, when=compile_environment)
984 def enable_install_strip(strip, c_compiler):
985 if strip and c_compiler.type != "clang-cl":
989 set_config("PKG_STRIP", enable_install_strip)
992 @depends("--enable-strip", "--enable-install-strip", when=compile_environment)
993 def strip(strip, install_strip):
994 return strip or install_strip
997 option(env="STRIP_FLAGS", nargs=1, when=strip, help="Flags for the strip command")
1000 @depends("STRIP_FLAGS", profiling, target, when=strip)
1001 def strip_flags(flags, profiling, target):
1003 return flags[0].split()
1005 # Only strip debug info and symbols when profiling is enabled, keeping
1007 if target.kernel == "Darwin":
1009 elif target.os == "Android":
1010 # The tooling we use with Android supports detached symbols, and the
1011 # size increase caused by local symbols are too much for mobile. So,
1012 # don't restrict the amount of stripping with a flag.
1015 return ["--strip-debug"]
1016 # Otherwise strip everything we can, which happens without flags on non-Darwin.
1017 # On Darwin, it tries to strip things it can't, so we need to limit its scope.
1018 elif target.kernel == "Darwin":
1022 set_config("STRIP_FLAGS", strip_flags)
1025 @depends(js_standalone, target)
1026 def system_zlib_default(js_standalone, target):
1027 return js_standalone and target.kernel != "WINNT"
1031 "--with-system-zlib",
1033 default=system_zlib_default,
1034 help="{Use|Do not use} system libz",
1038 @depends("--with-system-zlib")
1039 def deprecated_system_zlib_path(value):
1042 "--with-system-zlib=PATH is not supported anymore. Please use "
1043 "--with-system-zlib and set any necessary pkg-config environment variable."
1047 pkg_check_modules("MOZ_ZLIB", "zlib >= 1.2.3", when="--with-system-zlib")
1049 set_config("MOZ_SYSTEM_ZLIB", True, when="--with-system-zlib")
1050 add_old_configure_assignment("MOZ_SYSTEM_ZLIB", True, when="--with-system-zlib")
1053 # Please do not add configure checks from here on.
1055 # Fallthrough to autoconf-based configure
1056 include("build/moz.configure/old.configure")
1059 include("js/sub.configure", when=compile_environment & toolkit)
1062 @depends(check_build_environment, build_project)
1063 @imports("__sandbox__")
1065 @imports(_from="os.path", _import="exists")
1066 def config_status_deps(build_env, build_project):
1068 topsrcdir = build_env.topsrcdir
1069 topobjdir = build_env.topobjdir
1071 if not topobjdir.endswith("js/src"):
1072 extra_deps = [os.path.join(topobjdir, ".mozconfig.json")]
1074 # mozconfig changes may impact js configure.
1075 extra_deps = [os.path.join(topobjdir[:-7], ".mozconfig.json")]
1077 confvars = os.path.join(topsrcdir, build_project, "confvars.sh")
1078 if exists(confvars):
1079 extra_deps.append(confvars)
1082 list(__sandbox__._all_paths)
1085 os.path.join(topsrcdir, "CLOBBER"),
1086 os.path.join(topsrcdir, "configure.in"),
1087 os.path.join(topsrcdir, "js", "src", "configure.in"),
1088 os.path.join(topsrcdir, "nsprpub", "configure"),
1089 os.path.join(topsrcdir, "config", "milestone.txt"),
1090 os.path.join(topsrcdir, "browser", "config", "version.txt"),
1091 os.path.join(topsrcdir, "browser", "config", "version_display.txt"),
1092 os.path.join(topsrcdir, "build", "build_virtualenv_packages.txt"),
1093 os.path.join(topsrcdir, "build", "common_virtualenv_packages.txt"),
1094 os.path.join(topsrcdir, "build", "mach_virtualenv_packages.txt"),
1095 os.path.join(topsrcdir, "python", "mozbuild", "mozbuild", "virtualenv.py"),
1096 os.path.join(topsrcdir, "testing", "mozbase", "packages.txt"),
1097 os.path.join(topsrcdir, "aclocal.m4"),
1098 os.path.join(topsrcdir, "old-configure.in"),
1099 os.path.join(topsrcdir, "js", "src", "aclocal.m4"),
1100 os.path.join(topsrcdir, "js", "src", "old-configure.in"),
1102 + glob.glob(os.path.join(topsrcdir, "build", "autoconf", "*.m4"))
1106 set_config("CONFIG_STATUS_DEPS", config_status_deps)
1107 # Please do not add anything after setting config_dep_paths.