2008-07-22 16:27:55 +04:00
#
2012-05-30 20:48:24 +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/.
2008-07-22 16:27:55 +04: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.
#
# Define an include-at-most-once flag
2012-11-13 03:03:45 +04:00
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
2008-07-22 16:27:55 +04:00
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
2013-09-06 13:00:06 +04:00
- i n c l u d e $( DEPTH ) / . m o z c o n f i g . m k
2013-10-28 06:40:29 +04: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 \
ANDROID_RESFILES \
CMMSRCS \
CPP_UNIT_TESTS \
DIRS \
2013-10-28 06:40:55 +04:00
DIST_SUBDIR \
2014-07-25 20:23:28 +04:00
EXTRA_DSO_LDOPTS \
2014-07-31 18:15:22 +04:00
EXTRA_JS_MODULES \
2013-10-28 06:40:29 +04:00
EXTRA_PP_COMPONENTS \
EXTRA_PP_JS_MODULES \
2013-12-17 04:32:52 +04:00
FINAL_LIBRARY \
2013-10-28 06:40:55 +04:00
FINAL_TARGET \
2013-10-28 06:40:29 +04:00
GTEST_CMMSRCS \
GTEST_CPPSRCS \
GTEST_CSRCS \
HOST_CSRCS \
HOST_LIBRARY_NAME \
IS_COMPONENT \
2013-12-18 13:12:38 +04:00
JAR_MANIFEST \
2013-10-28 06:40:29 +04:00
LIBRARY_NAME \
2014-07-25 20:23:28 +04:00
LIBS \
2013-10-28 06:40:29 +04:00
LIBXUL_LIBRARY \
2014-07-25 20:23:28 +04:00
MAKE_FRAMEWORK \
2013-10-28 06:40:29 +04:00
MODULE \
MSVC_ENABLE_PGO \
NO_DIST_INSTALL \
PARALLEL_DIRS \
SDK_HEADERS \
2014-07-25 20:23:28 +04:00
SDK_LIBRARY \
SHARED_LIBRARY_LIBS \
SHARED_LIBRARY_NAME \
2013-10-28 06:40:29 +04:00
SIMPLE_PROGRAMS \
2014-07-25 20:23:28 +04:00
STATIC_LIBRARY_NAME \
2013-10-28 06:40:29 +04:00
TEST_DIRS \
2014-07-31 18:15:22 +04:00
TESTING_JS_MODULES \
TESTING_JS_MODULE_DIR \
2013-10-28 06:40:29 +04:00
TIERS \
TOOL_DIRS \
XPCSHELL_TESTS \
XPIDL_MODULE \
2013-10-28 06:40:55 +04:00
XPI_NAME \
2013-10-28 06:40:29 +04:00
$( NULL)
_DEPRECATED_VARIABLES := \
MOCHITEST_FILES_PARTS \
MOCHITEST_BROWSER_FILES_PARTS \
$( 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-11-13 03:03:47 +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) )
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-07-22 16:27:55 +04:00
COMMA = ,
# Sanity check some variables
CHECK_VARS := \
XPI_NAME \
LIBRARY_NAME \
MODULE \
DEPTH \
SHORT_LIBNAME \
XPI_PKGNAME \
INSTALL_EXTENSION_ID \
2010-03-27 08:23:08 +03:00
SHARED_LIBRARY_NAME \
STATIC_LIBRARY_NAME \
2008-07-22 16:27:55 +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 ) )
2012-08-17 11:56:29 +04:00
RM = rm -f
2013-10-25 08:45:54 +04: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 $( MOZILLA_SRCDIR ) / 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
2010-10-21 17:27:54 +04:00
2008-07-22 16:27:55 +04:00
# FINAL_TARGET specifies the location into which we copy end-user-shipped
2013-10-28 06:40:29 +04:00
# build products (typelibs, components, chrome). It may already be specified by
# a moz.build file.
2008-07-22 16:27:55 +04:00
#
2012-11-13 03:03:47 +04:00
# If XPI_NAME is set, the files will be shipped to $(DIST)/xpi-stage/$(XPI_NAME)
2013-10-28 06:40:29 +04:00
# 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)'
2008-07-22 16:27:55 +04:00
2010-07-04 16:37:13 +04:00
i f d e f X P I _ N A M E
DEFINES += -DXPI_NAME= $( XPI_NAME)
e n d i f
2008-07-22 16:27:55 +04:00
# 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 )
win_srcdir := $( subst $( topsrcdir) ,$( WIN_TOP_SRC) ,$( srcdir) )
BUILD_TOOLS = $( WIN_TOP_SRC) /mozilla/build/unix
e l s e
win_srcdir := $( srcdir)
BUILD_TOOLS = $( MOZILLA_SRCDIR) /build/unix
e n d i f
2013-11-26 03:03:48 +04:00
CONFIG_TOOLS = $( MOZ_BUILD_ROOT) /config
2008-07-22 16:27:55 +04:00
AUTOCONF_TOOLS = $( MOZILLA_SRCDIR) /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.
#
2012-11-10 13:39:16 +04:00
i f n e q ( , $( filter FreeBSD HP -UX Linux NetBSD OpenBSD SunOS ,$ ( OS_ARCH ) ) )
2008-07-22 16:27:55 +04:00
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)
FINAL_LINK_LIBS = $( MOZDEPTH) /config/final-link-libs
FINAL_LINK_COMPS = $( MOZDEPTH) /config/final-link-comps
FINAL_LINK_COMP_NAMES = $( MOZDEPTH) /config/final-link-comp-names
2012-11-10 13:38:02 +04:00
i f d e f _ M S C _ V E R
2013-10-25 08:45:54 +04:00
CC_WRAPPER ?= $( call py_action,cl)
CXX_WRAPPER ?= $( call py_action,cl)
2012-11-10 13:38:02 +04:00
e n d i f # _MSC_VER
2010-08-15 02:33:29 +04:00
CC := $( CC_WRAPPER) $( CC)
CXX := $( CXX_WRAPPER) $( CXX)
2012-02-27 16:41:13 +04:00
MKDIR ?= mkdir
SLEEP ?= sleep
TOUCH ?= touch
2010-08-15 02:33:29 +04:00
2012-07-03 10:46:48 +04:00
i f d e f . P Y M A K E
2014-01-21 02:52:56 +04:00
PYCOMMANDPATH += $( PYTHON_SITE_PACKAGES)
2012-07-03 10:46:48 +04:00
e n d i f
2008-07-22 16:27:55 +04:00
# determine debug-related options
_DEBUG_CFLAGS :=
_DEBUG_LDFLAGS :=
i f d e f M O Z _ D E B U G
2010-07-23 12:02:04 +04:00
_DEBUG_CFLAGS += $( MOZ_DEBUG_ENABLE_DEFS) $( MOZ_DEBUG_FLAGS)
_DEBUG_LDFLAGS += $( MOZ_DEBUG_LDFLAGS)
2008-07-22 16:27:55 +04:00
XULPPFLAGS += $( MOZ_DEBUG_ENABLE_DEFS)
e l s e
_DEBUG_CFLAGS += $( MOZ_DEBUG_DISABLE_DEFS)
XULPPFLAGS += $( MOZ_DEBUG_DISABLE_DEFS)
2010-07-23 12:02:04 +04:00
ifdef MOZ_DEBUG_SYMBOLS
_DEBUG_CFLAGS += $( MOZ_DEBUG_FLAGS)
_DEBUG_LDFLAGS += $( MOZ_DEBUG_LDFLAGS)
2008-07-22 16:27:55 +04:00
endif
e n d i f
OS_CFLAGS += $( _DEBUG_CFLAGS)
OS_CXXFLAGS += $( _DEBUG_CFLAGS)
OS_LDFLAGS += $( _DEBUG_LDFLAGS)
2009-03-13 14:54:17 +03:00
# XXX: What does this? Bug 482434 filed for better explanation.
2008-07-22 16:27:55 +04:00
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 += -Zi -UDEBUG -DNDEBUG
OS_CFLAGS += -Zi -UDEBUG -DNDEBUG
2010-04-15 09:50:02 +04:00
OS_LDFLAGS += -DEBUG -OPT:REF
2010-04-15 09:52:00 +04:00
e n d i f # MOZ_DEBUG_SYMBOLS
2008-07-22 16:27:55 +04:00
#
# Handle trace-malloc in optimized builds.
# No opt to give sane callstacks.
#
i f d e f N S _ T R A C E _ M A L L O C
MOZ_OPTIMIZE_FLAGS = -Zi -Od -UDEBUG -DNDEBUG
OS_LDFLAGS = -DEBUG -PDB:NONE -OPT:REF -OPT:nowin98
e n d i f # NS_TRACE_MALLOC
e n d i f # MOZ_DEBUG
2011-08-25 15:46:12 +04: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-08 13:30:05 +04:00
i f e q ( $( MOZ_MEMORY ) _ $( USE_STATIC_LIBS ) , 1 _ 1 )
2011-08-25 15:46:12 +04:00
# Disable default CRT libs and add the right lib path for the linker
2011-12-27 22:18:29 +04:00
MOZ_GLUE_LDFLAGS =
2011-08-25 15:46:12 +04:00
e n d i f
2008-07-22 16:27:55 +04:00
e n d i f # WINNT && !GNU_CC
2012-02-16 04:01:35 +04: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-27 22:18:29 +04:00
MOZ_GLUE_PROGRAM_LDFLAGS = $( MOZ_GLUE_LDFLAGS)
2011-09-08 13:30:05 +04:00
e n d i f
2008-07-22 16:27:55 +04:00
# Determine if module being compiled is destined
# to be merged into libxul
2013-12-17 04:32:52 +04:00
i f e q ( $( FINAL_LIBRARY ) , x u l )
ifdef LIBXUL_LIBRARY
$( error FINAL_LIBRARY is "xul" , LIBXUL_LIBRARY is implied)
endif
LIBXUL_LIBRARY := 1
e n d i f
2008-07-22 16:27:55 +04:00
i f d e f L I B X U L _ L I B R A R Y
i f d e f I S _ C O M P O N E N T
2013-07-09 02:22:00 +04:00
$( error IS_COMPONENT is set , but is not compatible with LIBXUL_LIBRARY )
2013-08-01 02:20:03 +04:00
e n d i f
2008-07-22 16:27:55 +04:00
SHORT_LIBNAME =
e n d i f
2014-07-31 18:15:22 +04: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
# 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-07-22 16:27:55 +04:00
# Enable profile-based feedback
2014-07-31 18:15:22 +04:00
i f n e q ( 1 , $( NO_PROFILE_GUIDED_OPTIMIZE ) )
2008-07-22 16:27:55 +04:00
i f d e f M O Z _ P R O F I L E _ G E N E R A T E
2014-07-31 18:15:22 +04: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-07-22 16:27:55 +04: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
i f d e f M O Z _ P R O F I L E _ U S E
2014-07-31 18:15:22 +04: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-07-22 16:27:55 +04:00
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
# Does the makefile specifies the internal XPCOM API linkage?
i f n e q ( , $( MOZILLA_INTERNAL_API ) $( LIBXUL_LIBRARY ) )
DEFINES += -DMOZILLA_INTERNAL_API
e n d i f
# 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 += \
-D_IMPL_NS_COM \
-DEXPORT_XPT_API \
-DEXPORT_XPTC_API \
-D_IMPL_NS_GFX \
-D_IMPL_NS_WIDGET \
-DIMPL_XREAPI \
-DIMPL_NS_NET \
-DIMPL_THEBES \
$( NULL)
i f n d e f M O Z _ N A T I V E _ Z L I B
DEFINES += -DZLIB_INTERNAL
e n d i f
e n d i f
MAKE_JARS_FLAGS = \
2008-10-04 19:54:00 +04:00
-t $( topsrcdir) \
2008-07-22 16:27:55 +04: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
2008-11-25 23:33:26 +03:00
i f d e f B O T H _ M A N I F E S T S
MAKE_JARS_FLAGS += --both-manifests
e n d i f
2013-07-10 20:51:24 +04:00
TAR_CREATE_FLAGS = -chf
2008-07-22 16:27:55 +04: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.
#
CCC = $( CXX)
2014-08-20 00:18:52 +04:00
OS_INCLUDES += $( MOZ_JPEG_CFLAGS) $( MOZ_PNG_CFLAGS) $( MOZ_ZLIB_CFLAGS) $( MOZ_PIXMAN_CFLAGS)
# NSPR_CFLAGS and NSS_CFLAGS must appear ahead of OS_INCLUDES to avoid Linux
# builds wrongly picking up system NSPR/NSS header files.
2012-08-17 11:56:29 +04:00
2010-04-02 18:46:27 +04:00
INCLUDES = \
-I$( srcdir) \
-I. \
2014-08-20 00:18:52 +04:00
$( LOCAL_INCLUDES) \
-I$( DIST) /include \
$( if $( LIBXUL_SDK) ,-I$( LIBXUL_SDK) /include) \
$( NSPR_CFLAGS) $( NSS_CFLAGS) \
2010-04-02 18:46:27 +04:00
$( OS_INCLUDES) \
$( NULL)
2008-07-22 16:27:55 +04:00
bug 475111 - port bug 471685, bug 469558, bug 464190, bug 467579, bug 397227, bug 463420, bug 466492, bug 471188, bug 467271, bug 466486 to comm-central, r=Standard8
2009-01-29 23:09:08 +03: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-07-22 16:27:55 +04:00
2012-08-17 11:56:29 +04:00
CFLAGS = $( OS_CPPFLAGS) $( OS_CFLAGS)
CXXFLAGS = $( OS_CPPFLAGS) $( OS_CXXFLAGS)
2014-08-20 00:18:52 +04:00
LDFLAGS = $( OS_LDFLAGS) $( MOZBUILD_LDFLAGS) $( MOZ_FIX_LINK_PATHS)
2008-07-22 16:27:55 +04:00
# Allow each module to override the *default* optimization settings
# by setting MODULE_OPTIMIZE_FLAGS if the developer has not given
# 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
2014-08-20 00:18:52 +04: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
2008-07-22 16:27:55 +04:00
CFLAGS += $( MOZ_OPTIMIZE_FLAGS)
CXXFLAGS += $( MOZ_OPTIMIZE_FLAGS)
2014-08-20 00:18:52 +04:00
e n d i f # neq (,$(MOZ_PROFILE_GENERATE)$(MOZ_PROFILE_USE))
2008-07-22 16:27:55 +04: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
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-11-08 15:37:49 +04:00
CFLAGS += $( MOZ_FRAMEPTR_FLAGS)
CXXFLAGS += $( MOZ_FRAMEPTR_FLAGS)
2008-07-22 16:27:55 +04:00
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 U S E _ S T A T I C _ L I B S
RTL_FLAGS = -MT # Statically linked multithreaded RTL
i f n e q ( , $( MOZ_DEBUG ) $( NS_TRACE_MALLOC ) )
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 || NS_TRACE_MALLOC
e l s e # !USE_STATIC_LIBS
RTL_FLAGS = -MD # Dynamically linked, multithreaded RTL
i f n e q ( , $( MOZ_DEBUG ) $( NS_TRACE_MALLOC ) )
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
2014-08-20 00:18:52 +04:00
e n d i f
2008-07-22 16:27:55 +04:00
e n d i f # MOZ_DEBUG || NS_TRACE_MALLOC
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 )
2014-08-20 00:18:52 +04:00
# Compiling ObjC requires an Apple compiler anyway, so it's ok to set
# host CMFLAGS here.
2008-07-22 16:27:55 +04:00
HOST_CMFLAGS += -fobjc-exceptions
HOST_CMMFLAGS += -fobjc-exceptions
OS_COMPILE_CMFLAGS += -fobjc-exceptions
OS_COMPILE_CMMFLAGS += -fobjc-exceptions
2014-08-20 00:18:52 +04: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-07-22 16:27:55 +04:00
e n d i f
2014-08-20 00:18:52 +04: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)
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)
COMPILE_CMFLAGS = $( OS_COMPILE_CMFLAGS) $( MOZBUILD_CMFLAGS) $( EXTRA_COMPILE_FLAGS)
COMPILE_CMMFLAGS = $( OS_COMPILE_CMMFLAGS) $( MOZBUILD_CMMFLAGS) $( EXTRA_COMPILE_FLAGS)
ASFLAGS += $( EXTRA_ASSEMBLER_FLAGS)
2008-07-22 16:27:55 +04:00
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
#
# Name of the binary code directories
#
# Override defaults
# Default location of include files
2013-08-15 22:49:47 +04:00
IDL_PARSER_DIR = $( topsrcdir) /xpcom/idl-parser
IDL_PARSER_CACHE_DIR = $( DEPTH) /xpcom/idl-parser
2008-07-22 16:27:55 +04:00
SDK_LIB_DIR = $( DIST) /sdk/lib
SDK_BIN_DIR = $( DIST) /sdk/bin
DEPENDENCIES = .md
i f e q ( x p c o n n e c t , $( findstring xpconnect , $ ( BUILD_MODULES ) ) )
DEFINES += -DXPCONNECT_STANDALONE
e n d i f
ELF_DYNSTR_GC = :
2010-03-28 19:40:04 +04:00
i f e q ( $( MOZ_WIDGET_TOOLKIT ) , q t )
OS_LIBS += $( MOZ_QT_LIBS)
e n d i f
2008-07-22 16:27:55 +04:00
i f n d e f C R O S S _ C O M P I L E
i f d e f U S E _ E L F _ D Y N S T R _ G C
i f d e f M O Z _ C O M P O N E N T S _ V E R S I O N _ S C R I P T _ L D F L A G S
ELF_DYNSTR_GC = $( MOZDEPTH) /config/elf-dynstr-gc
e n d i f
e n d i f
e n d i f
i f e q ( $( OS_ARCH ) , D a r w i n )
i f d e f N E X T _ R O O T
export NEXT_ROOT
PBBUILD = NEXT_ROOT = $( PBBUILD_BIN)
e l s e # NEXT_ROOT
PBBUILD = $( PBBUILD_BIN)
e n d i f # NEXT_ROOT
PBBUILD_SETTINGS = GCC_VERSION = " $( GCC_VERSION) " SYMROOT = build ARCHS = " $( OS_TEST) "
i f d e f M A C O S _ S D K _ D I R
PBBUILD_SETTINGS += SDKROOT = " $( MACOS_SDK_DIR) "
e n d i f # MACOS_SDK_DIR
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
PBBUILD_SETTINGS += MACOSX_DEPLOYMENT_TARGET = " $( MACOSX_DEPLOYMENT_TARGET) "
e n d i f # MACOSX_DEPLOYMENT_TARGET
2012-08-09 08:27:45 +04: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
2008-07-22 16:27:55 +04:00
i f d e f M O Z _ O P T I M I Z E
i f e q ( 2 , $( MOZ_OPTIMIZE ) )
# Only override project defaults if the config specified explicit settings
PBBUILD_SETTINGS += GCC_MODEL_TUNING = OPTIMIZATION_CFLAGS = " $( MOZ_OPTIMIZE_FLAGS) "
e n d i f # MOZ_OPTIMIZE=2
e n d i f # MOZ_OPTIMIZE
e n d i f # OS_ARCH=Darwin
# 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 )
i f d e f G N U _ C C
WIN32_EXE_LDFLAGS += -mconsole
e l s e
WIN32_EXE_LDFLAGS += -SUBSYSTEM:CONSOLE
e n d i f
e n d i f
e l s e # MOZ_WINCONSOLE
i f e q ( $( OS_ARCH ) , W I N N T )
i f d e f G N U _ C C
WIN32_EXE_LDFLAGS += -mwindows
e l s e
WIN32_EXE_LDFLAGS += -SUBSYSTEM:WINDOWS
e n d i f
e n d i f
e n d i f
e n d i f
2014-08-20 00:18:57 +04: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
2008-07-22 16:27:55 +04: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
LDFLAGS += -IMPLIB:fake.lib
DELETE_AFTER_LINK = fake.lib fake.exp
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 )
######################################################################
# Now test variables that might have been set or overridden by $(MY_CONFIG).
DEFINES += -DOSTYPE= \" $( OS_CONFIG) \"
DEFINES += -DOSARCH= $( OS_ARCH)
######################################################################
2012-11-10 13:38:35 +04:00
GARBAGE += $( DEPENDENCIES) core $( wildcard core.[ 0-9] *) $( wildcard *.err) $( wildcard *.pure) $( wildcard *_pure_*.o) Templates.DB
2008-07-22 16:27:55 +04: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
2010-03-04 17:20:46 +03:00
PWD := $( CURDIR)
2008-07-22 16:27:55 +04:00
e n d i f
2013-10-22 19:20:33 +04:00
NSINSTALL_PY := $( PYTHON) $( abspath $( MOZILLA_SRCDIR) /config/nsinstall.py)
2012-07-03 10:46:48 +04:00
# For Pymake, whereever 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 10:46:46 +04:00
2008-07-22 16:27:55 +04:00
i f d e f N S I N S T A L L _ B I N
2012-07-03 10:46:46 +04:00
NSINSTALL = $( NSINSTALL_BIN)
2008-07-22 16:27:55 +04:00
e l s e
2012-07-03 10:46:46 +04:00
i f e q ( $( HOST_OS_ARCH ) , W I N N T )
NSINSTALL = $( NSINSTALL_PY)
2008-07-22 16:27:55 +04:00
e l s e
2012-07-03 10:46:46 +04:00
NSINSTALL = $( CONFIG_TOOLS) /nsinstall$( HOST_BIN_SUFFIX)
e n d i f # WINNT
2008-07-22 16:27:55 +04:00
e n d i f # NSINSTALL_BIN
2012-07-03 10:46:48 +04:00
2014-02-25 17:19:56 +04:00
i f e q ( , $( CROSS_COMPILE ) $( filter -out WINNT , $ ( OS_ARCH ) ) )
2012-07-03 10:46:46 +04:00
INSTALL = $( NSINSTALL) -t
2012-07-03 10:46:48 +04:00
i f d e f . P Y M A K E
install_cmd = $( NSINSTALL_NATIVECMD) -t $( 1)
e n d i f # .PYMAKE
2008-07-22 16:27:55 +04:00
e l s e
2011-07-13 11:30:11 +04:00
# This isn't laid out as conditional directives so that NSDISTMODE can be
# target-specific.
2011-07-15 01:31:51 +04:00
INSTALL = $( if $( filter copy, $( NSDISTMODE) ) , $( NSINSTALL) -t, $( if $( filter absolute_symlink, $( NSDISTMODE) ) , $( NSINSTALL) -L $( PWD) , $( NSINSTALL) -R) )
2011-07-13 11:30:11 +04:00
2014-02-25 17:19:56 +04:00
e n d i f # WINNT
2008-07-22 16:27:55 +04:00
2012-07-03 10:46:48 +04:00
# The default for install_cmd is simply INSTALL
install_cmd ?= $( INSTALL) $( 1)
2008-07-22 16:27:55 +04:00
# Use nsinstall in copy mode to install files on the system
2012-07-03 10:46:48 +04:00
SYSINSTALL = $( NSINSTALL) -t
# This isn't necessarily true, just here
sysinstall_cmd = install_cmd
2008-07-22 16:27:55 +04:00
2012-07-03 10:46:46 +04:00
# Directory nsinstall.
2011-07-13 11:30:11 +04:00
DIR_INSTALL = $( INSTALL)
2012-07-03 10:46:48 +04:00
dir_install_cmd = install_cmd
2011-07-13 11:30:11 +04:00
2008-07-22 16:27:55 +04: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)
2008-07-25 23:07:10 +04:00
i f n d e f L 1 0 N B A S E D I R
2012-11-12 01:27:02 +04:00
L10NBASEDIR = $( error L10NBASEDIR not defined by configure)
e l s e
IS_LANGUAGE_REPACK = 1
2008-07-25 23:07:10 +04:00
e n d i f
2013-10-28 13:45:00 +04:00
EXPAND_LOCALE_SRCDIR = $( if $( filter en-US,$( AB_CD) ) ,$( topsrcdir) /$( 1) /en-US,$( or $( realpath $( L10NBASEDIR) ) ,$( abspath $( L10NBASEDIR) ) ) /$( AB_CD) /$( subst /locales,,$( 1) ) )
EXPAND_MOZLOCALE_SRCDIR = $( if $( filter en-US,$( AB_CD) ) ,$( MOZILLA_SRCDIR) /$( 1) /en-US,$( or $( realpath $( L10NBASEDIR) ) ,$( abspath $( L10NBASEDIR) ) ) /$( AB_CD) /$( subst /locales,,$( 1) ) )
2008-07-22 16:27:55 +04:00
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
2012-11-12 01:27:02 +04: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-11-25 23:33:26 +03:00
i f d e f L O C A L E _ M E R G E D I R
2012-11-12 01:27:02 +04:00
MAKE_JARS_FLAGS += --locale-mergedir= $( LOCALE_MERGEDIR)
2008-11-25 23:33:26 +03:00
e n d i f
2012-11-12 01:27:02 +04:00
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)
2008-07-22 16:27:55 +04:00
e n d i f
2012-11-12 01:27:02 +04: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
2008-07-22 16:27:55 +04:00
2013-03-06 23:28:39 +04: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-27 18:48:52 +03:00
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
2009-04-04 10:23:43 +04:00
2013-10-22 19:20:33 +04:00
CREATE_PRECOMPLETE_CMD = $( PYTHON) $( abspath $( MOZILLA_SRCDIR) /config/createprecomplete.py)
2011-09-15 19:13:53 +04:00
2012-11-10 13:38:35 +04:00
# MDDEPDIR is the subdirectory where dependency files are stored
MDDEPDIR := .deps
2014-07-31 18:15:22 +04:00
EXPAND_LIBS_EXEC = $( PYTHON) $( MOZILLA_SRCDIR) /config/expandlibs_exec.py
EXPAND_LIBS_GEN = $( PYTHON) $( MOZILLA_SRCDIR) /config/expandlibs_gen.py
2011-09-15 19:13:53 +04:00
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)
2014-07-31 18:15:22 +04: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)
2012-02-16 04:01:35 +04: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-08-17 11:56:29 +04:00
2012-08-22 03:46:15 +04:00
# Include internal ply only if needed
i f n d e f M O Z _ S Y S T E M _ P L Y
PLY_INCLUDE = -I$( MOZILLA_DIR) /other-licenses/ply
e n d i f
2012-11-10 13:38:02 +04:00
export CL_INCLUDES_PREFIX
2014-01-21 00:06:47 +04:00
i f n e q ( , $( MOZ_LIBSTDCXX_TARGET_VERSION ) $( MOZ_LIBSTDCXX_HOST_VERSION ) )
e n d i f
2012-08-17 11:56:29 +04:00
# autoconf.mk sets OBJ_SUFFIX to an error to avoid use before including
# this file
OBJ_SUFFIX := $( _OBJ_SUFFIX)
2013-01-26 05:50:17 +04:00
DEFINES += -DNO_NSPR_10_SUPPORT
2013-07-13 16:38:02 +04:00
2014-08-20 00:18:52 +04: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
DISABLE_STL_WRAPPING := 1
# Skip most Mozilla-specific include locations.
INCLUDES = -I. $( LOCAL_INCLUDES) -I$( DEPTH) /dist/include
e n d i f
2013-07-13 16:38:02 +04:00
# Run a named Python build action. The first argument is the name of the build
# action. The second argument are the arguments to pass to the action (space
# delimited arguments). e.g.
#
# libs::
# $(call py_action,purge_manifests,_build_manifests/purge/foo.manifest)
py_action = $( PYTHON) -m mozbuild.action.$( 1) $( 2)