1998-03-28 02:44:41 +00:00
#
2012-05-21 11:12:37 +00: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 02:44:41 +00: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 03:00:38 +00:00
# Define an include-at-most-once flag
2011-08-09 07:07:48 +00:00
i f d e f I N C L U D E D _ C O N F I G _ M K
2012-04-03 20:08:16 +00:00
$( error Do not include config .mk twice !)
2011-08-09 07:07:48 +00:00
e n d i f
2000-03-14 03:00:38 +00:00
INCLUDED_CONFIG_MK = 1
2005-07-22 20:11:37 +00:00
EXIT_ON_ERROR = set -e; # Shell loops continue past errors without this.
1998-08-19 20:42:14 +00:00
i f n d e f t o p s r c d i r
1998-09-05 01:10:54 +00:00
topsrcdir = $( DEPTH)
1998-08-19 20:42:14 +00:00
e n d i f
1998-03-28 02:44:41 +00:00
2000-03-14 03:00:38 +00:00
i f n d e f I N C L U D E D _ A U T O C O N F _ M K
1999-09-29 20:39:46 +00:00
i n c l u d e $( DEPTH ) / c o n f i g / a u t o c o n f . m k
1999-09-02 22:02:46 +00:00
e n d i f
2013-09-05 00:01:44 +00:00
- i n c l u d e $( DEPTH ) / . m o z c o n f i g . m k
2013-10-21 18:08:00 +00:00
# Integrate with mozbuild-generated make files. We first verify that no
# variables provided by the automatically generated .mk files are
# present. If they are, this is a violation of the separation of
# responsibility between Makefile.in and mozbuild files.
_MOZBUILD_EXTERNAL_VARIABLES := \
ANDROID_GENERATED_RESFILES \
2013-12-12 05:20:07 +00:00
ANDROID_RES_DIRS \
2013-10-29 22:51:27 +00:00
CMSRCS \
2013-10-21 18:08:00 +00:00
CMMSRCS \
CPP_UNIT_TESTS \
DIRS \
EXTRA_PP_COMPONENTS \
EXTRA_PP_JS_MODULES \
2013-11-19 02:47:45 +00:00
FORCE_SHARED_LIB \
2013-10-24 17:53:00 +00:00
FORCE_STATIC_LIB \
2013-11-19 02:47:52 +00:00
FINAL_LIBRARY \
2013-10-21 18:08:00 +00:00
HOST_CSRCS \
2013-10-29 22:51:48 +00:00
HOST_CMMSRCS \
2013-10-21 18:08:00 +00:00
HOST_LIBRARY_NAME \
2013-11-01 23:44:11 +00:00
HOST_PROGRAM \
HOST_SIMPLE_PROGRAMS \
2013-10-21 18:08:00 +00:00
IS_COMPONENT \
2013-12-10 07:18:11 +00:00
JAR_MANIFEST \
2013-10-24 22:38:22 +00:00
JAVA_JAR_TARGETS \
2013-10-21 18:08:00 +00:00
JS_MODULES_PATH \
LIBRARY_NAME \
MODULE \
MSVC_ENABLE_PGO \
NO_DIST_INSTALL \
PARALLEL_DIRS \
2013-11-01 23:44:11 +00:00
PROGRAM \
2013-11-05 18:37:49 +00:00
RESOURCE_FILES \
2013-10-21 18:08:00 +00:00
SDK_HEADERS \
SIMPLE_PROGRAMS \
TEST_DIRS \
TIERS \
TOOL_DIRS \
XPCSHELL_TESTS \
XPIDL_MODULE \
$( NULL)
_DEPRECATED_VARIABLES := \
2013-12-12 05:20:07 +00:00
ANDROID_RESFILES \
2014-04-02 02:52:04 +00:00
LIBXUL_LIBRARY \
2014-03-05 20:51:39 +00:00
MOCHITEST_A11Y_FILES \
MOCHITEST_BROWSER_FILES \
2014-03-10 19:31:23 +00:00
MOCHITEST_BROWSER_FILES_PARTS \
2014-03-05 20:51:39 +00:00
MOCHITEST_CHROME_FILES \
MOCHITEST_FILES \
MOCHITEST_FILES_PARTS \
MOCHITEST_METRO_FILES \
MOCHITEST_ROBOCOP_FILES \
2013-11-19 02:47:47 +00:00
SHORT_LIBNAME \
2013-10-21 18:08:00 +00:00
$( NULL)
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) )
$( foreach var ,$ ( _MOZBUILD_EXTERNAL_VARIABLES ) ,$ ( if $ ( filter file override ,$ ( subst $ ( NULL ) ,_ ,$ ( origin $ ( var ) ) ) ) ,\
$( error Variable $( var) is defined in $( _current_makefile) . It should only be defined in moz.build files) ,\
) )
$( foreach var ,$ ( _DEPRECATED_VARIABLES ) ,$ ( if $ ( filter file override ,$ ( subst $ ( NULL ) ,_ ,$ ( origin $ ( var ) ) ) ) ,\
$( error Variable $( var) is defined in $( _current_makefile) . This variable has been deprecated. It does nothing. It must be removed in order to build) \
) )
# 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
# Freeze the values specified by moz.build to catch them if they fail.
$(foreach var,$(_MOZBUILD_EXTERNAL_VARIABLES),$(eval $(var)_FROZEN : = '$( $ ( var ) ) '))
$(foreach var,$(_DEPRECATED_VARIABLES),$(eval $(var)_FROZEN : = '$( $ ( var ) ) '))
CHECK_MOZBUILD_VARIABLES = $( foreach var,$( _MOZBUILD_EXTERNAL_VARIABLES) , \
$( if $( subst $( $( var) _FROZEN) ,,'$($(var))' ) , \
$( error Variable $( var) is defined in $( _current_makefile) . It should only be defined in moz.build files) ,\
) ) $( foreach var,$( _DEPRECATED_VARIABLES) , \
$( if $( subst $( $( var) _FROZEN) ,,'$($(var))' ) , \
$( error Variable $( var) is defined in $( _current_makefile) . This variable has been deprecated. It does nothing. It must be removed in order to build) ,\
) )
e n d i f
2012-09-25 12:47:20 +00: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) )
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 ) ) ) ) )
2008-06-06 19:31:11 +00:00
COMMA = ,
2007-03-26 18:15:02 +00:00
# Sanity check some variables
CHECK_VARS := \
XPI_NAME \
LIBRARY_NAME \
MODULE \
DEPTH \
XPI_PKGNAME \
INSTALL_EXTENSION_ID \
2008-12-24 19:04:43 +00:00
SHARED_LIBRARY_NAME \
STATIC_LIBRARY_NAME \
2007-03-26 18:15:02 +00: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 16:47:55 +00:00
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 $( topsrcdir ) / 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
2012-06-21 12:50:42 +00:00
RM = rm -f
2011-08-16 07:19:51 +00:00
# LIBXUL_DIST is not defined under js/src, thus we make it mean DIST there.
LIBXUL_DIST ?= $( DIST)
2005-02-18 22:17:37 +00:00
# FINAL_TARGET specifies the location into which we copy end-user-shipped
2013-10-21 18:08:35 +00:00
# build products (typelibs, components, chrome). It may already be specified by
# a moz.build file.
2005-02-18 22:17:37 +00:00
#
2012-06-19 14:45:24 +00:00
# If XPI_NAME is set, the files will be shipped to $(DIST)/xpi-stage/$(XPI_NAME)
2012-12-11 15:37:07 +00: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 18:08:35 +00: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-18 22:17:37 +00:00
2010-06-25 12:27:10 +00:00
i f d e f X P I _ N A M E
DEFINES += -DXPI_NAME= $( XPI_NAME)
e n d i f
2002-11-14 20:23:26 +00:00
# The VERSION_NUMBER is suffixed onto the end of the DLLs we ship.
VERSION_NUMBER = 50
2005-07-05 20:37:27 +00:00
i f e q ( $( HOST_OS_ARCH ) , W I N N T )
2005-06-02 04:00:37 +00:00
win_srcdir := $( subst $( topsrcdir) ,$( WIN_TOP_SRC) ,$( srcdir) )
BUILD_TOOLS = $( WIN_TOP_SRC) /build/unix
e l s e
win_srcdir := $( srcdir)
2000-03-14 06:16:27 +00:00
BUILD_TOOLS = $( topsrcdir) /build/unix
2005-06-02 04:00:37 +00:00
e n d i f
2004-03-23 08:41:30 +00:00
CONFIG_TOOLS = $( MOZ_BUILD_ROOT) /config
2000-03-14 06:16:27 +00:00
AUTOCONF_TOOLS = $( topsrcdir) /build/autoconf
2013-09-26 23:12:19 +00:00
# Disable MOZ_PSEUDO_DERECURSE when it contains no-pymake and we're running
# pymake. This can be removed when no-pymake is removed from the default in
# build/autoconf/compiler-opts.m4.
i f d e f . P Y M A K E
comma = ,
i f n e q ( , $( filter no -pymake ,$ ( subst $ ( comma ) , ,$ ( MOZ_PSEUDO_DERECURSE ) ) ) )
MOZ_PSEUDO_DERECURSE :=
e n d i f
e n d i f
2013-10-01 23:01:35 +00:00
2013-11-04 22:39:28 +00:00
# Disable MOZ_PSEUDO_DERECURSE on PGO builds until it's fixed.
i f n e q ( , $( MOZ_PROFILE_USE ) $( MOZ_PROFILE_GENERATE ) )
2013-10-01 23:01:35 +00:00
MOZ_PSEUDO_DERECURSE :=
e n d i f
1998-03-28 02:44:41 +00:00
#
# 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.
#
2012-08-13 06:41:04 +00:00
i f n e q ( , $( filter FreeBSD HP -UX Linux NetBSD OpenBSD SunOS ,$ ( OS_ARCH ) ) )
1998-03-28 02:44:41 +00:00
OS_RELEASE := $( basename $( OS_RELEASE) )
1998-07-22 05:38:53 +00:00
# Allow the user to ignore the OS_VERSION, which is usually irrelevant.
2000-03-02 02:11:34 +00:00
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) )
1998-03-28 02:44:41 +00:00
OS_VERSION := $( shell echo $( OS_VERS) | sed 's/-.*//' )
e n d i f
1998-07-22 05:38:53 +00:00
e n d i f
1998-03-28 02:44:41 +00:00
OS_CONFIG := $( OS_ARCH) $( OS_RELEASE)
2012-08-07 19:19:55 +00:00
i f d e f _ M S C _ V E R
2013-10-24 03:25:52 +00:00
CC_WRAPPER ?= $( call py_action,cl)
CXX_WRAPPER ?= $( call py_action,cl)
2012-08-07 19:19:55 +00:00
e n d i f # _MSC_VER
2010-08-04 23:59:23 +00:00
CC := $( CC_WRAPPER) $( CC)
CXX := $( CXX_WRAPPER) $( CXX)
2011-04-03 07:16:49 +00:00
MKDIR ?= mkdir
SLEEP ?= sleep
TOUCH ?= touch
2010-08-04 23:59:23 +00:00
2012-08-03 19:09:54 +00:00
i f d e f . P Y M A K E
2013-09-26 07:43:53 +00:00
PYCOMMANDPATH += $( PYTHON_SITE_PACKAGES)
2011-07-22 00:01:45 +00:00
e n d i f
2012-08-03 19:09:54 +00:00
PYTHON_PATH = $( PYTHON) $( topsrcdir) /config/pythonpath.py
2000-05-16 09:31:58 +00:00
# determine debug-related options
2012-02-07 06:06:28 +00:00
_DEBUG_ASFLAGS :=
2001-12-09 07:08:58 +00:00
_DEBUG_CFLAGS :=
_DEBUG_LDFLAGS :=
2000-05-16 09:31:58 +00:00
i f d e f M O Z _ D E B U G
2012-02-07 06:06:28 +00:00
_DEBUG_CFLAGS += $( MOZ_DEBUG_ENABLE_DEFS)
2006-05-16 13:53:54 +00:00
XULPPFLAGS += $( MOZ_DEBUG_ENABLE_DEFS)
2000-05-16 09:31:58 +00:00
e l s e
2001-12-09 07:08:58 +00:00
_DEBUG_CFLAGS += $( MOZ_DEBUG_DISABLE_DEFS)
2006-05-16 13:53:54 +00:00
XULPPFLAGS += $( MOZ_DEBUG_DISABLE_DEFS)
2012-02-07 06:06:28 +00:00
e n d i f
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)
2000-05-16 09:31:58 +00:00
endif
2012-02-07 06:06:28 +00:00
_DEBUG_CFLAGS += $( MOZ_DEBUG_FLAGS)
_DEBUG_LDFLAGS += $( MOZ_DEBUG_LDFLAGS)
2000-05-16 09:31:58 +00:00
e n d i f
2010-08-06 13:51:38 +00:00
MOZALLOC_LIB = $( call EXPAND_LIBNAME_PATH,mozalloc,$( DIST) /lib)
2010-02-11 22:14:38 +00:00
2012-02-07 06:06:28 +00:00
ASFLAGS += $( _DEBUG_ASFLAGS)
2001-12-09 07:08:58 +00:00
OS_CFLAGS += $( _DEBUG_CFLAGS)
OS_CXXFLAGS += $( _DEBUG_CFLAGS)
OS_LDFLAGS += $( _DEBUG_LDFLAGS)
2000-05-16 09:31:58 +00:00
2009-03-28 02:00:25 +00:00
# XXX: What does this? Bug 482434 filed for better explanation.
2003-03-08 05:18:43 +00:00
i f e q ( $( OS_ARCH ) _ $( GNU_CC ) , W I N N T _ )
2002-02-03 03:28:07 +00:00
i f d e f M O Z _ D E B U G
i f n e q ( , $( MOZ_BROWSE_INFO ) $( MOZ_BSCFILE ) )
2005-06-01 14:28:35 +00:00
OS_CFLAGS += -FR
OS_CXXFLAGS += -FR
2002-02-03 03:28:07 +00:00
e n d i f
2008-02-22 11:54:08 +00:00
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
2012-02-07 06:06:28 +00:00
OS_CXXFLAGS += -UDEBUG -DNDEBUG
OS_CFLAGS += -UDEBUG -DNDEBUG
2011-02-21 04:04:32 +00:00
i f d e f H A V E _ 6 4 B I T _ O S
OS_LDFLAGS += -DEBUG -OPT:REF,ICF
e l s e
2009-11-23 15:20:21 +00:00
OS_LDFLAGS += -DEBUG -OPT:REF
2004-10-12 00:09:58 +00:00
e n d i f
2011-02-21 04:04:32 +00:00
e n d i f
2004-10-12 00:09:58 +00:00
2002-02-03 03:28:07 +00:00
#
2012-12-11 00:05:07 +00:00
# Handle trace-malloc and DMD in optimized builds.
2002-02-03 03:28:07 +00:00
# No opt to give sane callstacks.
#
2012-12-11 00:05:07 +00:00
i f n e q ( , $( NS_TRACE_MALLOC ) $( MOZ_DMD ) )
2002-02-26 09:26:10 +00:00
MOZ_OPTIMIZE_FLAGS = -Zi -Od -UDEBUG -DNDEBUG
2011-02-21 04:04:32 +00:00
i f d e f H A V E _ 6 4 B I T _ O S
2013-01-04 03:49:24 +00:00
OS_LDFLAGS = -DEBUG -OPT:REF,ICF
2011-02-21 04:04:32 +00:00
e l s e
2013-01-04 03:49:24 +00:00
OS_LDFLAGS = -DEBUG -OPT:REF
2011-02-21 04:04:32 +00:00
e n d i f
2012-12-11 00:05:07 +00:00
e n d i f # NS_TRACE_MALLOC || MOZ_DMD
2002-02-03 03:28:07 +00:00
e n d i f # MOZ_DEBUG
2011-06-27 19:44:51 +00:00
# We don't build a static CRT when building a custom CRT,
# it appears to be broken. So don't link to jemalloc if
# the Makefile wants static CRT linking.
2011-09-03 06:19:06 +00:00
i f e q ( $( MOZ_MEMORY ) _ $( USE_STATIC_LIBS ) , 1 _ 1 )
2011-06-27 19:44:51 +00:00
# Disable default CRT libs and add the right lib path for the linker
2011-12-28 07:24:02 +00:00
MOZ_GLUE_LDFLAGS =
2011-06-27 19:44:51 +00:00
e n d i f
2003-03-08 05:18:43 +00:00
e n d i f # WINNT && !GNU_CC
2002-02-03 03:28:07 +00:00
2012-02-13 14:48:23 +00:00
i f d e f M O Z _ G L U E _ P R O G R A M _ L D F L A G S
DEFINES += -DMOZ_GLUE_IN_PROGRAM
e l s e
2011-12-28 07:24:02 +00:00
MOZ_GLUE_PROGRAM_LDFLAGS = $( MOZ_GLUE_LDFLAGS)
2011-09-03 06:19:06 +00:00
e n d i f
2001-06-20 20:21:49 +00:00
#
2001-06-18 22:10:38 +00:00
# Build using PIC by default
#
_ENABLE_PIC = 1
2001-06-20 20:21:49 +00:00
2011-08-25 23:36:53 +00:00
# Determine if module being compiled is destined
2004-12-06 22:39:54 +00:00
# to be merged into libxul
2001-06-20 20:21:49 +00:00
2014-03-31 11:21:38 +00:00
i f n e q ( , $( filter xul xul -%,$ ( FINAL_LIBRARY ) $ ( LIBRARY_NAME ) ) )
2013-11-19 02:47:52 +00:00
LIBXUL_LIBRARY := 1
e n d i f
2004-12-06 22:39:54 +00:00
i f d e f L I B X U L _ L I B R A R Y
2001-06-20 20:21:49 +00:00
i f d e f I S _ C O M P O N E N T
2013-08-09 00:12:37 +00:00
$( error IS_COMPONENT is set , but is not compatible with LIBXUL_LIBRARY )
2001-06-20 20:21:49 +00:00
e n d i f
2014-03-31 11:21:38 +00:00
i f e q ( , $( filter xul xul -%,$ ( LIBRARY_NAME ) ) )
2001-06-20 20:21:49 +00:00
FORCE_STATIC_LIB = 1
e n d i f
2014-03-04 07:09:08 +00:00
e n d i f
2003-05-16 06:07:37 +00:00
2005-06-15 13:41:39 +00:00
# If we are building this component into an extension/xulapp, it cannot be
# statically linked. In the future we may want to add a xulapp meta-component
# build option.
i f d e f X P I _ N A M E
i f d e f I S _ C O M P O N E N T
EXPORT_LIBRARY =
FORCE_STATIC_LIB =
FORCE_SHARED_LIB = 1
e n d i f
e n d i f
2008-12-24 19:04:43 +00:00
i f n d e f S H A R E D _ L I B R A R Y _ N A M E
i f d e f L I B R A R Y _ N A M E
SHARED_LIBRARY_NAME = $( LIBRARY_NAME)
e n d i f
e n d i f
i f n d e f S T A T I C _ L I B R A R Y _ N A M E
i f d e f L I B R A R Y _ N A M E
STATIC_LIBRARY_NAME = $( LIBRARY_NAME)
e n d i f
e n d i f
2013-05-16 13:33:26 +00:00
# PGO on MSVC is opt-in
i f d e f _ M S C _ V E R
i f n d e f M S V C _ E N A B L E _ P G O
NO_PROFILE_GUIDED_OPTIMIZE = 1
e n d i f
e n d i f
2010-07-26 19:21:55 +00:00
# No sense in profiling tools
i f d e f I N T E R N A L _ T O O L S
NO_PROFILE_GUIDED_OPTIMIZE = 1
e n d i f
# 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
2011-04-14 09:23:13 +00:00
# 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
2008-02-16 22:23:07 +00:00
# Enable profile-based feedback
2013-11-01 23:42:53 +00:00
i f n e q ( 1 , $( NO_PROFILE_GUIDED_OPTIMIZE ) )
2004-03-21 02:31:17 +00:00
i f d e f M O Z _ P R O F I L E _ G E N E R A T E
2013-11-01 23:42:53 +00:00
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) )
2008-02-20 23:29:11 +00:00
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
2008-02-16 22:23:07 +00:00
2004-03-21 02:31:17 +00:00
i f d e f M O Z _ P R O F I L E _ U S E
2013-11-01 23:42:53 +00:00
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) )
2008-02-20 23:29:11 +00:00
OS_LDFLAGS += $( PROFILE_USE_LDFLAGS)
i f e q ( W I N N T , $( OS_ARCH ) )
AR_FLAGS += -LTCG
2004-03-21 02:31:17 +00:00
e n d i f
2008-02-20 23:29:11 +00:00
e n d i f # MOZ_PROFILE_USE
e n d i f # NO_PROFILE_GUIDED_OPTIMIZE
2004-03-21 02:31:17 +00:00
2014-02-06 19:17:44 +00:00
i f d e f _ M S C _ V E R
OS_LDFLAGS += $( DELAYLOAD_LDFLAGS)
e n d i f # _MSC_VER
2008-02-16 22:23:07 +00:00
2014-02-18 06:56:51 +00:00
i f n e q ( , $( LIBXUL_LIBRARY ) )
2005-04-06 03:35:24 +00:00
DEFINES += -DMOZILLA_INTERNAL_API
e n d i f
2004-12-09 19:28:35 +00:00
# Force XPCOM/widget/gfx methods to be _declspec(dllexport) when we're
# building libxul libraries
i f d e f L I B X U L _ L I B R A R Y
DEFINES += \
2013-07-12 12:56:54 +00:00
-DIMPL_LIBXUL \
2004-12-09 19:28:35 +00:00
$( NULL)
2010-08-14 04:18:05 +00:00
i f n d e f J S _ S H A R E D _ L I B R A R Y
DEFINES += -DSTATIC_EXPORTABLE_JS_API
e n d i f
2004-12-09 19:28:35 +00:00
e n d i f
2004-12-07 02:35:37 +00:00
2005-06-01 11:59:09 +00:00
MAKE_JARS_FLAGS = \
2008-09-19 16:19:52 +00:00
-t $( topsrcdir) \
2005-06-01 11:59:09 +00:00
-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
2013-07-10 09:55:01 +00:00
TAR_CREATE_FLAGS = -chf
2005-06-01 11:59:09 +00:00
1998-03-28 02:44:41 +00:00
#
# 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.
#
2011-01-25 20:14:30 +00:00
CCC = $( CXX)
1998-03-28 02:44:41 +00:00
2006-08-28 15:24:32 +00:00
# Java macros
JAVA_GEN_DIR = _javagen
JAVA_DIST_DIR = $( DEPTH) /$( JAVA_GEN_DIR)
2007-01-31 20:54:19 +00:00
JAVA_IFACES_PKG_NAME = org/mozilla/interfaces
2006-08-28 15:24:32 +00:00
2013-12-10 15:37:03 +00:00
OS_INCLUDES += $( MOZ_JPEG_CFLAGS) $( MOZ_PNG_CFLAGS) $( MOZ_ZLIB_CFLAGS) $( MOZ_PIXMAN_CFLAGS)
2012-06-20 07:00:48 +00:00
2012-10-24 21:31:54 +00:00
# NSPR_CFLAGS and NSS_CFLAGS must appear ahead of OS_INCLUDES to avoid Linux
# builds wrongly picking up system NSPR/NSS header files.
2009-05-18 18:15:05 +00:00
INCLUDES = \
-I$( srcdir) \
-I. \
2013-11-19 19:10:15 +00:00
$( LOCAL_INCLUDES) \
2012-06-10 23:44:50 +00:00
-I$( DIST) /include \
$( if $( LIBXUL_SDK) ,-I$( LIBXUL_SDK) /include) \
2012-10-24 21:31:54 +00:00
$( NSPR_CFLAGS) $( NSS_CFLAGS) \
2009-05-18 18:15:05 +00:00
$( OS_INCLUDES) \
2011-08-25 23:36:53 +00:00
$( NULL)
2005-04-06 03:35:24 +00:00
2008-12-02 19:46:37 +00:00
i n c l u d e $( topsrcdir ) / 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
2008-02-27 16:28:13 +00:00
2012-06-20 07:00:48 +00:00
CFLAGS = $( OS_CPPFLAGS) $( OS_CFLAGS)
CXXFLAGS = $( OS_CPPFLAGS) $( OS_CXXFLAGS)
2014-02-26 20:49:00 +00:00
LDFLAGS = $( OS_LDFLAGS) $( MOZBUILD_LDFLAGS) $( MOZ_FIX_LINK_PATHS)
2001-11-16 07:42:48 +00:00
# Allow each module to override the *default* optimization settings
2004-12-06 22:39:54 +00:00
# by setting MODULE_OPTIMIZE_FLAGS if the developer has not given
2001-11-16 07:42:48 +00:00
# arguments to --enable-optimize
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 d e f M O D U L E _ O P T I M I Z E _ F L A G S
CFLAGS += $( MODULE_OPTIMIZE_FLAGS)
CXXFLAGS += $( MODULE_OPTIMIZE_FLAGS)
e l s e
2011-05-24 10:56:04 +00:00
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
2001-11-16 07:42:48 +00:00
CFLAGS += $( MOZ_OPTIMIZE_FLAGS)
CXXFLAGS += $( MOZ_OPTIMIZE_FLAGS)
2011-05-24 10:56:04 +00:00
e n d i f # neq (,$(MOZ_PROFILE_GENERATE)$(MOZ_PROFILE_USE))
2001-11-16 07:42:48 +00:00
e n d i f # MODULE_OPTIMIZE_FLAGS
e l s e
CFLAGS += $( MOZ_OPTIMIZE_FLAGS)
CXXFLAGS += $( MOZ_OPTIMIZE_FLAGS)
e n d i f # MOZ_OPTIMIZE == 1
LDFLAGS += $( MOZ_OPTIMIZE_LDFLAGS)
e n d i f # MOZ_OPTIMIZE
1999-02-09 23:24:12 +00:00
2002-11-15 03:41:17 +00:00
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 ) )
i f d e f M O D U L E _ O P T I M I Z E _ F L A G S
HOST_CFLAGS += $( MODULE_OPTIMIZE_FLAGS)
e l s e
HOST_CFLAGS += $( MOZ_OPTIMIZE_FLAGS)
e n d i f # MODULE_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
2011-09-03 17:36:18 +00:00
CFLAGS += $( MOZ_FRAMEPTR_FLAGS)
CXXFLAGS += $( MOZ_FRAMEPTR_FLAGS)
2010-05-06 18:55:18 +00:00
# Check for FAIL_ON_WARNINGS & FAIL_ON_WARNINGS_DEBUG (Shorthand for Makefiles
# to request that we use the 'warnings as errors' compile flags)
# NOTE: First, we clear FAIL_ON_WARNINGS[_DEBUG] if we're doing a Windows PGO
# build, since WARNINGS_AS_ERRORS has been suspected of causing isuses in that
# situation. (See bug 437002.)
i f e q ( W I N N T _ 1 , $( OS_ARCH ) _ $( MOZ_PROFILE_GENERATE ) $( MOZ_PROFILE_USE ) )
FAIL_ON_WARNINGS_DEBUG =
FAIL_ON_WARNINGS =
e n d i f # WINNT && (MOS_PROFILE_GENERATE ^ MOZ_PROFILE_USE)
# Now, check for debug version of flag; it turns on normal flag in debug builds.
i f d e f F A I L _ O N _ W A R N I N G S _ D E B U G
i f d e f M O Z _ D E B U G
FAIL_ON_WARNINGS = 1
e n d i f # MOZ_DEBUG
e n d i f # FAIL_ON_WARNINGS_DEBUG
# Check for normal version of flag, and add WARNINGS_AS_ERRORS if it's set to 1.
i f d e f F A I L _ O N _ W A R N I N G S
CXXFLAGS += $( WARNINGS_AS_ERRORS)
CFLAGS += $( WARNINGS_AS_ERRORS)
e n d i f # FAIL_ON_WARNINGS
2002-08-20 22:21:21 +00:00
2003-03-08 05:18:43 +00:00
i f e q ( $( OS_ARCH ) _ $( GNU_CC ) , W I N N T _ )
2001-12-09 07:08:58 +00:00
#// Currently, unless USE_STATIC_LIBS is defined, the multithreaded
#// DLL version of the RTL is used...
#//
#//------------------------------------------------------------------------
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
2013-12-09 06:58:16 +00:00
i f n e q ( , $( MOZ_DEBUG ) $( NS_TRACE_MALLOC ) )
2006-01-24 18:15:11 +00:00
i f n d e f M O Z _ N O _ D E B U G _ R T L
2001-12-09 07:08:58 +00:00
RTL_FLAGS = -MTd # Statically linked multithreaded MSVC4.0 debug RTL
2006-01-24 18:15:11 +00:00
e n d i f
2013-12-09 06:58:16 +00:00
e n d i f # MOZ_DEBUG || NS_TRACE_MALLOC
2001-12-09 07:08:58 +00:00
e l s e # !USE_STATIC_LIBS
RTL_FLAGS = -MD # Dynamically linked, multithreaded RTL
2013-12-09 06:58:16 +00:00
i f n e q ( , $( MOZ_DEBUG ) $( NS_TRACE_MALLOC ) )
2001-12-09 07:08:58 +00:00
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
2011-08-25 23:36:53 +00:00
e n d i f
2013-12-09 06:58:16 +00:00
e n d i f # MOZ_DEBUG || NS_TRACE_MALLOC
2001-12-09 07:08:58 +00:00
e n d i f # USE_STATIC_LIBS
2003-03-08 05:18:43 +00:00
e n d i f # WINNT && !GNU_CC
2001-12-09 07:08:58 +00:00
2008-02-22 21:08:36 +00:00
i f e q ( $( OS_ARCH ) , D a r w i n )
2010-04-27 12:57:34 +00:00
# Compiling ObjC requires an Apple compiler anyway, so it's ok to set
# host CMFLAGS here.
2008-02-22 21:08:36 +00:00
HOST_CMFLAGS += -fobjc-exceptions
HOST_CMMFLAGS += -fobjc-exceptions
OS_COMPILE_CMFLAGS += -fobjc-exceptions
OS_COMPILE_CMMFLAGS += -fobjc-exceptions
2010-04-27 12:57:34 +00: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
2008-02-22 21:08:36 +00:00
e n d i f
2001-12-09 07:08:58 +00:00
2014-02-26 20:49:00 +00:00
COMPILE_CFLAGS = $( VISIBILITY_FLAGS) $( DEFINES) $( INCLUDES) $( DSO_CFLAGS) $( DSO_PIC_CFLAGS) $( RTL_FLAGS) $( OS_CPPFLAGS) $( OS_COMPILE_CFLAGS) $( CFLAGS) $( MOZBUILD_CFLAGS) $( EXTRA_COMPILE_FLAGS)
2014-03-05 00:39:06 +00:00
COMPILE_CXXFLAGS = $( if $( DISABLE_STL_WRAPPING) ,,$( STL_FLAGS) ) $( VISIBILITY_FLAGS) $( DEFINES) $( INCLUDES) $( DSO_CFLAGS) $( DSO_PIC_CFLAGS) $( RTL_FLAGS) $( OS_CPPFLAGS) $( OS_COMPILE_CXXFLAGS) $( CXXFLAGS) $( MOZBUILD_CXXFLAGS) $( EXTRA_COMPILE_FLAGS)
2014-02-26 20:49:00 +00:00
COMPILE_CMFLAGS = $( OS_COMPILE_CMFLAGS) $( MOZBUILD_CMFLAGS) $( EXTRA_COMPILE_FLAGS)
COMPILE_CMMFLAGS = $( OS_COMPILE_CMMFLAGS) $( MOZBUILD_CMMFLAGS) $( EXTRA_COMPILE_FLAGS)
2013-12-12 14:41:05 +00:00
ASFLAGS += $( EXTRA_ASSEMBLER_FLAGS)
2008-02-25 23:38:23 +00:00
i f n d e f C R O S S _ C O M P I L E
2006-04-06 16:51:10 +00:00
HOST_CFLAGS += $( RTL_FLAGS)
2008-02-25 23:38:23 +00:00
e n d i f
1998-03-28 02:44:41 +00:00
#
# Name of the binary code directories
#
1998-08-19 20:42:14 +00:00
# Override defaults
1999-01-22 04:00:13 +00:00
# We need to know where to find the libraries we
# put on the link line for binaries, and should
# we link statically or dynamic? Assuming dynamic for now.
2003-03-08 05:18:43 +00:00
i f n e q ( W I N N T _ , $( OS_ARCH ) _ $( GNU_CC ) )
1999-05-27 03:35:52 +00:00
LIBS_DIR = -L$( DIST) /bin -L$( DIST) /lib
2006-01-28 17:32:37 +00:00
i f d e f L I B X U L _ S D K
LIBS_DIR += -L$( LIBXUL_SDK) /bin -L$( LIBXUL_SDK) /lib
e n d i f
2001-12-04 21:17:48 +00:00
e n d i f
1999-01-22 04:00:13 +00:00
2000-01-11 05:13:01 +00:00
# Default location of include files
2013-11-07 01:37:44 +00:00
i f n d e f L I B X U L _ S D K
2013-08-14 15:40:25 +00:00
IDL_PARSER_DIR = $( topsrcdir) /xpcom/idl-parser
IDL_PARSER_CACHE_DIR = $( DEPTH) /xpcom/idl-parser
2013-11-07 01:37:44 +00:00
e l s e
IDL_PARSER_DIR = $( LIBXUL_SDK) /sdk/bin
IDL_PARSER_CACHE_DIR = $( LIBXUL_SDK) /sdk/bin
e n d i f
2006-01-28 17:32:37 +00:00
2009-05-21 18:12:46 +00:00
SDK_LIB_DIR = $( DIST) /sdk/lib
SDK_BIN_DIR = $( DIST) /sdk/bin
1998-08-27 19:52:22 +00:00
DEPENDENCIES = .md
1998-03-28 02:44:41 +00:00
2004-12-04 05:24:38 +00:00
MOZ_COMPONENT_LIBS = $( XPCOM_LIBS) $( MOZ_COMPONENT_NSPR_LIBS)
2000-04-04 04:46:38 +00:00
2013-01-24 21:11:28 +00:00
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
2012-08-07 18:25:26 +00:00
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
2005-04-22 19:06:27 +00:00
2002-09-05 06:28:15 +00:00
# Set link flags according to whether we want a console.
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 )
i f e q ( $( OS_ARCH ) , W I N N T )
2004-06-21 20:56:14 +00:00
i f d e f G N U _ C C
WIN32_EXE_LDFLAGS += -mconsole
e l s e
2005-06-01 14:28:35 +00:00
WIN32_EXE_LDFLAGS += -SUBSYSTEM:CONSOLE
2002-09-05 06:28:15 +00:00
e n d i f
2004-06-21 20:56:14 +00:00
e n d i f
2002-09-05 06:28:15 +00:00
e l s e # MOZ_WINCONSOLE
i f e q ( $( OS_ARCH ) , W I N N T )
2004-06-21 20:56:14 +00:00
i f d e f G N U _ C C
WIN32_EXE_LDFLAGS += -mwindows
e l s e
2005-06-01 14:28:35 +00:00
WIN32_EXE_LDFLAGS += -SUBSYSTEM:WINDOWS
2002-09-05 06:28:15 +00:00
e n d i f
e n d i f
e n d i f
2004-06-21 20:56:14 +00:00
e n d i f
2002-09-05 06:28:15 +00:00
2013-02-14 06:22:00 +00:00
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
2005-06-20 13:01:58 +00:00
# If we're building a component on MSVC, we don't want to generate an
# import lib, because that import lib will collide with the name of a
# static version of the same library.
i f e q ( $( GNU_LD ) $( OS_ARCH ) , W I N N T )
i f d e f I S _ C O M P O N E N T
2006-01-03 21:09:38 +00:00
LDFLAGS += -IMPLIB:fake.lib
DELETE_AFTER_LINK = fake.lib fake.exp
2005-06-20 13:01:58 +00:00
e n d i f
e n d i f
1998-03-28 02:44:41 +00:00
#
# Include any personal overrides the user might think are needed.
#
2008-06-06 19:43:26 +00:00
- i n c l u d e $( topsrcdir ) / $( MOZ_BUILD_APP ) / a p p - c o n f i g . m k
1998-03-28 02:44:41 +00:00
- i n c l u d e $( MY_CONFIG )
######################################################################
2012-08-27 19:27:16 +00:00
GARBAGE += $( DEPENDENCIES) core $( wildcard core.[ 0-9] *) $( wildcard *.err) $( wildcard *.pure) $( wildcard *_pure_*.o) Templates.DB
1998-03-28 02:44:41 +00:00
2003-02-23 15:54:21 +00:00
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
2009-03-11 22:39:24 +00:00
PWD := $( CURDIR)
2003-02-23 15:54:21 +00:00
e n d i f
2013-10-16 22:55:16 +00:00
NSINSTALL_PY := $( PYTHON) $( abspath $( topsrcdir) /config/nsinstall.py)
2012-07-03 06:43:30 +00:00
# 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
2012-07-03 06:43:06 +00:00
2005-07-28 19:48:12 +00:00
i f d e f N S I N S T A L L _ B I N
2011-01-25 20:14:30 +00:00
NSINSTALL = $( NSINSTALL_BIN)
2005-07-28 19:48:12 +00:00
e l s e
2012-07-03 06:43:06 +00:00
i f e q ( $( HOST_OS_ARCH ) , W I N N T )
NSINSTALL = $( NSINSTALL_PY)
e l s e
2014-01-13 22:38:40 +00:00
NSINSTALL = $( DIST) /bin/nsinstall$( HOST_BIN_SUFFIX)
2012-07-03 06:43:06 +00:00
e n d i f # WINNT
2005-07-28 19:48:12 +00:00
e n d i f # NSINSTALL_BIN
1998-03-28 02:44:41 +00:00
2014-02-10 22:57:01 +00:00
i f e q ( , $( CROSS_COMPILE ) $( filter -out WINNT , $ ( OS_ARCH ) ) )
2012-07-03 06:43:30 +00:00
INSTALL = $( NSINSTALL) -t
i f d e f . P Y M A K E
install_cmd = $( NSINSTALL_NATIVECMD) -t $( 1)
e n d i f # .PYMAKE
2005-07-28 19:48:12 +00:00
e l s e
2011-07-08 21:30:27 +00:00
# This isn't laid out as conditional directives so that NSDISTMODE can be
# target-specific.
2011-07-14 00:54:31 +00:00
INSTALL = $( if $( filter copy, $( NSDISTMODE) ) , $( NSINSTALL) -t, $( if $( filter absolute_symlink, $( NSDISTMODE) ) , $( NSINSTALL) -L $( PWD) , $( NSINSTALL) -R) )
2011-07-08 21:30:27 +00:00
2014-02-10 22:57:01 +00:00
e n d i f # WINNT
1998-03-28 02:44:41 +00:00
2012-07-03 06:43:30 +00:00
# The default for install_cmd is simply INSTALL
install_cmd ?= $( INSTALL) $( 1)
2002-04-25 02:52:44 +00:00
# Use nsinstall in copy mode to install files on the system
SYSINSTALL = $( NSINSTALL) -t
2012-07-03 06:43:30 +00:00
# This isn't necessarily true, just here
sysinstall_cmd = install_cmd
2003-08-14 21:36:22 +00:00
2004-11-29 23:14:13 +00: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)
2005-01-26 13:33:53 +00:00
2008-07-22 06:57:07 +00:00
i f n d e f L 1 0 N B A S E D I R
2012-04-27 21:00:00 +00:00
L10NBASEDIR = $( error L10NBASEDIR not defined by configure)
e l s e
IS_LANGUAGE_REPACK = 1
2008-07-22 06:57:07 +00:00
e n d i f
2013-10-16 22:55:16 +00:00
EXPAND_LOCALE_SRCDIR = $( if $( filter en-US,$( AB_CD) ) ,$( topsrcdir) /$( 1) /en-US,$( or $( realpath $( L10NBASEDIR) ) ,$( abspath $( L10NBASEDIR) ) ) /$( AB_CD) /$( subst /locales,,$( 1) ) )
2005-01-26 13:33:53 +00:00
i f d e f r e l a t i v e s r c d i r
2013-09-05 00:01:45 +00:00
LOCALE_SRCDIR ?= $( call EXPAND_LOCALE_SRCDIR,$( relativesrcdir) )
2005-01-26 13:33:53 +00:00
e n d i f
2005-03-28 19:36:24 +00:00
2012-11-01 12:25:53 +00:00
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 ) )
2008-10-20 19:57:47 +00:00
i f d e f L O C A L E _ M E R G E D I R
2012-11-01 12:25:53 +00:00
MAKE_JARS_FLAGS += --locale-mergedir= $( LOCALE_MERGEDIR)
2008-10-20 19:57:47 +00:00
e n d i f
2012-11-01 12:25:53 +00:00
i f d e f I S _ L A N G U A G E _ R E P A C K
2012-11-03 16:13:56 +00:00
MAKE_JARS_FLAGS += --l10n-base= $( L10NBASEDIR) /$( AB_CD)
2005-06-01 11:59:09 +00:00
e n d i f
2012-11-01 12:25:53 +00:00
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
2005-06-01 11:59:09 +00:00
2011-03-18 17:29:56 +00:00
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) ) )
2010-03-23 23:24:38 +00:00
i f n e q ( W I N N T , $( OS_ARCH ) )
2011-08-16 07:19:51 +00:00
RUN_TEST_PROGRAM = $( LIBXUL_DIST) /bin/run-mozilla.sh
2010-03-23 23:24:38 +00:00
e n d i f # ! WINNT
2009-03-02 06:28:09 +00:00
2005-12-18 17:09:28 +00:00
#
# 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
2008-12-19 14:50:24 +00:00
2013-10-16 22:55:16 +00:00
CREATE_PRECOMPLETE_CMD = $( PYTHON) $( abspath $( topsrcdir) /config/createprecomplete.py)
2011-04-13 00:27:41 +00:00
2012-08-27 19:27:16 +00:00
# MDDEPDIR is the subdirectory where dependency files are stored
MDDEPDIR := .deps
2013-10-23 22:59:03 +00:00
EXPAND_LIBS_EXEC = $( PYTHON) $( topsrcdir) /config/expandlibs_exec.py $( if $@ ,--depend $( MDDEPDIR) /$@ .pp --target $@ )
EXPAND_LIBS_GEN = $( PYTHON) $( topsrcdir) /config/expandlibs_gen.py $( if $@ ,--depend $( MDDEPDIR) /$@ .pp)
2011-02-25 14:05:08 +00:00
EXPAND_AR = $( EXPAND_LIBS_EXEC) --extract -- $( AR)
EXPAND_CC = $( EXPAND_LIBS_EXEC) --uselist -- $( CC)
EXPAND_CCC = $( EXPAND_LIBS_EXEC) --uselist -- $( CCC)
2012-03-08 07:39:17 +00:00
EXPAND_LD = $( EXPAND_LIBS_EXEC) --uselist -- $( LD)
2012-03-08 07:56:27 +00:00
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)
2011-04-15 09:03:35 +00:00
2013-07-31 05:04:23 +00:00
i f n e q ( , $( MOZ_LIBSTDCXX_TARGET_VERSION ) $( MOZ_LIBSTDCXX_HOST_VERSION ) )
2012-02-23 22:05:37 +00:00
i f n e q ( $( OS_ARCH ) , D a r w i n )
2014-01-16 00:13:43 +00:00
CHECK_STDCXX = @$( TOOLCHAIN_PREFIX) objdump -p $( 1) | grep -e 'GLIBCXX_3\.4\.\(9\|[1-9][0-9]\)' > /dev/null && echo 'TEST-UNEXPECTED-FAIL | check_stdcxx | We do not want these libstdc++ symbols to be used:' && $( TOOLCHAIN_PREFIX) objdump -T $( 1) | grep -e 'GLIBCXX_3\.4\.\(9\|[1-9][0-9]\)' && false || true
2011-04-15 09:03:35 +00:00
e n d i f
2012-04-30 06:03:59 +00:00
2013-07-31 05:04:23 +00:00
i f d e f M O Z _ L I B S T D C X X _ T A R G E T _ V E R S I O N
2012-04-30 06:03:59 +00:00
EXTRA_LIBS += $( call EXPAND_LIBNAME_PATH,stdc++compat,$( DEPTH) /build/unix/stdc++compat)
2013-07-31 05:04:23 +00:00
e n d i f
i f d e f M O Z _ L I B S T D C X X _ H O S T _ V E R S I O N
2012-04-30 06:03:59 +00:00
HOST_EXTRA_LIBS += $( call EXPAND_LIBNAME_PATH,host_stdc++compat,$( DEPTH) /build/unix/stdc++compat)
2012-02-23 22:05:37 +00:00
e n d i f
2013-07-31 05:04:23 +00:00
e n d i f
2011-08-29 05:34:12 +00:00
2014-02-10 22:57:01 +00:00
i f e q ( , $( filter $ ( OS_TARGET ) ,WINNT Darwin ) )
2014-01-16 00:13:43 +00:00
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
d e f i n e C H E C K _ B I N A R Y
$( call CHECK_STDCXX ,$ ( 1) )
$( call CHECK_TEXTREL ,$ ( 1) )
e n d e f
2011-08-29 05:34:12 +00:00
# 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
2014-03-02 21:35:24 +00:00
# we overwrite the objects from the first pass with those from the second,
2011-08-29 05:34:12 +00:00
# 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
2012-02-13 14:48:23 +00:00
# EXPAND_LIBNAME - $(call EXPAND_LIBNAME,foo)
# expands to $(LIB_PREFIX)foo.$(LIB_SUFFIX) or -lfoo, depending on linker
# arguments syntax. Should only be used for system libraries
# EXPAND_LIBNAME_PATH - $(call EXPAND_LIBNAME_PATH,foo,dir)
# expands to dir/$(LIB_PREFIX)foo.$(LIB_SUFFIX)
# EXPAND_MOZLIBNAME - $(call EXPAND_MOZLIBNAME,foo)
# expands to $(DIST)/lib/$(LIB_PREFIX)foo.$(LIB_SUFFIX)
i f d e f G N U _ C C
EXPAND_LIBNAME = $( addprefix -l,$( 1) )
e l s e
EXPAND_LIBNAME = $( foreach lib,$( 1) ,$( LIB_PREFIX) $( lib) .$( LIB_SUFFIX) )
e n d i f
EXPAND_LIBNAME_PATH = $( foreach lib,$( 1) ,$( 2) /$( LIB_PREFIX) $( lib) .$( LIB_SUFFIX) )
EXPAND_MOZLIBNAME = $( foreach lib,$( 1) ,$( DIST) /lib/$( LIB_PREFIX) $( lib) .$( LIB_SUFFIX) )
2012-04-06 18:06:52 +00:00
PLY_INCLUDE = -I$( topsrcdir) /other-licenses/ply
2012-06-20 07:00:48 +00:00
export CL_INCLUDES_PREFIX
2014-01-06 22:58:30 +00: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
2012-09-25 12:47:18 +00:00
2013-09-23 13:21:57 +00:00
i f d e f M O Z _ G T K 2 _ C F L A G S
MOZ_GTK2_CFLAGS := -I$( topsrcdir) /widget/gtk/compat $( MOZ_GTK2_CFLAGS)
2012-09-25 12:47:18 +00:00
e n d i f
2012-10-11 06:00:54 +00:00
DEFINES += -DNO_NSPR_10_SUPPORT
2013-12-12 14:41:05 +00:00
i f d e f I S _ G Y P _ D I R
LOCAL_INCLUDES += \
-I$( topsrcdir) /ipc/chromium/src \
-I$( topsrcdir) /ipc/glue \
-I$( DEPTH) /ipc/ipdl/_ipdlheaders \
$( NULL)
i f e q ( W I N N T , $( OS_TARGET ) )
# These get set via VC project file settings for normal GYP builds.
DEFINES += -DUNICODE -D_UNICODE
e n d i f
2014-03-05 00:39:06 +00:00
DISABLE_STL_WRAPPING := 1
2013-12-12 14:41:05 +00:00
# Skip most Mozilla-specific include locations.
INCLUDES = -I. $( LOCAL_INCLUDES) -I$( DEPTH) /dist/include
e n d i f