2017-04-19 00:56:45 -07: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/.
#
# 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.
#
# Define an include-at-most-once flag
i f d e f I N C L U D E D _ C O N F I G _ M K
$( error Do not include config .mk twice !)
e n d i f
INCLUDED_CONFIG_MK = 1
EXIT_ON_ERROR = set -e; # Shell loops continue past errors without this.
i f n d e f t o p s r c d i r
topsrcdir = $( DEPTH)
e n d i f
i f n d e f I N C L U D E D _ A U T O C O N F _ M K
i n c l u d e $( DEPTH ) / c o n f i g / a u t o c o n f . m k
e n d i f
- i n c l u d e $( DEPTH ) / . m o z c o n f i g . m k
i f n d e f E X T E R N A L L Y _ M A N A G E D _ M A K E _ F I L E
# Using $(firstword) may not be perfect. But it should be good enough for most
# scenarios.
_current_makefile = $( CURDIR) /$( firstword $( MAKEFILE_LIST) )
# 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".
i f n d e f S T A N D A L O N E _ M A K E F I L E
GLOBAL_DEPS += backend.mk
i n c l u d e b a c k e n d . m k
e n d i f
e n d i f
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) )
i f e q ( . , $( __depth ) )
__depth :=
e n d i f
$( foreach __d ,$ ( __depth ) .,$ ( eval __depth = $ ( wordlist 2,$ ( words $ ( __depth ) ) ,$ ( __depth ) ) $ ( eval -include $ ( subst $ ( space ) ,/,$ ( strip $ ( srcdir ) $ ( __depth ) defs .mk ) ) ) ) )
COMMA = ,
# Sanity check some variables
CHECK_VARS := \
XPI_NAME \
LIBRARY_NAME \
MODULE \
DEPTH \
XPI_PKGNAME \
INSTALL_EXTENSION_ID \
SHARED_LIBRARY_NAME \
SONAME \
STATIC_LIBRARY_NAME \
$( 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 ) )
i f n d e f I N C L U D E D _ F U N C T I O N S _ M K
i n c l u d e $( MOZILLA_DIR ) / c o n f i g / m a k e f i l e s / f u n c t i o n s . m k
e n d i f
RM = rm -f
# FINAL_TARGET specifies the location into which we copy end-user-shipped
# build products (typelibs, components, chrome). It may already be specified by
# a moz.build file.
#
# If XPI_NAME is set, the files will be shipped to $(DIST)/xpi-stage/$(XPI_NAME)
# instead of $(DIST)/bin. In both cases, if DIST_SUBDIR is set, the files will be
# shipped to a $(DIST_SUBDIR) subdirectory.
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)'
i f d e f X P I _ N A M E
ACDEFINES += -DXPI_NAME= $( XPI_NAME)
e n d i f
# The VERSION_NUMBER is suffixed onto the end of the DLLs we ship.
VERSION_NUMBER = 50
i f e q ( $( HOST_OS_ARCH ) , W I N N T )
ifeq ( $( MOZILLA_DIR) ,$( topsrcdir) )
win_srcdir := $( subst $( topsrcdir) ,$( WIN_TOP_SRC) ,$( srcdir) )
else
# This means we're in comm-central's topsrcdir, so we need to adjust
# WIN_TOP_SRC (which points to mozilla's topsrcdir) for the substitution
# to win_srcdir.
cc_WIN_TOP_SRC := $( WIN_TOP_SRC:%/mozilla= %)
win_srcdir := $( subst $( topsrcdir) ,$( cc_WIN_TOP_SRC) ,$( srcdir) )
endif
BUILD_TOOLS = $( WIN_TOP_SRC) /build/unix
e l s e
win_srcdir := $( srcdir)
BUILD_TOOLS = $( MOZILLA_DIR) /build/unix
e n d i f
CONFIG_TOOLS = $( MOZ_BUILD_ROOT) /config
AUTOCONF_TOOLS = $( MOZILLA_DIR) /build/autoconf
#
# Strip off the excessively long version numbers on these platforms,
# but save the version to allow multiple versions of the same base
# platform to be built in the same tree.
#
i f n e q ( , $( filter FreeBSD HP -UX Linux NetBSD OpenBSD SunOS ,$ ( OS_ARCH ) ) )
OS_RELEASE := $( basename $( OS_RELEASE) )
# Allow the user to ignore the OS_VERSION, which is usually irrelevant.
i f d e f W A N T _ M O Z I L L A _ C O N F I G _ O S _ V E R S I O N
OS_VERS := $( suffix $( OS_RELEASE) )
OS_VERSION := $( shell echo $( OS_VERS) | sed 's/-.*//' )
e n d i f
e n d i f
OS_CONFIG := $( OS_ARCH) $( OS_RELEASE)
i f d e f _ M S C _ V E R
CC_WRAPPER ?= $( call py_action,cl)
CXX_WRAPPER ?= $( call py_action,cl)
e n d i f # _MSC_VER
CC := $( CC_WRAPPER) $( CC)
CXX := $( CXX_WRAPPER) $( CXX)
MKDIR ?= mkdir
SLEEP ?= sleep
TOUCH ?= touch
PYTHON_PATH = $( PYTHON) $( topsrcdir) /config/pythonpath.py
# determine debug-related options
_DEBUG_ASFLAGS :=
_DEBUG_CFLAGS :=
_DEBUG_LDFLAGS :=
_DEBUG_CFLAGS += $( MOZ_DEBUG_DEFINES)
i f n e q ( , $( MOZ_DEBUG ) $( MOZ_DEBUG_SYMBOLS ) )
ifeq ( $( AS) ,yasm)
ifeq ( $( OS_ARCH) _$( GNU_CC) ,WINNT_)
_DEBUG_ASFLAGS += -g cv8
else
ifneq ( $( OS_ARCH) ,Darwin)
_DEBUG_ASFLAGS += -g dwarf2
endif
endif
else
_DEBUG_ASFLAGS += $( MOZ_DEBUG_FLAGS)
endif
_DEBUG_CFLAGS += $( MOZ_DEBUG_FLAGS)
_DEBUG_LDFLAGS += $( MOZ_DEBUG_LDFLAGS)
e n d i f
i f e q ( $( YASM ) , $( AS ) )
# yasm doesn't like the GNU as flags we may already have in ASFLAGS, so reset.
ASFLAGS := $( _DEBUG_ASFLAGS)
# yasm doesn't like -c
AS_DASH_C_FLAG =
e l s e
ASFLAGS += $( _DEBUG_ASFLAGS)
e n d i f
OS_CFLAGS += $( _DEBUG_CFLAGS)
OS_CXXFLAGS += $( _DEBUG_CFLAGS)
OS_LDFLAGS += $( _DEBUG_LDFLAGS)
# XXX: What does this? Bug 482434 filed for better explanation.
i f e q ( $( OS_ARCH ) _ $( GNU_CC ) , W I N N T _ )
i f d e f M O Z _ D E B U G
i f n e q ( , $( MOZ_BROWSE_INFO ) $( MOZ_BSCFILE ) )
OS_CFLAGS += -FR
OS_CXXFLAGS += -FR
e n d i f
e l s e # ! MOZ_DEBUG
# MOZ_DEBUG_SYMBOLS generates debug symbols in separate PDB files.
# Used for generating an optimized build with debugging symbols.
# Used in the Windows nightlies to generate symbols for crash reporting.
i f d e f M O Z _ D E B U G _ S Y M B O L S
OS_CXXFLAGS += -UDEBUG -DNDEBUG
OS_CFLAGS += -UDEBUG -DNDEBUG
i f d e f H A V E _ 6 4 B I T _ B U I L D
OS_LDFLAGS += -DEBUG -OPT:REF,ICF
e l s e
OS_LDFLAGS += -DEBUG -OPT:REF
e n d i f
e n d i f
#
# Handle DMD in optimized builds.
# No opt to give sane callstacks.
#
i f d e f M O Z _ D M D
MOZ_OPTIMIZE_FLAGS = -Zi -Od -UDEBUG -DNDEBUG
i f d e f H A V E _ 6 4 B I T _ B U I L D
OS_LDFLAGS = -DEBUG -OPT:REF,ICF
e l s e
OS_LDFLAGS = -DEBUG -OPT:REF
e n d i f
e n d i f # MOZ_DMD
e n d i f # MOZ_DEBUG
e n d i f # WINNT && !GNU_CC
#
# Build using PIC by default
#
_ENABLE_PIC = 1
# 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.
i f d e f S I M P L E _ P R O G R A M S
NO_PROFILE_GUIDED_OPTIMIZE = 1
e n d i f
# No sense in profiling unit tests
i f d e f C P P _ U N I T _ T E S T S
NO_PROFILE_GUIDED_OPTIMIZE = 1
e n d i f
# Enable profile-based feedback
i f n e q ( 1 , $( NO_PROFILE_GUIDED_OPTIMIZE ) )
i f d e f M O Z _ P R O F I L E _ G E N E R A T E
OS_CFLAGS += $( if $( filter $( notdir $<) ,$( notdir $( NO_PROFILE_GUIDED_OPTIMIZE) ) ) ,,$( PROFILE_GEN_CFLAGS) )
OS_CXXFLAGS += $( if $( filter $( notdir $<) ,$( notdir $( NO_PROFILE_GUIDED_OPTIMIZE) ) ) ,,$( PROFILE_GEN_CFLAGS) )
OS_LDFLAGS += $( PROFILE_GEN_LDFLAGS)
i f e q ( W I N N T , $( OS_ARCH ) )
AR_FLAGS += -LTCG
e n d i f
e n d i f # MOZ_PROFILE_GENERATE
i f d e f M O Z _ P R O F I L E _ U S E
OS_CFLAGS += $( if $( filter $( notdir $<) ,$( notdir $( NO_PROFILE_GUIDED_OPTIMIZE) ) ) ,,$( PROFILE_USE_CFLAGS) )
OS_CXXFLAGS += $( if $( filter $( notdir $<) ,$( notdir $( NO_PROFILE_GUIDED_OPTIMIZE) ) ) ,,$( PROFILE_USE_CFLAGS) )
OS_LDFLAGS += $( PROFILE_USE_LDFLAGS)
i f e q ( W I N N T , $( OS_ARCH ) )
AR_FLAGS += -LTCG
e n d i f
e n d i f # MOZ_PROFILE_USE
e n d i f # NO_PROFILE_GUIDED_OPTIMIZE
MAKE_JARS_FLAGS = \
-t $( topsrcdir) \
-f $( MOZ_CHROME_FILE_FORMAT) \
$( NULL)
i f d e f U S E _ E X T E N S I O N _ M A N I F E S T
MAKE_JARS_FLAGS += -e
e n d i f
TAR_CREATE_FLAGS = -chf
#
# Personal makefile customizations go in these optional make include files.
#
MY_CONFIG := $( DEPTH) /config/myconfig.mk
MY_RULES := $( DEPTH) /config/myrules.mk
#
# Default command macros; can be overridden in <arch>.mk.
#
CCC = $( CXX)
INCLUDES = \
-I$( srcdir) \
-I. \
$( LOCAL_INCLUDES) \
-I$( DIST) /include \
$( NULL)
i f n d e f I S _ G Y P _ D I R
# NSPR_CFLAGS and NSS_CFLAGS must appear ahead of the other flags to avoid Linux
# builds wrongly picking up system NSPR/NSS header files.
OS_INCLUDES := \
$( NSPR_CFLAGS) $( NSS_CFLAGS) \
$( MOZ_JPEG_CFLAGS) \
$( MOZ_PNG_CFLAGS) \
2019-02-06 06:54:39 -08:00
$( MOZ_WEBP_CFLAGS) \
2017-04-19 00:56:45 -07:00
$( MOZ_ZLIB_CFLAGS) \
$( MOZ_PIXMAN_CFLAGS) \
$( NULL)
e n d i f
i n c l u d e $( MOZILLA_DIR ) / c o n f i g / s t a t i c - c h e c k i n g - c o n f i g . m k
CFLAGS = $( OS_CPPFLAGS) $( OS_CFLAGS)
CXXFLAGS = $( OS_CPPFLAGS) $( OS_CXXFLAGS)
LDFLAGS = $( OS_LDFLAGS) $( MOZBUILD_LDFLAGS) $( MOZ_FIX_LINK_PATHS)
i f d e f M O Z _ O P T I M I Z E
i f e q ( 1 , $( MOZ_OPTIMIZE ) )
i f n e q ( , $( if $ ( MOZ_PROFILE_GENERATE ) $ ( MOZ_PROFILE_USE ) ,$ ( MOZ_PGO_OPTIMIZE_FLAGS ) ) )
CFLAGS += $( MOZ_PGO_OPTIMIZE_FLAGS)
CXXFLAGS += $( MOZ_PGO_OPTIMIZE_FLAGS)
e l s e
CFLAGS += $( MOZ_OPTIMIZE_FLAGS)
CXXFLAGS += $( MOZ_OPTIMIZE_FLAGS)
e n d i f # neq (,$(MOZ_PROFILE_GENERATE)$(MOZ_PROFILE_USE))
e l s e
CFLAGS += $( MOZ_OPTIMIZE_FLAGS)
CXXFLAGS += $( MOZ_OPTIMIZE_FLAGS)
e n d i f # MOZ_OPTIMIZE == 1
LDFLAGS += $( MOZ_OPTIMIZE_LDFLAGS)
RUSTFLAGS += $( MOZ_OPTIMIZE_RUSTFLAGS)
e n d i f # MOZ_OPTIMIZE
i f d e f C R O S S _ C O M P I L E
HOST_CFLAGS += $( HOST_OPTIMIZE_FLAGS)
e l s e
i f d e f M O Z _ O P T I M I Z E
i f e q ( 1 , $( MOZ_OPTIMIZE ) )
HOST_CFLAGS += $( MOZ_OPTIMIZE_FLAGS)
e l s e
HOST_CFLAGS += $( MOZ_OPTIMIZE_FLAGS)
e n d i f # MOZ_OPTIMIZE == 1
e n d i f # MOZ_OPTIMIZE
e n d i f # CROSS_COMPILE
CFLAGS += $( MOZ_FRAMEPTR_FLAGS)
CXXFLAGS += $( MOZ_FRAMEPTR_FLAGS)
# Check for ALLOW_COMPILER_WARNINGS (shorthand for Makefiles to request that we
# *don't* use the warnings-as-errors compile flags)
# Don't use warnings-as-errors in Windows PGO builds because it is suspected of
# causing problems in that situation. (See bug 437002.)
i f e q ( W I N N T _ 1 , $( OS_ARCH ) _ $( MOZ_PROFILE_GENERATE ) $( MOZ_PROFILE_USE ) )
ALLOW_COMPILER_WARNINGS = 1
e n d i f # WINNT && (MOS_PROFILE_GENERATE ^ MOZ_PROFILE_USE)
# Don't use warnings-as-errors in clang-cl because it warns about many more
# things than MSVC does.
i f d e f C L A N G _ C L
ALLOW_COMPILER_WARNINGS = 1
e n d i f # CLANG_CL
# Use warnings-as-errors if ALLOW_COMPILER_WARNINGS is not set to 1 (which
# includes the case where it's undefined).
i f n e q ( 1 , $( ALLOW_COMPILER_WARNINGS ) )
CXXFLAGS += $( WARNINGS_AS_ERRORS)
CFLAGS += $( WARNINGS_AS_ERRORS)
e n d i f # ALLOW_COMPILER_WARNINGS
i f e q ( $( OS_ARCH ) _ $( GNU_CC ) , W I N N T _ )
#// Currently, unless USE_STATIC_LIBS is defined, the multithreaded
#// DLL version of the RTL is used...
#//
#//------------------------------------------------------------------------
i f d e f M O Z _ A S A N
# ASAN-instrumented code tries to link against the dynamic CRT, which can't be
# used in the same link as the static CRT.
USE_STATIC_LIBS =
e n d i f # MOZ_ASAN
i f d e f U S E _ S T A T I C _ L I B S
RTL_FLAGS = -MT # Statically linked multithreaded RTL
i f d e f M O Z _ D E B U G
i f n d e f M O Z _ N O _ D E B U G _ R T L
RTL_FLAGS = -MTd # Statically linked multithreaded MSVC4.0 debug RTL
e n d i f
e n d i f # MOZ_DEBUG
e l s e # !USE_STATIC_LIBS
RTL_FLAGS = -MD # Dynamically linked, multithreaded RTL
i f d e f M O Z _ D E B U G
i f n d e f M O Z _ N O _ D E B U G _ R T L
RTL_FLAGS = -MDd # Dynamically linked, multithreaded MSVC4.0 debug RTL
e n d i f
e n d i f # MOZ_DEBUG
e n d i f # USE_STATIC_LIBS
e n d i f # WINNT && !GNU_CC
i f e q ( $( OS_ARCH ) , D a r w i n )
# Compiling ObjC requires an Apple compiler anyway, so it's ok to set
# host CMFLAGS here.
2017-12-18 10:45:38 -08:00
HOST_CMFLAGS += -fobjc-exceptions
HOST_CMMFLAGS += -fobjc-exceptions
OS_COMPILE_CMFLAGS += -fobjc-exceptions
OS_COMPILE_CMMFLAGS += -fobjc-exceptions
2017-04-19 00:56:45 -07:00
i f e q ( $( MOZ_WIDGET_TOOLKIT ) , u i k i t )
OS_COMPILE_CMFLAGS += -fobjc-abi-version= 2 -fobjc-legacy-dispatch
OS_COMPILE_CMMFLAGS += -fobjc-abi-version= 2 -fobjc-legacy-dispatch
e n d i f
e n d i f
COMPILE_CFLAGS = $( VISIBILITY_FLAGS) $( DEFINES) $( INCLUDES) $( OS_INCLUDES) $( DSO_CFLAGS) $( DSO_PIC_CFLAGS) $( RTL_FLAGS) $( OS_COMPILE_CFLAGS) $( CFLAGS) $( MOZBUILD_CFLAGS)
COMPILE_CXXFLAGS = $( if $( DISABLE_STL_WRAPPING) ,,$( STL_FLAGS) ) $( VISIBILITY_FLAGS) $( DEFINES) $( INCLUDES) $( OS_INCLUDES) $( DSO_CFLAGS) $( DSO_PIC_CFLAGS) $( RTL_FLAGS) $( OS_COMPILE_CXXFLAGS) $( CXXFLAGS) $( MOZBUILD_CXXFLAGS)
COMPILE_CMFLAGS = $( OS_COMPILE_CMFLAGS) $( MOZBUILD_CMFLAGS)
COMPILE_CMMFLAGS = $( OS_COMPILE_CMMFLAGS) $( MOZBUILD_CMMFLAGS)
ASFLAGS += $( MOZBUILD_ASFLAGS)
i f n d e f C R O S S _ C O M P I L E
HOST_CFLAGS += $( RTL_FLAGS)
e n d i f
HOST_CFLAGS += $( HOST_DEFINES) $( MOZBUILD_HOST_CFLAGS)
HOST_CXXFLAGS += $( HOST_DEFINES) $( MOZBUILD_HOST_CXXFLAGS)
#
# Name of the binary code directories
#
# Override defaults
# Default location of include files
IDL_PARSER_DIR = $( topsrcdir) /xpcom/idl-parser
IDL_PARSER_CACHE_DIR = $( DEPTH) /xpcom/idl-parser
SDK_LIB_DIR = $( DIST) /sdk/lib
SDK_BIN_DIR = $( DIST) /sdk/bin
DEPENDENCIES = .md
i f d e f M A C O S X _ D E P L O Y M E N T _ T A R G E T
export MACOSX_DEPLOYMENT_TARGET
e n d i f # MACOSX_DEPLOYMENT_TARGET
i f d e f M O Z _ U S I N G _ C C A C H E
i f d e f C L A N G _ C X X
export CCACHE_CPP2 = 1
e n d i f
e n d i f
# Set link flags according to whether we want a console.
i f e q ( $( OS_ARCH ) , W I N N T )
i f d e f M O Z _ W I N C O N S O L E
i f e q ( $( MOZ_WINCONSOLE ) , 1 )
WIN32_EXE_LDFLAGS += $( WIN32_CONSOLE_EXE_LDFLAGS)
e l s e # MOZ_WINCONSOLE
WIN32_EXE_LDFLAGS += $( WIN32_GUI_EXE_LDFLAGS)
e n d i f
e l s e
# For setting subsystem version
WIN32_EXE_LDFLAGS += $( WIN32_CONSOLE_EXE_LDFLAGS)
e n d i f
e n d i f # WINNT
i f d e f _ M S C _ V E R
i f e q ( $( CPU_ARCH ) , x 8 6 _ 6 4 )
# set stack to 2MB on x64 build. See bug 582910
WIN32_EXE_LDFLAGS += -STACK:2097152
e n d i f
e n d i f
#
# Include any personal overrides the user might think are needed.
#
- i n c l u d e $( topsrcdir ) / $( MOZ_BUILD_APP ) / a p p - c o n f i g . m k
- i n c l u d e $( MY_CONFIG )
######################################################################
GARBAGE += $( DEPENDENCIES) core $( wildcard core.[ 0-9] *) $( wildcard *.err) $( wildcard *.pure) $( wildcard *_pure_*.o) Templates.DB
i f e q ( $( OS_ARCH ) , D a r w i n )
i f n d e f N S D I S T M O D E
NSDISTMODE = absolute_symlink
e n d i f
PWD := $( CURDIR)
e n d i f
NSINSTALL_PY := $( PYTHON) $( abspath $( MOZILLA_DIR) /config/nsinstall.py)
# For Pymake, wherever we use nsinstall.py we're also going to try to make it
# a native command where possible. Since native commands can't be used outside
# of single-line commands, we continue to provide INSTALL for general use.
# Single-line commands should be switched over to install_cmd.
NSINSTALL_NATIVECMD := %nsinstall nsinstall
i f d e f N S I N S T A L L _ B I N
NSINSTALL = $( NSINSTALL_BIN)
e l s e
i f e q ( $( HOST_OS_ARCH ) , W I N N T )
NSINSTALL = $( NSINSTALL_PY)
e l s e
NSINSTALL = $( DEPTH) /config/nsinstall$( HOST_BIN_SUFFIX)
e n d i f # WINNT
e n d i f # NSINSTALL_BIN
i f e q ( , $( CROSS_COMPILE ) $( filter -out WINNT , $ ( OS_ARCH ) ) )
INSTALL = $( NSINSTALL) -t
e l s e
# This isn't laid out as conditional directives so that NSDISTMODE can be
# target-specific.
INSTALL = $( if $( filter copy, $( NSDISTMODE) ) , $( NSINSTALL) -t, $( if $( filter absolute_symlink, $( NSDISTMODE) ) , $( NSINSTALL) -L $( PWD) , $( NSINSTALL) -R) )
e n d i f # WINNT
# The default for install_cmd is simply INSTALL
install_cmd ?= $( INSTALL) $( 1)
# Use nsinstall in copy mode to install files on the system
SYSINSTALL = $( NSINSTALL) -t
# This isn't necessarily true, just here
sysinstall_cmd = install_cmd
#
# 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)
# Many locales directories want this definition.
ACDEFINES += -DAB_CD= $( AB_CD)
i f n d e f L 1 0 N B A S E D I R
L10NBASEDIR = $( error L10NBASEDIR not defined by configure)
e l s e
IS_LANGUAGE_REPACK = 1
e n d i f
EXPAND_LOCALE_SRCDIR = $( if $( filter en-US,$( AB_CD) ) ,$( topsrcdir) /$( 1) /en-US,$( or $( realpath $( L10NBASEDIR) ) ,$( abspath $( L10NBASEDIR) ) ) /$( AB_CD) /$( subst /locales,,$( 1) ) )
i f d e f r e l a t i v e s r c d i r
LOCALE_SRCDIR ?= $( call EXPAND_LOCALE_SRCDIR,$( relativesrcdir) )
e n d i f
i f d e f r e l a t i v e s r c d i r
MAKE_JARS_FLAGS += --relativesrcdir= $( relativesrcdir)
i f n e q ( e n - U S , $( AB_CD ) )
i f d e f L O C A L E _ M E R G E D I R
MAKE_JARS_FLAGS += --locale-mergedir= $( LOCALE_MERGEDIR)
e n d i f
i f d e f I S _ L A N G U A G E _ R E P A C K
MAKE_JARS_FLAGS += --l10n-base= $( L10NBASEDIR) /$( AB_CD)
e n d i f
e l s e
MAKE_JARS_FLAGS += -c $( LOCALE_SRCDIR)
e n d i f # en-US
e l s e
MAKE_JARS_FLAGS += -c $( LOCALE_SRCDIR)
e n d i f # ! relativesrcdir
i f d e f L O C A L E _ M E R G E D I R
MERGE_FILE = $( firstword \
$( wildcard $( LOCALE_MERGEDIR) /$( subst /locales,,$( relativesrcdir) ) /$( 1) ) \
$( wildcard $( LOCALE_SRCDIR) /$( 1) ) \
$( srcdir) /en-US/$( 1) )
e l s e
MERGE_FILE = $( LOCALE_SRCDIR) /$( 1)
e n d i f
MERGE_FILES = $( foreach f,$( 1) ,$( call MERGE_FILE,$( f) ) )
# These marcros are similar to MERGE_FILE, but no merging, and en-US first.
# They're used for searchplugins, for example.
EN_US_OR_L10N_FILE = $( firstword \
$( wildcard $( srcdir) /en-US/$( 1) ) \
$( LOCALE_SRCDIR) /$( 1) )
EN_US_OR_L10N_FILES = $( foreach f,$( 1) ,$( call EN_US_OR_L10N_FILE,$( f) ) )
i f n e q ( W I N N T , $( OS_ARCH ) )
RUN_TEST_PROGRAM = $( DIST) /bin/run-mozilla.sh
e n d i f # ! WINNT
#
# Java macros
#
# Make sure any compiled classes work with at least JVM 1.4
JAVAC_FLAGS += -source 1.4
i f d e f M O Z _ D E B U G
JAVAC_FLAGS += -g
e n d i f
CREATE_PRECOMPLETE_CMD = $( PYTHON) $( abspath $( MOZILLA_DIR) /config/createprecomplete.py)
# MDDEPDIR is the subdirectory where dependency files are stored
MDDEPDIR := .deps
EXPAND_LIBS_EXEC = $( PYTHON) $( MOZILLA_DIR) /config/expandlibs_exec.py
EXPAND_LIBS_GEN = $( PYTHON) $( MOZILLA_DIR) /config/expandlibs_gen.py
EXPAND_AR = $( EXPAND_LIBS_EXEC) --extract -- $( AR)
EXPAND_CC = $( EXPAND_LIBS_EXEC) --uselist -- $( CC)
EXPAND_CCC = $( EXPAND_LIBS_EXEC) --uselist -- $( CCC)
EXPAND_LD = $( EXPAND_LIBS_EXEC) --uselist -- $( LD)
EXPAND_MKSHLIB_ARGS = --uselist
i f d e f S Y M B O L _ O R D E R
EXPAND_MKSHLIB_ARGS += --symbol-order $( SYMBOL_ORDER)
e n d i f
EXPAND_MKSHLIB = $( EXPAND_LIBS_EXEC) $( EXPAND_MKSHLIB_ARGS) -- $( MKSHLIB)
# $(call CHECK_SYMBOLS,lib,PREFIX,dep_name,test)
# Checks that the given `lib` doesn't contain dependency on symbols with a
# version starting with `PREFIX`_ and matching the `test`. `dep_name` is only
# used for the error message.
# `test` is an awk expression using the information in the variable `v` which
# contains a list of version items ([major, minor, ...]).
d e f i n e C H E C K _ S Y M B O L S
@ $( TOOLCHAIN_PREFIX ) r e a d e l f - s W $( 1) | \
a w k ' $$ 8 ~ / @ $( 2) _ / { \
split( $$ 8,a,"@" ) ; \
split( a[ 2] ,b,"_" ) ; \
split( b[ 2] ,v,"." ) ; \
if ( $( 4) ) { \
if ( !found) { \
print " TEST-UNEXPECTED-FAIL | check_stdcxx | We do not want these $( 3) symbol versions to be used: " \
} \
print " " ,$$ 8; \
found = 1 \
} \
} \
E N D { \
if ( found) { \
exit( 1) \
} \
} '
e n d e f
i f n e q ( , $( MOZ_LIBSTDCXX_TARGET_VERSION ) $( MOZ_LIBSTDCXX_HOST_VERSION ) )
CHECK_STDCXX = $( call CHECK_SYMBOLS,$( 1) ,GLIBCXX,libstdc++,v[ 1] > 3 || ( v[ 1] = = 3 && v[ 2] = = 4 && v[ 3] > 10) )
CHECK_GLIBC = $( call CHECK_SYMBOLS,$( 1) ,GLIBC,libc,v[ 1] > 2 || ( v[ 1] = = 2 && v[ 2] > 7) )
e n d i f
i f e q ( , $( filter $ ( OS_TARGET ) ,WINNT Darwin ) )
CHECK_TEXTREL = @$( TOOLCHAIN_PREFIX) readelf -d $( 1) | grep TEXTREL > /dev/null && echo 'TEST-UNEXPECTED-FAIL | check_textrel | We do not want text relocations in libraries and programs' || true
e n d i f
i f e q ( $( MOZ_WIDGET_TOOLKIT ) , a n d r o i d )
# While this is very unlikely (libc being added by the compiler at the end
# of the linker command line), if libmozglue.so ends up after libc.so, all
# hell breaks loose, so better safe than sorry, and check it's actually the
# case.
CHECK_MOZGLUE_ORDER = @$( TOOLCHAIN_PREFIX) readelf -d $( 1) | grep NEEDED | awk '{ libs[$$NF] = ++n } END { if (libs["[libmozglue.so]"] && libs["[libc.so]"] < libs["[libmozglue.so]"]) { print "libmozglue.so must be linked before libc.so"; exit 1 } }'
e n d i f
d e f i n e C H E C K _ B I N A R Y
$( call CHECK_GLIBC ,$ ( 1) )
$( call CHECK_STDCXX ,$ ( 1) )
$( call CHECK_TEXTREL ,$ ( 1) )
$( call LOCAL_CHECKS ,$ ( 1) )
$( call CHECK_MOZGLUE_ORDER ,$ ( 1) )
e n d e f
# autoconf.mk sets OBJ_SUFFIX to an error to avoid use before including
# this file
OBJ_SUFFIX := $( _OBJ_SUFFIX)
# PGO builds with GCC 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.
i f n d e f N O _ P R O F I L E _ G U I D E D _ O P T I M I Z E
i f d e f M O Z _ P R O F I L E _ G E N E R A T E
i f d e f G N U _ C C
OBJ_SUFFIX := i_o
e n d i f
e n d i f
e n d i f
PLY_INCLUDE = -I$( MOZILLA_DIR) /other-licenses/ply
export CL_INCLUDES_PREFIX
# 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