1998-03-28 05:44:41 +03:00
|
|
|
#
|
2012-05-21 15:12:37 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
1998-03-28 05:44:41 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# config.mk
|
|
|
|
#
|
|
|
|
# Determines the platform and builds the macros needed to load the
|
|
|
|
# appropriate platform-specific .mk file, then defines all (most?)
|
|
|
|
# of the generic macros.
|
|
|
|
#
|
2000-03-14 06:00:38 +03:00
|
|
|
|
|
|
|
# Define an include-at-most-once flag
|
2011-08-09 11:07:48 +04:00
|
|
|
ifdef INCLUDED_CONFIG_MK
|
2012-04-04 00:08:16 +04:00
|
|
|
$(error Do not include config.mk twice!)
|
2011-08-09 11:07:48 +04:00
|
|
|
endif
|
2000-03-14 06:00:38 +03:00
|
|
|
INCLUDED_CONFIG_MK = 1
|
|
|
|
|
2005-07-23 00:11:37 +04:00
|
|
|
EXIT_ON_ERROR = set -e; # Shell loops continue past errors without this.
|
|
|
|
|
1998-08-20 00:42:14 +04:00
|
|
|
ifndef topsrcdir
|
1998-09-05 05:10:54 +04:00
|
|
|
topsrcdir = $(DEPTH)
|
1998-08-20 00:42:14 +04:00
|
|
|
endif
|
1998-03-28 05:44:41 +03:00
|
|
|
|
2000-03-14 06:00:38 +03:00
|
|
|
ifndef INCLUDED_AUTOCONF_MK
|
1999-09-30 00:39:46 +04:00
|
|
|
include $(DEPTH)/config/autoconf.mk
|
1999-09-03 02:02:46 +04:00
|
|
|
endif
|
|
|
|
|
2013-09-05 04:01:44 +04:00
|
|
|
-include $(DEPTH)/.mozconfig.mk
|
|
|
|
|
2018-05-09 15:24:31 +03:00
|
|
|
# MDDEPDIR is the subdirectory where dependency files are stored
|
|
|
|
MDDEPDIR := .deps
|
|
|
|
|
2013-10-21 22:08:00 +04:00
|
|
|
ifndef EXTERNALLY_MANAGED_MAKE_FILE
|
|
|
|
# Import the automatically generated backend file. If this file doesn't exist,
|
|
|
|
# the backend hasn't been properly configured. We want this to be a fatal
|
|
|
|
# error, hence not using "-include".
|
|
|
|
ifndef STANDALONE_MAKEFILE
|
|
|
|
GLOBAL_DEPS += backend.mk
|
|
|
|
include backend.mk
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2012-09-25 16:47:20 +04:00
|
|
|
space = $(NULL) $(NULL)
|
|
|
|
|
|
|
|
# Include defs.mk files that can be found in $(srcdir)/$(DEPTH),
|
|
|
|
# $(srcdir)/$(DEPTH-1), $(srcdir)/$(DEPTH-2), etc., and $(srcdir)
|
|
|
|
# where $(DEPTH-1) is one level less of depth, $(DEPTH-2), two, etc.
|
|
|
|
# i.e. for DEPTH=../../.., DEPTH-1 is ../.. and DEPTH-2 is ..
|
|
|
|
# These defs.mk files are used to define variables in a directory
|
|
|
|
# and all its subdirectories, recursively.
|
|
|
|
__depth := $(subst /, ,$(DEPTH))
|
|
|
|
ifeq (.,$(__depth))
|
|
|
|
__depth :=
|
|
|
|
endif
|
|
|
|
$(foreach __d,$(__depth) .,$(eval __depth = $(wordlist 2,$(words $(__depth)),$(__depth))$(eval -include $(subst $(space),/,$(strip $(srcdir) $(__depth) defs.mk)))))
|
|
|
|
|
2008-06-06 23:31:11 +04:00
|
|
|
COMMA = ,
|
|
|
|
|
2007-03-26 22:15:02 +04:00
|
|
|
# Sanity check some variables
|
|
|
|
CHECK_VARS := \
|
|
|
|
XPI_NAME \
|
|
|
|
LIBRARY_NAME \
|
|
|
|
MODULE \
|
|
|
|
DEPTH \
|
|
|
|
XPI_PKGNAME \
|
|
|
|
INSTALL_EXTENSION_ID \
|
2008-12-24 22:04:43 +03:00
|
|
|
SHARED_LIBRARY_NAME \
|
2014-07-09 02:47:00 +04:00
|
|
|
SONAME \
|
2008-12-24 22:04:43 +03:00
|
|
|
STATIC_LIBRARY_NAME \
|
2007-03-26 22:15:02 +04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
# checks for internal spaces or trailing spaces in the variable
|
|
|
|
# named by $x
|
|
|
|
check-variable = $(if $(filter-out 0 1,$(words $($(x))z)),$(error Spaces are not allowed in $(x)))
|
|
|
|
|
|
|
|
$(foreach x,$(CHECK_VARS),$(check-variable))
|
|
|
|
|
2013-10-11 20:47:55 +04:00
|
|
|
ifndef INCLUDED_FUNCTIONS_MK
|
2014-11-30 04:45:31 +03:00
|
|
|
include $(MOZILLA_DIR)/config/makefiles/functions.mk
|
2013-10-11 20:47:55 +04:00
|
|
|
endif
|
|
|
|
|
2012-06-21 16:50:42 +04:00
|
|
|
RM = rm -f
|
|
|
|
|
2005-02-19 01:17:37 +03:00
|
|
|
# FINAL_TARGET specifies the location into which we copy end-user-shipped
|
2013-10-21 22:08:35 +04:00
|
|
|
# build products (typelibs, components, chrome). It may already be specified by
|
|
|
|
# a moz.build file.
|
2005-02-19 01:17:37 +03:00
|
|
|
#
|
2012-06-19 18:45:24 +04:00
|
|
|
# If XPI_NAME is set, the files will be shipped to $(DIST)/xpi-stage/$(XPI_NAME)
|
2012-12-11 19:37:07 +04:00
|
|
|
# instead of $(DIST)/bin. In both cases, if DIST_SUBDIR is set, the files will be
|
|
|
|
# shipped to a $(DIST_SUBDIR) subdirectory.
|
2013-10-21 22:08:35 +04:00
|
|
|
FINAL_TARGET ?= $(if $(XPI_NAME),$(DIST)/xpi-stage/$(XPI_NAME),$(DIST)/bin)$(DIST_SUBDIR:%=/%)
|
|
|
|
# Override the stored value for the check to make sure that the variable is not
|
|
|
|
# redefined in the Makefile.in value.
|
|
|
|
FINAL_TARGET_FROZEN := '$(FINAL_TARGET)'
|
2005-02-19 01:17:37 +03:00
|
|
|
|
2010-06-25 16:27:10 +04:00
|
|
|
ifdef XPI_NAME
|
2015-10-30 05:31:14 +03:00
|
|
|
ACDEFINES += -DXPI_NAME=$(XPI_NAME)
|
2010-06-25 16:27:10 +04:00
|
|
|
endif
|
|
|
|
|
2002-11-14 23:23:26 +03:00
|
|
|
# The VERSION_NUMBER is suffixed onto the end of the DLLs we ship.
|
|
|
|
VERSION_NUMBER = 50
|
|
|
|
|
2004-03-23 11:41:30 +03:00
|
|
|
CONFIG_TOOLS = $(MOZ_BUILD_ROOT)/config
|
2014-11-30 04:45:31 +03:00
|
|
|
AUTOCONF_TOOLS = $(MOZILLA_DIR)/build/autoconf
|
2000-03-14 09:16:27 +03:00
|
|
|
|
2012-08-07 23:19:55 +04:00
|
|
|
ifdef _MSC_VER
|
2018-03-13 17:06:00 +03:00
|
|
|
# clang-cl is smart enough to generate dependencies directly.
|
2018-09-14 19:12:34 +03:00
|
|
|
ifeq (,$(CLANG_CL)$(MOZ_USING_SCCACHE))
|
2013-10-24 07:25:52 +04:00
|
|
|
CC_WRAPPER ?= $(call py_action,cl)
|
|
|
|
CXX_WRAPPER ?= $(call py_action,cl)
|
2018-09-14 19:12:34 +03:00
|
|
|
endif # CLANG_CL/MOZ_USING_SCCACHE
|
2012-08-07 23:19:55 +04:00
|
|
|
endif # _MSC_VER
|
|
|
|
|
2010-08-05 03:59:23 +04:00
|
|
|
CC := $(CC_WRAPPER) $(CC)
|
|
|
|
CXX := $(CXX_WRAPPER) $(CXX)
|
2011-04-03 11:16:49 +04:00
|
|
|
MKDIR ?= mkdir
|
|
|
|
SLEEP ?= sleep
|
|
|
|
TOUCH ?= touch
|
2010-08-05 03:59:23 +04:00
|
|
|
|
2012-08-03 23:09:54 +04:00
|
|
|
PYTHON_PATH = $(PYTHON) $(topsrcdir)/config/pythonpath.py
|
|
|
|
|
2001-06-21 00:21:49 +04:00
|
|
|
#
|
2001-06-19 02:10:38 +04:00
|
|
|
# Build using PIC by default
|
|
|
|
#
|
|
|
|
_ENABLE_PIC=1
|
2001-06-21 00:21:49 +04:00
|
|
|
|
2010-07-26 23:21:55 +04:00
|
|
|
# Don't build SIMPLE_PROGRAMS with PGO, since they don't need it anyway,
|
|
|
|
# and we don't have the same build logic to re-link them in the second pass.
|
|
|
|
ifdef SIMPLE_PROGRAMS
|
|
|
|
NO_PROFILE_GUIDED_OPTIMIZE = 1
|
|
|
|
endif
|
|
|
|
|
2011-04-14 13:23:13 +04:00
|
|
|
# No sense in profiling unit tests
|
|
|
|
ifdef CPP_UNIT_TESTS
|
|
|
|
NO_PROFILE_GUIDED_OPTIMIZE = 1
|
|
|
|
endif
|
|
|
|
|
2008-02-17 01:23:07 +03:00
|
|
|
# Enable profile-based feedback
|
2013-11-02 03:42:53 +04:00
|
|
|
ifneq (1,$(NO_PROFILE_GUIDED_OPTIMIZE))
|
2004-03-21 05:31:17 +03:00
|
|
|
ifdef MOZ_PROFILE_GENERATE
|
2018-07-10 01:26:24 +03:00
|
|
|
PGO_CFLAGS += $(if $(filter $(notdir $<),$(notdir $(NO_PROFILE_GUIDED_OPTIMIZE))),,$(PROFILE_GEN_CFLAGS) $(COMPUTED_PROFILE_GEN_DYN_CFLAGS))
|
2017-11-02 21:47:48 +03:00
|
|
|
PGO_LDFLAGS += $(PROFILE_GEN_LDFLAGS)
|
2008-02-21 02:29:11 +03:00
|
|
|
ifeq (WINNT,$(OS_ARCH))
|
|
|
|
AR_FLAGS += -LTCG
|
|
|
|
endif
|
|
|
|
endif # MOZ_PROFILE_GENERATE
|
2008-02-17 01:23:07 +03:00
|
|
|
|
2004-03-21 05:31:17 +03:00
|
|
|
ifdef MOZ_PROFILE_USE
|
2017-10-26 01:10:04 +03:00
|
|
|
PGO_CFLAGS += $(if $(filter $(notdir $<),$(notdir $(NO_PROFILE_GUIDED_OPTIMIZE))),,$(PROFILE_USE_CFLAGS))
|
2017-11-02 21:47:48 +03:00
|
|
|
PGO_LDFLAGS += $(PROFILE_USE_LDFLAGS)
|
2008-02-21 02:29:11 +03:00
|
|
|
ifeq (WINNT,$(OS_ARCH))
|
|
|
|
AR_FLAGS += -LTCG
|
2004-03-21 05:31:17 +03:00
|
|
|
endif
|
2008-02-21 02:29:11 +03:00
|
|
|
endif # MOZ_PROFILE_USE
|
|
|
|
endif # NO_PROFILE_GUIDED_OPTIMIZE
|
2004-03-21 05:31:17 +03:00
|
|
|
|
2017-12-11 20:02:49 +03:00
|
|
|
LOCALE_TOPDIR ?= $(topsrcdir)
|
2005-06-01 15:59:09 +04:00
|
|
|
MAKE_JARS_FLAGS = \
|
2017-12-11 20:02:49 +03:00
|
|
|
-t $(LOCALE_TOPDIR) \
|
2016-04-14 22:26:38 +03:00
|
|
|
-f $(MOZ_JAR_MAKER_FILE_FORMAT) \
|
2005-06-01 15:59:09 +04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifdef USE_EXTENSION_MANIFEST
|
|
|
|
MAKE_JARS_FLAGS += -e
|
|
|
|
endif
|
|
|
|
|
2013-07-10 13:55:01 +04:00
|
|
|
TAR_CREATE_FLAGS = -chf
|
2005-06-01 15:59:09 +04:00
|
|
|
|
1998-03-28 05:44:41 +03:00
|
|
|
#
|
|
|
|
# Default command macros; can be overridden in <arch>.mk.
|
|
|
|
#
|
2011-01-25 23:14:30 +03:00
|
|
|
CCC = $(CXX)
|
1998-03-28 05:44:41 +03:00
|
|
|
|
2009-05-18 22:15:05 +04:00
|
|
|
INCLUDES = \
|
|
|
|
-I$(srcdir) \
|
2015-12-30 07:46:38 +03:00
|
|
|
-I$(CURDIR) \
|
2013-11-19 23:10:15 +04:00
|
|
|
$(LOCAL_INCLUDES) \
|
2015-12-30 07:46:38 +03:00
|
|
|
-I$(ABS_DIST)/include \
|
2014-09-03 08:46:29 +04:00
|
|
|
$(NULL)
|
|
|
|
|
2014-11-30 04:45:31 +03:00
|
|
|
include $(MOZILLA_DIR)/config/static-checking-config.mk
|
2008-02-27 19:28:13 +03:00
|
|
|
|
2018-08-17 04:35:32 +03:00
|
|
|
ifdef MOZ_PROFILE_GENERATE
|
|
|
|
MOZ_LTO_CFLAGS :=
|
|
|
|
MOZ_LTO_LDFLAGS :=
|
|
|
|
endif
|
|
|
|
|
2018-08-17 03:05:27 +03:00
|
|
|
LDFLAGS = $(MOZ_LTO_LDFLAGS) $(COMPUTED_LDFLAGS) $(PGO_LDFLAGS) $(MK_LDFLAGS)
|
1999-02-10 02:24:12 +03:00
|
|
|
|
2018-08-17 03:05:27 +03:00
|
|
|
COMPILE_CFLAGS = $(MOZ_LTO_CFLAGS) $(COMPUTED_CFLAGS) $(PGO_CFLAGS) $(_DEPEND_CFLAGS) $(MK_COMPILE_DEFINES)
|
|
|
|
COMPILE_CXXFLAGS = $(MOZ_LTO_CFLAGS) $(COMPUTED_CXXFLAGS) $(PGO_CFLAGS) $(_DEPEND_CFLAGS) $(MK_COMPILE_DEFINES)
|
|
|
|
COMPILE_CMFLAGS = $(MOZ_LTO_CFLAGS) $(OS_COMPILE_CMFLAGS) $(MOZBUILD_CMFLAGS)
|
|
|
|
COMPILE_CMMFLAGS = $(MOZ_LTO_CFLAGS) $(OS_COMPILE_CMMFLAGS) $(MOZBUILD_CMMFLAGS)
|
2017-11-11 03:58:16 +03:00
|
|
|
ASFLAGS = $(COMPUTED_ASFLAGS)
|
2017-11-22 23:27:52 +03:00
|
|
|
SFLAGS = $(COMPUTED_SFLAGS)
|
2008-02-26 02:38:23 +03:00
|
|
|
|
2017-10-02 21:41:41 +03:00
|
|
|
HOST_CFLAGS = $(COMPUTED_HOST_CFLAGS) $(_DEPEND_CFLAGS)
|
|
|
|
HOST_CXXFLAGS = $(COMPUTED_HOST_CXXFLAGS) $(_DEPEND_CFLAGS)
|
2017-11-23 00:23:44 +03:00
|
|
|
HOST_C_LDFLAGS = $(COMPUTED_HOST_C_LDFLAGS)
|
|
|
|
HOST_CXX_LDFLAGS = $(COMPUTED_HOST_CXX_LDFLAGS)
|
2018-10-10 20:53:06 +03:00
|
|
|
# Win32 Cross-builds on win64 need to override LIB when invoking the linker,
|
|
|
|
# which we do for rust through cargo-linker.bat, so we abuse it here.
|
|
|
|
# Ideally, we'd empty LIB and pass -LIBPATH options to the linker somehow but
|
|
|
|
# we don't have this in place for rust, so...
|
|
|
|
ifdef WIN64_CARGO_LINKER
|
|
|
|
HOST_LINKER = $(topobjdir)/build/win64/cargo-linker.bat
|
|
|
|
endif
|
2015-09-04 20:33:04 +03:00
|
|
|
|
2018-07-10 01:09:24 +03:00
|
|
|
ifdef MOZ_LTO
|
|
|
|
ifeq (Darwin,$(OS_TARGET))
|
|
|
|
# When linking on macOS, debug info is not linked along with the final binary,
|
|
|
|
# and the dwarf data stays in object files until they are "linked" with the
|
|
|
|
# dsymutil tool.
|
|
|
|
# With LTO, object files are temporary, and are not kept around, which
|
|
|
|
# means there's no object file for dsymutil to do its job. Consequently,
|
|
|
|
# there is no debug info for LTOed compilation units.
|
|
|
|
# The macOS linker has however an option to explicitly keep those object
|
|
|
|
# files, which dsymutil will then find.
|
|
|
|
# The catch is that the linker uses sequential numbers for those object
|
|
|
|
# files, and doesn't avoid conflicts from multiple linkers running at
|
|
|
|
# the same time. So in directories with multiple binaries, object files
|
|
|
|
# from the first linked binaries would be overwritten by those of the
|
|
|
|
# last linked binary. So we use a subdirectory containing the name of the
|
|
|
|
# linked binary.
|
2018-07-17 05:29:49 +03:00
|
|
|
LDFLAGS += -Wl,-object_path_lto,$(@F).lto.o/
|
2018-07-10 01:09:24 +03:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2016-11-10 01:01:24 +03:00
|
|
|
# We only add color flags if neither the flag to disable color
|
|
|
|
# (e.g. "-fno-color-diagnostics" nor a flag to control color
|
|
|
|
# (e.g. "-fcolor-diagnostics=never") is present.
|
|
|
|
define colorize_flags
|
|
|
|
ifeq (,$(filter $(COLOR_CFLAGS:-f%=-fno-%),$$(1))$(findstring $(COLOR_CFLAGS),$$(1)))
|
|
|
|
$(1) += $(COLOR_CFLAGS)
|
|
|
|
endif
|
|
|
|
endef
|
|
|
|
|
|
|
|
color_flags_vars := \
|
|
|
|
COMPILE_CFLAGS \
|
|
|
|
COMPILE_CXXFLAGS \
|
|
|
|
COMPILE_CMFLAGS \
|
|
|
|
COMPILE_CMMFLAGS \
|
|
|
|
LDFLAGS \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifdef MACH_STDOUT_ISATTY
|
|
|
|
ifdef COLOR_CFLAGS
|
2016-11-22 09:37:01 +03:00
|
|
|
# TODO Bug 1319166 - iTerm2 interprets some bytes sequences as a
|
|
|
|
# request to show a print dialog. Don't enable color on iTerm2 until
|
|
|
|
# a workaround is in place.
|
|
|
|
ifneq ($(TERM_PROGRAM),iTerm.app)
|
2016-11-10 01:01:24 +03:00
|
|
|
$(foreach var,$(color_flags_vars),$(eval $(call colorize_flags,$(var))))
|
|
|
|
endif
|
|
|
|
endif
|
2016-11-22 09:37:01 +03:00
|
|
|
endif
|
2016-11-10 01:01:24 +03:00
|
|
|
|
1998-03-28 05:44:41 +03:00
|
|
|
#
|
|
|
|
# Name of the binary code directories
|
|
|
|
#
|
1998-08-20 00:42:14 +04:00
|
|
|
# Override defaults
|
|
|
|
|
1998-08-27 23:52:22 +04:00
|
|
|
DEPENDENCIES = .md
|
1998-03-28 05:44:41 +03:00
|
|
|
|
2013-01-25 01:11:28 +04:00
|
|
|
ifdef MACOSX_DEPLOYMENT_TARGET
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET
|
|
|
|
endif # MACOSX_DEPLOYMENT_TARGET
|
|
|
|
|
2016-07-27 11:03:09 +03:00
|
|
|
# Export to propagate to cl and submake for third-party code.
|
|
|
|
# Eventually, we'll want to just use -I.
|
|
|
|
ifdef INCLUDE
|
|
|
|
export INCLUDE
|
|
|
|
endif
|
|
|
|
|
2016-07-27 12:01:04 +03:00
|
|
|
# Export to propagate to link.exe and submake for third-party code.
|
|
|
|
# Eventually, we'll want to just use -LIBPATH.
|
|
|
|
ifdef LIB
|
|
|
|
export LIB
|
|
|
|
endif
|
|
|
|
|
2012-08-07 22:25:26 +04:00
|
|
|
ifdef MOZ_USING_CCACHE
|
|
|
|
ifdef CLANG_CXX
|
|
|
|
export CCACHE_CPP2=1
|
|
|
|
endif
|
|
|
|
endif
|
2005-04-22 23:06:27 +04:00
|
|
|
|
2002-09-05 10:28:15 +04:00
|
|
|
# Set link flags according to whether we want a console.
|
2014-08-27 13:20:10 +04:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2015-11-26 02:38:16 +03:00
|
|
|
ifdef MOZ_WINCONSOLE
|
2002-09-05 10:28:15 +04:00
|
|
|
ifeq ($(MOZ_WINCONSOLE),1)
|
2015-11-26 02:38:16 +03:00
|
|
|
WIN32_EXE_LDFLAGS += $(WIN32_CONSOLE_EXE_LDFLAGS)
|
|
|
|
else # MOZ_WINCONSOLE
|
|
|
|
WIN32_EXE_LDFLAGS += $(WIN32_GUI_EXE_LDFLAGS)
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
# For setting subsystem version
|
2014-08-27 13:20:10 +04:00
|
|
|
WIN32_EXE_LDFLAGS += $(WIN32_CONSOLE_EXE_LDFLAGS)
|
2004-06-22 00:56:14 +04:00
|
|
|
endif
|
2014-08-27 13:20:10 +04:00
|
|
|
endif # WINNT
|
2002-09-05 10:28:15 +04:00
|
|
|
|
2013-02-14 10:22:00 +04:00
|
|
|
ifdef _MSC_VER
|
|
|
|
ifeq ($(CPU_ARCH),x86_64)
|
2017-09-28 12:31:47 +03:00
|
|
|
ifdef MOZ_ASAN
|
|
|
|
# ASan could have 3x stack memory usage of normal builds.
|
|
|
|
WIN32_EXE_LDFLAGS += -STACK:6291456
|
2017-03-20 05:52:00 +03:00
|
|
|
else
|
2017-09-28 12:31:47 +03:00
|
|
|
# set stack to 2MB on x64 build. See bug 582910
|
|
|
|
WIN32_EXE_LDFLAGS += -STACK:2097152
|
|
|
|
endif
|
2013-02-14 10:22:00 +04:00
|
|
|
endif
|
2017-03-20 05:52:00 +03:00
|
|
|
endif
|
2013-02-14 10:22:00 +04:00
|
|
|
|
2008-06-06 23:43:26 +04:00
|
|
|
-include $(topsrcdir)/$(MOZ_BUILD_APP)/app-config.mk
|
1998-03-28 05:44:41 +03:00
|
|
|
|
|
|
|
######################################################################
|
|
|
|
|
2012-08-27 23:27:16 +04:00
|
|
|
GARBAGE += $(DEPENDENCIES) core $(wildcard core.[0-9]*) $(wildcard *.err) $(wildcard *.pure) $(wildcard *_pure_*.o) Templates.DB
|
1998-03-28 05:44:41 +03:00
|
|
|
|
2003-02-23 18:54:21 +03:00
|
|
|
ifeq ($(OS_ARCH),Darwin)
|
|
|
|
ifndef NSDISTMODE
|
|
|
|
NSDISTMODE=absolute_symlink
|
|
|
|
endif
|
2009-03-12 01:39:24 +03:00
|
|
|
PWD := $(CURDIR)
|
2003-02-23 18:54:21 +03:00
|
|
|
endif
|
|
|
|
|
2014-11-30 04:45:31 +03:00
|
|
|
NSINSTALL_PY := $(PYTHON) $(abspath $(MOZILLA_DIR)/config/nsinstall.py)
|
2016-08-04 11:55:54 +03:00
|
|
|
ifneq (,$(or $(filter WINNT,$(HOST_OS_ARCH)),$(if $(COMPILE_ENVIRONMENT),,1)))
|
2012-07-03 10:43:06 +04:00
|
|
|
NSINSTALL = $(NSINSTALL_PY)
|
|
|
|
else
|
2014-08-06 21:58:50 +04:00
|
|
|
NSINSTALL = $(DEPTH)/config/nsinstall$(HOST_BIN_SUFFIX)
|
2012-07-03 10:43:06 +04:00
|
|
|
endif # WINNT
|
2005-07-28 23:48:12 +04:00
|
|
|
|
1998-03-28 05:44:41 +03:00
|
|
|
|
2014-02-11 02:57:01 +04:00
|
|
|
ifeq (,$(CROSS_COMPILE)$(filter-out WINNT, $(OS_ARCH)))
|
2012-07-03 10:43:30 +04:00
|
|
|
INSTALL = $(NSINSTALL) -t
|
|
|
|
|
2005-07-28 23:48:12 +04:00
|
|
|
else
|
2011-07-09 01:30:27 +04:00
|
|
|
|
|
|
|
# This isn't laid out as conditional directives so that NSDISTMODE can be
|
|
|
|
# target-specific.
|
2017-11-22 23:31:01 +03:00
|
|
|
INSTALL = $(if $(filter absolute_symlink, $(NSDISTMODE)), $(NSINSTALL) -L $(PWD), $(NSINSTALL) -R)
|
2011-07-09 01:30:27 +04:00
|
|
|
|
2014-02-11 02:57:01 +04:00
|
|
|
endif # WINNT
|
1998-03-28 05:44:41 +03:00
|
|
|
|
2012-07-03 10:43:30 +04:00
|
|
|
# The default for install_cmd is simply INSTALL
|
|
|
|
install_cmd ?= $(INSTALL) $(1)
|
|
|
|
|
2002-04-25 06:52:44 +04:00
|
|
|
# Use nsinstall in copy mode to install files on the system
|
|
|
|
SYSINSTALL = $(NSINSTALL) -t
|
2012-07-03 10:43:30 +04:00
|
|
|
# This isn't necessarily true, just here
|
|
|
|
sysinstall_cmd = install_cmd
|
2003-08-15 01:36:22 +04:00
|
|
|
|
2004-11-30 02:14:13 +03:00
|
|
|
#
|
|
|
|
# Localization build automation
|
|
|
|
#
|
|
|
|
|
|
|
|
# Because you might wish to "make locales AB_CD=ab-CD", we don't hardcode
|
|
|
|
# MOZ_UI_LOCALE directly, but use an intermediate variable that can be
|
|
|
|
# overridden by the command line. (Besides, AB_CD is prettier).
|
|
|
|
AB_CD = $(MOZ_UI_LOCALE)
|
2018-02-20 23:28:21 +03:00
|
|
|
|
2018-02-28 15:16:17 +03:00
|
|
|
include $(MOZILLA_DIR)/config/AB_rCD.mk
|
2018-02-20 23:28:21 +03:00
|
|
|
|
2014-08-01 20:53:05 +04:00
|
|
|
# Many locales directories want this definition.
|
2015-10-30 05:31:14 +03:00
|
|
|
ACDEFINES += -DAB_CD=$(AB_CD)
|
2005-01-26 16:33:53 +03:00
|
|
|
|
2008-07-22 10:57:07 +04:00
|
|
|
ifndef L10NBASEDIR
|
2012-04-28 01:00:00 +04:00
|
|
|
L10NBASEDIR = $(error L10NBASEDIR not defined by configure)
|
2008-07-22 10:57:07 +04:00
|
|
|
endif
|
|
|
|
|
2017-12-11 20:02:49 +03:00
|
|
|
EXPAND_LOCALE_SRCDIR = $(if $(filter en-US,$(AB_CD)),$(LOCALE_TOPDIR)/$(1)/en-US,$(or $(realpath $(L10NBASEDIR)),$(abspath $(L10NBASEDIR)))/$(AB_CD)/$(subst /locales,,$(1)))
|
2005-01-26 16:33:53 +03:00
|
|
|
|
|
|
|
ifdef relativesrcdir
|
2017-12-11 20:02:49 +03:00
|
|
|
LOCALE_RELATIVEDIR ?= $(relativesrcdir)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef LOCALE_RELATIVEDIR
|
|
|
|
LOCALE_SRCDIR ?= $(call EXPAND_LOCALE_SRCDIR,$(LOCALE_RELATIVEDIR))
|
2005-01-26 16:33:53 +03:00
|
|
|
endif
|
2005-03-28 23:36:24 +04:00
|
|
|
|
2012-11-01 16:25:53 +04:00
|
|
|
ifdef relativesrcdir
|
2017-12-11 20:02:49 +03:00
|
|
|
MAKE_JARS_FLAGS += --relativesrcdir=$(LOCALE_RELATIVEDIR)
|
2012-11-01 16:25:53 +04:00
|
|
|
ifneq (en-US,$(AB_CD))
|
bug 1370506, always merge for l10n repacks, with internally set merge dir, r=glandium
To not merge the en-US language pack, the merge-% steps are in
a conditional function that disables that for en-US. Using a function
here as that's easier than a shell if in the merge rule, and
Makefile conditionals don't get evaluated late enough.
To liberate the l10n builds from settings in the automation,
we move the patch logic from LOCALE_MERGEDIR to REAL_LOCALE_MERGEDIR.
To determine strongly when we're in a repack or building a langpack,
the trick here is to
export IS_LANGUAGE_REPACK
in l10n.mk, and only set that to true in the entry-point rules.
Now, we can use that value in config.mk to define the l10n-specific
rules.
I did the same thing for langpack-%, which allows us to disable
the crashreporter files for language packs, for example.
With that,
make installers-de
just works, if you have localizations checked out.
For a while, we might run l10n-merge twice in automation, but it's really not
optional, so let's just make sure we run it.
MozReview-Commit-ID: 3nr33CKxkBQ
--HG--
extra : rebase_source : 0605a4adba018fa4b85d563cdafba80b0533bc91
2017-06-16 16:21:16 +03:00
|
|
|
ifdef IS_LANGUAGE_REPACK
|
|
|
|
MAKE_JARS_FLAGS += --locale-mergedir=$(REAL_LOCALE_MERGEDIR)
|
2008-10-20 23:57:47 +04:00
|
|
|
endif
|
2012-11-01 16:25:53 +04:00
|
|
|
ifdef IS_LANGUAGE_REPACK
|
2012-11-03 20:13:56 +04:00
|
|
|
MAKE_JARS_FLAGS += --l10n-base=$(L10NBASEDIR)/$(AB_CD)
|
2005-06-01 15:59:09 +04:00
|
|
|
endif
|
2012-11-01 16:25:53 +04:00
|
|
|
else
|
|
|
|
MAKE_JARS_FLAGS += -c $(LOCALE_SRCDIR)
|
|
|
|
endif # en-US
|
|
|
|
else
|
|
|
|
MAKE_JARS_FLAGS += -c $(LOCALE_SRCDIR)
|
|
|
|
endif # ! relativesrcdir
|
2005-06-01 15:59:09 +04:00
|
|
|
|
bug 1370506, always merge for l10n repacks, with internally set merge dir, r=glandium
To not merge the en-US language pack, the merge-% steps are in
a conditional function that disables that for en-US. Using a function
here as that's easier than a shell if in the merge rule, and
Makefile conditionals don't get evaluated late enough.
To liberate the l10n builds from settings in the automation,
we move the patch logic from LOCALE_MERGEDIR to REAL_LOCALE_MERGEDIR.
To determine strongly when we're in a repack or building a langpack,
the trick here is to
export IS_LANGUAGE_REPACK
in l10n.mk, and only set that to true in the entry-point rules.
Now, we can use that value in config.mk to define the l10n-specific
rules.
I did the same thing for langpack-%, which allows us to disable
the crashreporter files for language packs, for example.
With that,
make installers-de
just works, if you have localizations checked out.
For a while, we might run l10n-merge twice in automation, but it's really not
optional, so let's just make sure we run it.
MozReview-Commit-ID: 3nr33CKxkBQ
--HG--
extra : rebase_source : 0605a4adba018fa4b85d563cdafba80b0533bc91
2017-06-16 16:21:16 +03:00
|
|
|
ifdef IS_LANGUAGE_REPACK
|
2011-03-18 20:29:56 +03:00
|
|
|
MERGE_FILE = $(firstword \
|
2017-12-11 20:02:49 +03:00
|
|
|
$(wildcard $(REAL_LOCALE_MERGEDIR)/$(subst /locales,,$(LOCALE_RELATIVEDIR))/$(1)) \
|
2011-03-18 20:29:56 +03:00
|
|
|
$(wildcard $(LOCALE_SRCDIR)/$(1)) \
|
|
|
|
$(srcdir)/en-US/$(1) )
|
Bug 1439742 - Allow {AB_CD} and {AB_rCD} in LOCALIZED_GENERATED_FILES. r=ted.mielczarek
There are a lot of choices and moving pieces in this commit. I elected
to include the mechanics and the target use case in the same commit so
that readers can compare and contrast the implementation and final
expression in one review window.
- Initially, I wanted to make the {AB_CD} substitutions in
LOCALIZED_FILES and not in LOCALIZED_GENERATED_FILES. However, I ran
into conceptual blockers doing this. Fundamentally, LOCALIZED_FILES
is FINAL_TARGET_FILES, and my use case should _not_ be putting files
anywhere near dist/bin. In addition, LOCALIZED_FILES
(FINAL_TARGET_FILES) is handled using manifests, which would need to
grow locale-aware functionality to handle this. That's not desirable.
In addition, if we use manifests, then we lose the powerful locality
of |mach build mobile/android{/base}| re-generating changed
locale-dependent resources. This is similar to how the build system
plumbs dist/idl manifest processing throughout the build: we're
repairing local workflows after moving work into a global process.
For these reasons, this doesn't support {AB_CD} in LOCALIZED_FILES.
- There is even another layer of complexity! There are two axes
involved with these files: AB_CD controls localization and the Make
target controls destination. For the record, it is:
regular builds - AB_CD unset
multi-locale builds - AB_CD set
single-locale repacks - AB_CD set
For the record, the existing logic (before any changes) is:
regular builds - Make target is `libs` in mobile/android/base/locales
multi-locale builds - Make target is `chrome-%` in mobile/android/base/locales
single-locale repacks - Make target is `libs` in mobile/android/base/locales
This commit adds targets for both destinations, and uses Make
chrome-%:: and libs:: magic to control what is invoked in the various
situations. Tricky!
- I added MERGE_RELATIVE_FILES in order to be able to follow-up this
patch with more patches that will get rid of
m/a/base/locales/{moz.build,Makefile.in} altogether, and fold this work
into m/a/base. As it stands, we're already reaching from
m/a/base/locales all the way out to
mobile/locales/.../region.properties, so the existing code doesn't
follow the layout expected between mozilla-central and
l10n-central/$(AB_CD). But that'll impedance will get worse as we
improve the build system dependencies, not better, so we should grow
support for localized resources that aren't exactly as expected.
- I chose to follow Python's syntax for string substitutions. I
would have preferred to mark files that should be localized with a
leading '%'... but I took that for filesystem absolute paths in
moz.build files already. I also considered @AB_CD@ to echo the
preprocessor, but didn't want to open the door to an expecation that
_all_ preprocessor DEFINEs will work in the way {AB_CD} does.
- The generate_*py script changes required a bit of a hack to "turn
off" locale dependent resources. This would have been nicer if we had
marked localized resources with '%'... but we didn't. See the
--fallback flag. The real reason this is needed is that we're doing
work which is more like the work of compare-locales (merging
locale-dependent resources) at build-time rather than repack time. I
don't know why that's the case -- probably when we (I) implemented it,
compare-locales and the whole l10n process was entirely opaque. It's
not worth changing it now, so we use this --fallback flag approach.
- I didn't get to tup support. This should gently fail without
breaking tup builds: any {AB_CD} substitutions just won't be
expanded. I haven't a clue how this should work in tup in the future
(or, more generally, how to make any sense of repacks without
declaring the full set of expected locales at configure time.)
- strings.xml can't be a LOCALIZED_PP_FILES, since we need to
customize the output location based on AB_rCD, and since we need a
little more flexibility than PP_FILES gives for our inputs.
MozReview-Commit-ID: MyfIkNSEzt
--HG--
rename : python/mozbuild/mozbuild/test/backend/data/localized-generated-files/en-US/localized-input => python/mozbuild/mozbuild/test/backend/data/localized-generated-files-AB_CD/en-US/localized-input
rename : python/mozbuild/mozbuild/test/backend/data/localized-generated-files/foo-data => python/mozbuild/mozbuild/test/backend/data/localized-generated-files-AB_CD/foo-data
rename : python/mozbuild/mozbuild/test/backend/data/localized-generated-files/generate-foo.py => python/mozbuild/mozbuild/test/backend/data/localized-generated-files-AB_CD/generate-foo.py
rename : python/mozbuild/mozbuild/test/backend/data/localized-generated-files/en-US/localized-input => python/mozbuild/mozbuild/test/backend/data/localized-generated-files-AB_CD/inner/locales/en-US/localized-input
rename : python/mozbuild/mozbuild/test/backend/data/localized-generated-files/moz.build => python/mozbuild/mozbuild/test/backend/data/localized-generated-files-AB_CD/moz.build
rename : python/mozbuild/mozbuild/test/backend/data/localized-generated-files/non-localized-input => python/mozbuild/mozbuild/test/backend/data/localized-generated-files-AB_CD/non-localized-input
extra : rebase_source : 816b6f220758f2bb3bdd3ec81a2cb02269c6de5b
2018-02-22 04:12:17 +03:00
|
|
|
# Like MERGE_FILE, but with the specified relative source directory
|
|
|
|
# $(2) replacing $(srcdir). It's expected that $(2) will include
|
|
|
|
# '/locales' but not '/locales/en-US'.
|
|
|
|
#
|
|
|
|
# MERGE_RELATIVE_FILE and MERGE_FILE could be -- ahem -- merged by
|
|
|
|
# making the second argument optional, but that expression makes for
|
|
|
|
# difficult to read Make.
|
|
|
|
MERGE_RELATIVE_FILE = $(firstword \
|
|
|
|
$(wildcard $(REAL_LOCALE_MERGEDIR)/$(subst /locales,,$(2))/$(1)) \
|
|
|
|
$(wildcard $(call EXPAND_LOCALE_SRCDIR,$(2))/$(1)) \
|
|
|
|
$(topsrcdir)/$(2)/en-US/$(1) )
|
2011-03-18 20:29:56 +03:00
|
|
|
else
|
|
|
|
MERGE_FILE = $(LOCALE_SRCDIR)/$(1)
|
Bug 1439742 - Allow {AB_CD} and {AB_rCD} in LOCALIZED_GENERATED_FILES. r=ted.mielczarek
There are a lot of choices and moving pieces in this commit. I elected
to include the mechanics and the target use case in the same commit so
that readers can compare and contrast the implementation and final
expression in one review window.
- Initially, I wanted to make the {AB_CD} substitutions in
LOCALIZED_FILES and not in LOCALIZED_GENERATED_FILES. However, I ran
into conceptual blockers doing this. Fundamentally, LOCALIZED_FILES
is FINAL_TARGET_FILES, and my use case should _not_ be putting files
anywhere near dist/bin. In addition, LOCALIZED_FILES
(FINAL_TARGET_FILES) is handled using manifests, which would need to
grow locale-aware functionality to handle this. That's not desirable.
In addition, if we use manifests, then we lose the powerful locality
of |mach build mobile/android{/base}| re-generating changed
locale-dependent resources. This is similar to how the build system
plumbs dist/idl manifest processing throughout the build: we're
repairing local workflows after moving work into a global process.
For these reasons, this doesn't support {AB_CD} in LOCALIZED_FILES.
- There is even another layer of complexity! There are two axes
involved with these files: AB_CD controls localization and the Make
target controls destination. For the record, it is:
regular builds - AB_CD unset
multi-locale builds - AB_CD set
single-locale repacks - AB_CD set
For the record, the existing logic (before any changes) is:
regular builds - Make target is `libs` in mobile/android/base/locales
multi-locale builds - Make target is `chrome-%` in mobile/android/base/locales
single-locale repacks - Make target is `libs` in mobile/android/base/locales
This commit adds targets for both destinations, and uses Make
chrome-%:: and libs:: magic to control what is invoked in the various
situations. Tricky!
- I added MERGE_RELATIVE_FILES in order to be able to follow-up this
patch with more patches that will get rid of
m/a/base/locales/{moz.build,Makefile.in} altogether, and fold this work
into m/a/base. As it stands, we're already reaching from
m/a/base/locales all the way out to
mobile/locales/.../region.properties, so the existing code doesn't
follow the layout expected between mozilla-central and
l10n-central/$(AB_CD). But that'll impedance will get worse as we
improve the build system dependencies, not better, so we should grow
support for localized resources that aren't exactly as expected.
- I chose to follow Python's syntax for string substitutions. I
would have preferred to mark files that should be localized with a
leading '%'... but I took that for filesystem absolute paths in
moz.build files already. I also considered @AB_CD@ to echo the
preprocessor, but didn't want to open the door to an expecation that
_all_ preprocessor DEFINEs will work in the way {AB_CD} does.
- The generate_*py script changes required a bit of a hack to "turn
off" locale dependent resources. This would have been nicer if we had
marked localized resources with '%'... but we didn't. See the
--fallback flag. The real reason this is needed is that we're doing
work which is more like the work of compare-locales (merging
locale-dependent resources) at build-time rather than repack time. I
don't know why that's the case -- probably when we (I) implemented it,
compare-locales and the whole l10n process was entirely opaque. It's
not worth changing it now, so we use this --fallback flag approach.
- I didn't get to tup support. This should gently fail without
breaking tup builds: any {AB_CD} substitutions just won't be
expanded. I haven't a clue how this should work in tup in the future
(or, more generally, how to make any sense of repacks without
declaring the full set of expected locales at configure time.)
- strings.xml can't be a LOCALIZED_PP_FILES, since we need to
customize the output location based on AB_rCD, and since we need a
little more flexibility than PP_FILES gives for our inputs.
MozReview-Commit-ID: MyfIkNSEzt
--HG--
rename : python/mozbuild/mozbuild/test/backend/data/localized-generated-files/en-US/localized-input => python/mozbuild/mozbuild/test/backend/data/localized-generated-files-AB_CD/en-US/localized-input
rename : python/mozbuild/mozbuild/test/backend/data/localized-generated-files/foo-data => python/mozbuild/mozbuild/test/backend/data/localized-generated-files-AB_CD/foo-data
rename : python/mozbuild/mozbuild/test/backend/data/localized-generated-files/generate-foo.py => python/mozbuild/mozbuild/test/backend/data/localized-generated-files-AB_CD/generate-foo.py
rename : python/mozbuild/mozbuild/test/backend/data/localized-generated-files/en-US/localized-input => python/mozbuild/mozbuild/test/backend/data/localized-generated-files-AB_CD/inner/locales/en-US/localized-input
rename : python/mozbuild/mozbuild/test/backend/data/localized-generated-files/moz.build => python/mozbuild/mozbuild/test/backend/data/localized-generated-files-AB_CD/moz.build
rename : python/mozbuild/mozbuild/test/backend/data/localized-generated-files/non-localized-input => python/mozbuild/mozbuild/test/backend/data/localized-generated-files-AB_CD/non-localized-input
extra : rebase_source : 816b6f220758f2bb3bdd3ec81a2cb02269c6de5b
2018-02-22 04:12:17 +03:00
|
|
|
MERGE_RELATIVE_FILE = $(call EXPAND_LOCALE_SRCDIR,$(2))/$(1)
|
2011-03-18 20:29:56 +03:00
|
|
|
endif
|
2014-12-17 18:06:14 +03:00
|
|
|
|
2010-03-24 02:24:38 +03:00
|
|
|
ifneq (WINNT,$(OS_ARCH))
|
2015-11-13 12:23:24 +03:00
|
|
|
RUN_TEST_PROGRAM = $(DIST)/bin/run-mozilla.sh
|
2010-03-24 02:24:38 +03:00
|
|
|
endif # ! WINNT
|
2009-03-02 09:28:09 +03:00
|
|
|
|
2011-08-29 09:34:12 +04:00
|
|
|
# autoconf.mk sets OBJ_SUFFIX to an error to avoid use before including
|
|
|
|
# this file
|
|
|
|
OBJ_SUFFIX := $(_OBJ_SUFFIX)
|
|
|
|
|
2018-03-21 02:44:12 +03:00
|
|
|
OBJS_VAR_SUFFIX := OBJS
|
|
|
|
|
2018-07-10 01:25:37 +03:00
|
|
|
# PGO builds with GCC and clang-cl build objects with instrumentation in
|
|
|
|
# a first pass, then objects optimized, without instrumentation, in a
|
|
|
|
# second pass. If we overwrite the objects from the first pass with
|
|
|
|
# those from the second, we end up not getting instrumentation data for
|
|
|
|
# better optimization on incremental builds. As a consequence, we use a
|
|
|
|
# different object suffix for the first pass.
|
2011-08-29 09:34:12 +04:00
|
|
|
ifdef MOZ_PROFILE_GENERATE
|
2018-07-10 01:25:37 +03:00
|
|
|
ifneq (,$(GNU_CC)$(CLANG_CL))
|
2018-03-21 02:44:12 +03:00
|
|
|
OBJS_VAR_SUFFIX := PGO_OBJS
|
|
|
|
ifndef NO_PROFILE_GUIDED_OPTIMIZE
|
2011-08-29 09:34:12 +04:00
|
|
|
OBJ_SUFFIX := i_o
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
2012-02-13 18:48:23 +04:00
|
|
|
|
2014-11-30 04:45:31 +03:00
|
|
|
PLY_INCLUDE = -I$(MOZILLA_DIR)/other-licenses/ply
|
2012-06-20 11:00:48 +04:00
|
|
|
|
|
|
|
export CL_INCLUDES_PREFIX
|
2017-02-22 08:22:01 +03:00
|
|
|
# Make sure that the build system can handle non-ASCII characters
|
|
|
|
# in environment variables to prevent it from breking silently on
|
|
|
|
# non-English systems.
|
|
|
|
export NONASCII
|