2011-07-07 19:29:41 +04:00
# -*- makefile -*-
2005-03-28 23:36:24 +04:00
# vim:set ts=8 sw=8 sts=8 noet:
1998-03-28 05:44:41 +03:00
#
2012-04-02 21:06:06 +04:00
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
1998-03-28 05:44:41 +03:00
#
2009-05-18 22:15:05 +04:00
1998-08-20 00:42:14 +04:00
i f n d e f t o p s r c d i r
2009-05-18 22:15:05 +04:00
$( error topsrcdir was not set ) )
1998-08-20 00:42:14 +04:00
e n d i f
1998-03-28 05:44:41 +03:00
2013-09-05 04:01:45 +04:00
# Define an include-at-most-once flag
i f d e f I N C L U D E D _ R U L E S _ M K
$( error Do not include rules .mk twice !)
e n d i f
INCLUDED_RULES_MK = 1
2000-03-14 06:00:52 +03:00
i f n d e f I N C L U D E D _ C O N F I G _ M K
1998-08-20 00:42:14 +04:00
i n c l u d e $( topsrcdir ) / c o n f i g / c o n f i g . m k
1998-03-28 05:44:41 +03:00
e n d i f
2002-03-22 18:01:17 +03:00
i f n d e f I N C L U D E D _ V E R S I O N _ M K
2014-11-30 04:45:31 +03:00
i n c l u d e $( MOZILLA_DIR ) / c o n f i g / v e r s i o n . m k
2002-03-22 18:01:17 +03:00
e n d i f
2012-05-15 20:20:30 +04:00
USE_AUTOTARGETS_MK = 1
2014-11-30 04:45:31 +03:00
i n c l u d e $( MOZILLA_DIR ) / c o n f i g / m a k e f i l e s / m a k e u t i l s . m k
2012-04-04 00:08:16 +04:00
2013-08-10 10:57:09 +04:00
i f d e f R E B U I L D _ C H E C K
REPORT_BUILD = $( info $( shell $( PYTHON) $( MOZILLA_DIR) /config/rebuild_check.py $@ $^) )
2016-04-06 23:49:55 +03:00
REPORT_BUILD_VERBOSE = $( REPORT_BUILD)
2013-08-10 10:57:09 +04:00
e l s e
2013-11-12 03:37:08 +04:00
REPORT_BUILD = $( info $( notdir $@ ) )
2016-04-06 23:49:55 +03:00
i f d e f B U I L D _ V E R B O S E _ L O G
REPORT_BUILD_VERBOSE = $( REPORT_BUILD)
e l s e
2018-04-19 10:16:57 +03:00
REPORT_BUILD_VERBOSE = $( call BUILDSTATUS,BUILD_VERBOSE $( relativesrcdir) )
2016-04-06 23:49:55 +03:00
e n d i f
2013-08-10 10:57:09 +04:00
e n d i f
2011-12-08 22:14:06 +04:00
2000-06-21 04:54:56 +04:00
EXEC = exec
2012-08-06 20:14:13 +04:00
# ELOG prints out failed command when building silently (gmake -s). Pymake
# prints out failed commands anyway, so ELOG just makes things worse by
# forcing shell invocations.
2005-01-21 06:56:31 +03:00
i f n e q ( , $( findstring -s , $ ( filter -out --%, $ ( MAKEFLAGS ) ) ) )
2000-06-21 04:54:56 +04:00
ELOG := $( EXEC) sh $( BUILD_TOOLS) /print-failed-commands.sh
2000-02-26 07:21:53 +03:00
e l s e
2000-03-14 06:00:52 +03:00
ELOG :=
2012-08-06 20:14:13 +04:00
e n d i f # -s
2000-02-26 07:21:53 +03:00
2009-09-22 17:05:48 +04:00
_VPATH_SRCS = $( abspath $<)
2002-12-13 05:36:06 +03:00
2008-12-04 09:25:00 +03:00
################################################################################
# Testing frameworks support
################################################################################
2010-12-03 23:24:22 +03:00
testxpcobjdir = $( DEPTH) /_tests/xpcshell
2008-12-04 09:25:00 +03:00
i f d e f E N A B L E _ T E S T S
i f d e f C P P _ U N I T _ T E S T S
2013-11-07 05:37:45 +04:00
i f d e f C O M P I L E _ E N V I R O N M E N T
2008-12-04 09:25:00 +03:00
# Compile the tests to $(DIST)/bin. Make lots of niceties available by default
# through TestHarness.h, by modifying the list of includes and the libs against
# which stuff links.
2014-07-23 08:29:44 +04:00
SIMPLE_PROGRAMS += $( CPP_UNIT_TESTS)
2008-12-04 09:25:00 +03:00
2013-06-24 21:45:32 +04:00
i f n d e f M O Z _ P R O F I L E _ G E N E R A T E
2014-07-25 02:09:44 +04:00
CPP_UNIT_TESTS_FILES = $( CPP_UNIT_TESTS)
CPP_UNIT_TESTS_DEST = $( DIST) /cppunittests
2014-07-29 03:59:27 +04:00
CPP_UNIT_TESTS_TARGET = target
2014-07-25 02:09:44 +04:00
INSTALL_TARGETS += CPP_UNIT_TESTS
2013-06-24 21:45:32 +04:00
e n d i f
2014-02-10 23:42:19 +04:00
run-cppunittests ::
2014-11-30 04:45:31 +03:00
@$( PYTHON) $( MOZILLA_DIR) /testing/runcppunittests.py --xre-path= $( DIST) /bin --symbols-path= $( DIST) /crashreporter-symbols $( CPP_UNIT_TESTS)
2014-02-10 23:42:19 +04:00
2013-01-04 00:02:11 +04:00
cppunittests-remote :
2017-03-21 21:20:01 +03:00
$( PYTHON) -u $( MOZILLA_DIR) /testing/remotecppunittests.py \
--xre-path= $( DEPTH) /dist/bin \
--localLib= $( DEPTH) /dist/$( MOZ_APP_NAME) \
--deviceIP= ${ TEST_DEVICE } \
$( CPP_UNIT_TESTS) $( EXTRA_TEST_ARGS) ; \
2013-01-04 00:02:11 +04:00
2013-11-07 05:37:45 +04:00
e n d i f # COMPILE_ENVIRONMENT
2008-12-04 09:25:00 +03:00
e n d i f # CPP_UNIT_TESTS
e n d i f # ENABLE_TESTS
2003-03-08 08:18:43 +03:00
#
# Library rules
#
2011-05-23 20:54:47 +04:00
# If FORCE_STATIC_LIB is set, build a static library.
2005-10-17 18:57:32 +04:00
# Otherwise, build a shared library.
2003-03-08 08:18:43 +03:00
#
2000-03-31 05:24:48 +04:00
i f n d e f L I B R A R Y
2014-07-23 08:29:09 +04:00
i f d e f R E A L _ L I B R A R Y
2014-07-23 09:01:55 +04:00
i f d e f N O _ E X P A N D _ L I B S
2018-03-21 02:31:05 +03:00
# Only build actual library if it is requested.
Bug 1077151 - Always use expandlibs descriptors when they exist. r=mshal
Currently, when there is both an expandlibs descriptor and an actual static
library, expandlibs picks the static library. This has the side effect that
if there are object files in the static library that aren't directly used,
they're dropped when linking, even when they export symbols that would be
exported in the final linked binary.
In most cases in the code base, files are not dropped that way. The most
notable counter-example is xpcomglue, where actually not dropping files
leads to link failure because of missing symbols those files reference
(yes, that would tend to say the glue is broken in some way).
On the opposite side, there is mozglue, which does have both a descriptor
and a static library (the latter being necessary for the SDK), and that
linking as a static library drops files that shouldn't be dropped (like
jemalloc). We're currently relying on -Wl,--whole-archive for those files
not to be dropped, but that won't really be possible without much hassle
in a world where mozglue dependencies live in moz.build land.
Switching expandlibs to use descriptors when they exist, even when there
is a static library (so, the opposite of the current behavior) allows to
drop -Wl,--whole-archive and prepare for a better future. However, as
mentioned, xpcomglue does still require to be linked through the static
library, so we need to make it a static library only.
To achieve that, we make NO_EXPAND_LIBS now actually mean no expandlibs
and use that to build the various different xpcomglues.
2014-10-04 05:33:00 +04:00
LIBRARY := $( REAL_LIBRARY)
2014-07-23 09:01:55 +04:00
e n d i f
2014-07-23 08:33:06 +04:00
e n d i f
Bug 1077151 - Always use expandlibs descriptors when they exist. r=mshal
Currently, when there is both an expandlibs descriptor and an actual static
library, expandlibs picks the static library. This has the side effect that
if there are object files in the static library that aren't directly used,
they're dropped when linking, even when they export symbols that would be
exported in the final linked binary.
In most cases in the code base, files are not dropped that way. The most
notable counter-example is xpcomglue, where actually not dropping files
leads to link failure because of missing symbols those files reference
(yes, that would tend to say the glue is broken in some way).
On the opposite side, there is mozglue, which does have both a descriptor
and a static library (the latter being necessary for the SDK), and that
linking as a static library drops files that shouldn't be dropped (like
jemalloc). We're currently relying on -Wl,--whole-archive for those files
not to be dropped, but that won't really be possible without much hassle
in a world where mozglue dependencies live in moz.build land.
Switching expandlibs to use descriptors when they exist, even when there
is a static library (so, the opposite of the current behavior) allows to
drop -Wl,--whole-archive and prepare for a better future. However, as
mentioned, xpcomglue does still require to be linked through the static
library, so we need to make it a static library only.
To achieve that, we make NO_EXPAND_LIBS now actually mean no expandlibs
and use that to build the various different xpcomglues.
2014-10-04 05:33:00 +04:00
e n d i f
1999-02-19 06:06:32 +03:00
2000-03-31 11:18:52 +04:00
i f n d e f H O S T _ L I B R A R Y
i f d e f H O S T _ L I B R A R Y _ N A M E
2001-12-09 10:08:58 +03:00
HOST_LIBRARY := $( LIB_PREFIX) $( HOST_LIBRARY_NAME) .$( LIB_SUFFIX)
2000-03-31 11:18:52 +04:00
e n d i f
e n d i f
2011-05-23 20:54:47 +04:00
i f d e f F O R C E _ S H A R E D _ L I B
1998-03-28 05:44:41 +03:00
i f d e f M K S H L I B
1999-05-06 03:38:15 +04:00
2001-12-09 10:08:58 +03:00
i f d e f L I B _ I S _ C _ O N L Y
MKSHLIB = $( MKCSHLIB)
e n d i f
2014-07-10 04:16:19 +04:00
EMBED_MANIFEST_AT = 2
e n d i f # MKSHLIB
e n d i f # FORCE_SHARED_LIB
2011-04-19 08:11:40 +04:00
i f e q ( $( OS_ARCH ) , W I N N T )
2003-03-08 08:18:43 +03:00
i f n d e f G N U _ C C
2001-12-09 10:08:58 +03:00
2017-03-01 20:45:56 +03:00
#
# Unless we're building SIMPLE_PROGRAMS, all C++ files share a PDB file per
# directory. For parallel builds, this PDB file is shared and locked by
# MSPDBSRV.EXE, starting with MSVC8 SP1. If you're using MSVC 7.1 or MSVC8
# without SP1, don't do parallel builds.
#
# The final PDB for libraries and programs is created by the linker and uses
# a different name from the single PDB file created by the compiler. See
# bug 462740.
#
i f d e f S I M P L E _ P R O G R A M S
2014-03-26 03:12:26 +04:00
COMPILE_PDB_FLAG ?= -Fd$( basename $( @F) ) .pdb
2017-03-01 20:45:56 +03:00
e l s e
2017-03-07 11:19:04 +03:00
COMPILE_PDB_FLAG ?= -Fdgenerated.pdb -FS
2017-03-01 20:45:56 +03:00
e n d i f
2014-03-26 03:12:26 +04:00
COMPILE_CFLAGS += $( COMPILE_PDB_FLAG)
COMPILE_CXXFLAGS += $( COMPILE_PDB_FLAG)
2008-11-26 22:38:09 +03:00
2014-06-26 02:59:24 +04:00
LINK_PDBFILE ?= $( basename $( @F) ) .pdb
2001-12-09 10:08:58 +03:00
i f d e f M O Z _ D E B U G
2002-06-17 21:09:57 +04:00
CODFILE = $( basename $( @F) ) .cod
2002-01-01 03:03:57 +03:00
e n d i f
2001-12-09 10:08:58 +03:00
2003-03-08 08:18:43 +03:00
e n d i f # !GNU_CC
2004-11-23 22:34:02 +03:00
2017-11-03 01:03:01 +03:00
EXTRA_DEPS += $( DEFFILE)
2001-12-09 10:08:58 +03:00
e n d i f # WINNT
2015-06-10 18:10:40 +03:00
i f e q ( a r m - D a r w i n , $( CPU_ARCH ) - $( OS_TARGET ) )
i f d e f P R O G R A M
MOZ_PROGRAM_LDFLAGS += -Wl,-rpath -Wl,@executable_path/Frameworks
e n d i f
e n d i f
2011-04-19 08:11:40 +04:00
i f e q ( $( HOST_OS_ARCH ) , W I N N T )
2005-07-06 05:49:32 +04:00
HOST_PDBFILE = $( basename $( @F) ) .pdb
2014-03-26 03:12:26 +04:00
HOST_PDB_FLAG ?= -Fd$( HOST_PDBFILE)
HOST_CFLAGS += $( HOST_PDB_FLAG)
HOST_CXXFLAGS += $( HOST_PDB_FLAG)
2017-11-23 00:23:44 +03:00
HOST_C_LDFLAGS += $( HOST_PDB_FLAG)
HOST_CXX_LDFLAGS += $( HOST_PDB_FLAG)
2005-07-06 05:49:32 +04:00
e n d i f
2017-02-01 21:59:41 +03:00
# Don't build SIMPLE_PROGRAMS during the MOZ_PROFILE_GENERATE pass, and do not
# attempt to install them
2011-04-14 13:23:13 +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
2017-02-01 21:59:41 +03:00
$( foreach category ,$ ( INSTALL_TARGETS ) ,\
$( eval $( category) _FILES := $( foreach file,$( $( category) _FILES) ,$( if $( filter $( SIMPLE_PROGRAMS) ,$( notdir $( file) ) ) ,,$( file) ) ) ) )
2011-04-14 13:23:13 +04:00
SIMPLE_PROGRAMS :=
e n d i f
2013-11-07 05:37:45 +04:00
i f d e f C O M P I L E _ E N V I R O N M E N T
1998-03-28 05:44:41 +03:00
i f n d e f T A R G E T S
2018-07-05 08:58:09 +03:00
TARGETS = $( LIBRARY) $( SHARED_LIBRARY) $( PROGRAM) $( SIMPLE_PROGRAMS) $( HOST_LIBRARY) $( HOST_PROGRAM) $( HOST_SIMPLE_PROGRAMS) $( HOST_SHARED_LIBRARY)
1998-03-28 05:44:41 +03:00
e n d i f
2018-07-10 01:35:49 +03:00
i f d e f M O Z _ P R O F I L E _ G E N E R A T E
CPPSRCS := $( CPPSRCS) $( PGO_GEN_ONLY_CPPSRCS)
e n d i f
2013-07-03 01:40:17 +04:00
COBJS = $( notdir $( CSRCS:.c= .$( OBJ_SUFFIX) ) )
SOBJS = $( notdir $( SSRCS:.S= .$( OBJ_SUFFIX) ) )
# CPPSRCS can have different extensions (eg: .cpp, .cc)
CPPOBJS = $( notdir $( addsuffix .$( OBJ_SUFFIX) ,$( basename $( CPPSRCS) ) ) )
CMOBJS = $( notdir $( CMSRCS:.m= .$( OBJ_SUFFIX) ) )
CMMOBJS = $( notdir $( CMMSRCS:.mm= .$( OBJ_SUFFIX) ) )
2016-03-01 21:47:19 +03:00
# ASFILES can have different extensions (.s, .asm)
ASOBJS = $( notdir $( addsuffix .$( OBJ_SUFFIX) ,$( basename $( ASFILES) ) ) )
Bug 1163224 - add build system support for multiple Rust crates; r=glandium
Our current build system support for Rust compiles any Rust crate into a
so-called staticlib, which is a static library (.a file) that includes
the Rust runtime. That staticlib is then linked into libxul. For
supporting multiple crates, this approach breaks down, as linking
multiple copies of the Rust runtime is going to fail.
For supporting multiple crates, the approach taken here is to compile
each crate into a so-called rlib, which is essentially a staticlib
without the Rust runtime linked in. The build system takes note of
every crate destined for linking with libxul (treating them like static
libraries generated from C/C++ files), and generates a super-crate,
whimsically named "rul", that is compiled as a staticlib (so as to
include the Rust runtime) and then linked into libxul. Thus only one
copy of the Rust runtime is included, and the Rust compiler can take
care of any inter-crate dependencies.
This patch currently only supports Rust code in shared libraries, not in
binaries.
2016-04-21 16:54:01 +03:00
RS_STATICLIB_CRATE_OBJ = $( addprefix lib,$( notdir $( RS_STATICLIB_CRATE_SRC:.rs= .$( LIB_SUFFIX) ) ) )
1998-03-28 05:44:41 +03:00
i f n d e f O B J S
2016-08-06 07:49:26 +03:00
_OBJS = $( COBJS) $( SOBJS) $( CPPOBJS) $( CMOBJS) $( CMMOBJS) $( ASOBJS)
2012-05-15 09:44:32 +04:00
OBJS = $( strip $( _OBJS) )
1998-03-28 05:44:41 +03:00
e n d i f
2013-10-25 02:58:14 +04:00
HOST_COBJS = $( addprefix host_,$( notdir $( HOST_CSRCS:.c= .$( OBJ_SUFFIX) ) ) )
2013-10-22 08:40:27 +04:00
# HOST_CPPOBJS can have different extensions (eg: .cpp, .cc)
2013-10-25 02:58:14 +04:00
HOST_CPPOBJS = $( addprefix host_,$( notdir $( addsuffix .$( OBJ_SUFFIX) ,$( basename $( HOST_CPPSRCS) ) ) ) )
HOST_CMOBJS = $( addprefix host_,$( notdir $( HOST_CMSRCS:.m= .$( OBJ_SUFFIX) ) ) )
HOST_CMMOBJS = $( addprefix host_,$( notdir $( HOST_CMMSRCS:.mm= .$( OBJ_SUFFIX) ) ) )
2000-03-31 11:18:52 +04:00
i f n d e f H O S T _ O B J S
2013-10-22 08:40:27 +04:00
_HOST_OBJS = $( HOST_COBJS) $( HOST_CPPOBJS) $( HOST_CMOBJS) $( HOST_CMMOBJS)
2007-04-27 15:47:10 +04:00
HOST_OBJS = $( strip $( _HOST_OBJS) )
2000-03-31 11:18:52 +04:00
e n d i f
2013-11-07 05:37:45 +04:00
e l s e
LIBRARY :=
SHARED_LIBRARY :=
IMPORT_LIBRARY :=
REAL_LIBRARY :=
PROGRAM :=
SIMPLE_PROGRAMS :=
HOST_LIBRARY :=
2018-07-05 08:58:09 +03:00
HOST_SHARED_LIBRARY :=
2013-11-07 05:37:45 +04:00
HOST_PROGRAM :=
HOST_SIMPLE_PROGRAMS :=
e n d i f
2000-03-31 11:18:52 +04:00
2000-03-14 06:00:52 +03:00
ALL_TRASH = \
$( GARBAGE) $( TARGETS) $( OBJS) $( PROGOBJS) LOGS TAGS a.out \
2008-08-19 19:14:02 +04:00
$( filter-out $( ASFILES) ,$( OBJS:.$( OBJ_SUFFIX) = .s) ) $( OBJS:.$( OBJ_SUFFIX) = .ii) \
2011-08-29 09:34:12 +04:00
$( OBJS:.$( OBJ_SUFFIX) = .i) $( OBJS:.$( OBJ_SUFFIX) = .i_o) \
2014-07-23 08:29:09 +04:00
$( HOST_PROGOBJS) $( HOST_OBJS) $( IMPORT_LIBRARY) \
2017-11-08 01:34:44 +03:00
so_locations _gen _stubs $( wildcard *.res) $( wildcard *.RES) \
2013-08-12 16:10:41 +04:00
$( wildcard *.pdb) $( CODFILE) $( IMPORT_LIBRARY) \
2003-09-11 15:36:40 +04:00
$( SHARED_LIBRARY:$( DLL_SUFFIX) = .exp) $( wildcard *.ilk) \
2001-12-09 11:56:06 +03:00
$( PROGRAM:$( BIN_SUFFIX) = .exp) $( SIMPLE_PROGRAMS:$( BIN_SUFFIX) = .exp) \
$( PROGRAM:$( BIN_SUFFIX) = .lib) $( SIMPLE_PROGRAMS:$( BIN_SUFFIX) = .lib) \
2002-07-01 06:34:57 +04:00
$( SIMPLE_PROGRAMS:$( BIN_SUFFIX) = .$( OBJ_SUFFIX) ) \
2000-03-14 06:00:52 +03:00
$( wildcard gts_tmp_*) $( LIBRARY:%.a= .%.timestamp)
2000-08-30 05:15:32 +04:00
ALL_TRASH_DIRS = \
2002-01-08 12:29:10 +03:00
$( GARBAGE_DIRS) /no-such-file
1998-03-28 05:44:41 +03:00
2008-04-19 17:14:38 +04:00
i f d e f Q T D I R
GARBAGE += $( MOCSRCS)
e n d i f
2000-06-12 04:49:01 +04:00
i f d e f S I M P L E _ P R O G R A M S
2001-09-22 04:20:31 +04:00
GARBAGE += $( SIMPLE_PROGRAMS:%= %.$( OBJ_SUFFIX) )
2000-06-12 04:49:01 +04:00
e n d i f
i f d e f H O S T _ S I M P L E _ P R O G R A M S
2006-01-24 20:25:42 +03:00
GARBAGE += $( HOST_SIMPLE_PROGRAMS:%= %.$( OBJ_SUFFIX) )
2000-06-12 04:49:01 +04:00
e n d i f
2013-08-15 18:45:08 +04:00
i f d e f M A C H
2013-08-28 01:40:07 +04:00
i f n d e f N O _ B U I L D S T A T U S _ M E S S A G E S
2013-09-06 04:17:59 +04:00
d e f i n e B U I L D S T A T U S
2013-12-03 01:34:21 +04:00
@ e c h o 'BUILDSTATUS $1'
2013-09-06 04:17:59 +04:00
e n d e f
2013-08-15 18:45:08 +04:00
e n d i f
2013-08-28 01:40:07 +04:00
e n d i f
2013-08-20 11:06:32 +04:00
2013-06-18 23:22:56 +04:00
d e f i n e S U B M A K E # $(call SUBMAKE,target,directory,static)
2014-07-16 11:36:30 +04:00
+ @ $( MAKE ) $( if $ ( 2) ,-C $ ( 2) ) $( 1)
2009-02-28 00:03:53 +03:00
e n d e f # The extra line is important here! don't delete it
2013-05-24 03:28:09 +04:00
d e f i n e T I E R _ D I R _ S U B M A K E
2013-08-20 11:06:32 +04:00
$( call SUBMAKE ,$ ( 4) ,$ ( 3) ,$ ( 5) )
2013-05-24 03:28:09 +04:00
e n d e f # Ths empty line is important.
2008-12-19 17:50:24 +03:00
i f n e q ( , $( strip $ ( DIRS ) ) )
2000-03-02 06:39:19 +03:00
LOOP_OVER_DIRS = \
2009-02-28 00:03:53 +03:00
$( foreach dir,$( DIRS) ,$( call SUBMAKE,$@ ,$( dir) ) )
2008-12-19 17:50:24 +03:00
e n d i f
2000-11-10 03:55:44 +03:00
1998-07-08 07:49:31 +04:00
#
# Now we can differentiate between objects used to build a library, and
# objects used to build an executable in the same directory.
#
i f n d e f P R O G O B J S
PROGOBJS = $( OBJS)
e n d i f
2000-03-31 11:18:52 +04:00
i f n d e f H O S T _ P R O G O B J S
HOST_PROGOBJS = $( HOST_OBJS)
e n d i f
2012-09-11 11:43:32 +04:00
GARBAGE_DIRS += $( wildcard $( CURDIR) /$( MDDEPDIR) )
1999-09-09 13:24:58 +04:00
#
# Tags: emacs (etags), vi (ctags)
# TAG_PROGRAM := ctags -L -
#
TAG_PROGRAM = xargs etags -a
#
2007-04-25 18:26:42 +04:00
# Turn on C++ linking if we have any .cpp or .mm files
2011-08-26 03:37:25 +04:00
# (moved this from config.mk so that config.mk can be included
1999-09-09 13:24:58 +04:00
# before the CPPSRCS are defined)
#
2011-01-24 11:56:40 +03:00
i f n e q ( $( HOST_CPPSRCS ) $( HOST_CMMSRCS ) , )
HOST_CPP_PROG_LINK = 1
e n d i f
1999-09-09 13:24:58 +04:00
2000-03-11 06:08:04 +03:00
#
# MacOS X specific stuff
#
2001-04-05 07:36:56 +04:00
i f e q ( $( OS_ARCH ) , D a r w i n )
2003-06-10 02:25:25 +04:00
i f d e f S H A R E D _ L I B R A R Y
2015-06-10 18:10:40 +03:00
i f d e f M O Z _ I O S
_LOADER_PATH := @rpath
e l s e
_LOADER_PATH := @executable_path
e n d i f
EXTRA_DSO_LDOPTS += -dynamiclib -install_name $( _LOADER_PATH) /$( SHARED_LIBRARY) -compatibility_version 1 -current_version 1 -single_module
2003-06-10 02:25:25 +04:00
e n d i f
2000-03-11 06:08:04 +03:00
e n d i f
2003-01-30 10:41:27 +03:00
2001-03-09 10:55:29 +03:00
i f e q ( $( OS_ARCH ) , N e t B S D )
i f n e q ( , $( filter arc cobalt hpcmips mipsco newsmips pmax sgimips ,$ ( OS_TEST ) ) )
2013-11-19 06:47:30 +04:00
i f n e q ( , $( filter layout /%,$ ( relativesrcdir ) ) )
2001-03-09 10:55:29 +03:00
OS_CFLAGS += -Wa,-xgot
OS_CXXFLAGS += -Wa,-xgot
2001-08-16 09:18:04 +04:00
e n d i f
e n d i f
e n d i f
2015-12-25 11:36:16 +03:00
i f d e f S Y M B O L S _ F I L E
2016-01-21 15:39:41 +03:00
i f e q ( $( OS_TARGET ) , W I N N T )
i f n d e f G N U _ C C
EXTRA_DSO_LDOPTS += -DEF:$( call normalizepath,$( SYMBOLS_FILE) )
e l s e
EXTRA_DSO_LDOPTS += $( call normalizepath,$( SYMBOLS_FILE) )
e n d i f
e l s e
2015-12-25 11:36:16 +03:00
i f d e f G C C _ U S E _ G N U _ L D
EXTRA_DSO_LDOPTS += -Wl,--version-script,$( SYMBOLS_FILE)
e l s e
i f e q ( $( OS_TARGET ) , D a r w i n )
EXTRA_DSO_LDOPTS += -Wl,-exported_symbols_list,$( SYMBOLS_FILE)
e n d i f
e n d i f
e n d i f
EXTRA_DEPS += $( SYMBOLS_FILE)
e n d i f
2010-04-19 12:39:58 +04:00
#
# GNU doesn't have path length limitation
#
i f e q ( $( OS_ARCH ) , G N U )
OS_CPPFLAGS += -DPATH_MAX= 1024 -DMAXPATHLEN= 1024
e n d i f
2003-03-19 01:04:00 +03:00
#
# MINGW32
#
i f e q ( $( OS_ARCH ) , W I N N T )
i f d e f G N U _ C C
2004-03-16 11:07:25 +03:00
DSO_LDOPTS += -Wl,--out-implib -Wl,$( IMPORT_LIBRARY)
2003-03-19 01:04:00 +03:00
e n d i f
e n d i f
2000-03-31 05:24:48 +04:00
i f e q ( $( USE_TVFS ) , 1 )
IFLAGS1 = -rb
IFLAGS2 = -rb
e l s e
2001-07-25 03:41:43 +04:00
IFLAGS1 = -m 644
IFLAGS2 = -m 755
2000-03-31 05:24:48 +04:00
e n d i f
1999-11-18 05:49:30 +03:00
2001-12-05 00:17:48 +03:00
i f e q ( _ W I N N T , $( GNU_CC ) _ $( OS_ARCH ) )
OUTOPTION = -Fo# eol
e l s e
OUTOPTION = -o # eol
e n d i f # WINNT && !GNU_CC
2011-08-25 13:31:52 +04:00
i f n e q ( , $( filter ml %,$ ( AS ) ) )
ASOUTOPTION = -Fo# eol
e l s e
ASOUTOPTION = -o # eol
e n d i f
2007-03-26 22:17:02 +04:00
i f e q ( , $( CROSS_COMPILE ) )
HOST_OUTOPTION = $( OUTOPTION)
e l s e
HOST_OUTOPTION = -o # eol
2008-02-22 00:02:06 +03:00
e n d i f
1998-03-28 05:44:41 +03:00
################################################################################
2013-10-30 01:53:52 +04:00
# Ensure the build config is up to date. This is done automatically when builds
# are performed through |mach build|. The check here is to catch people not
# using mach. If we ever enforce builds through mach, this code can be removed.
2013-05-17 21:54:56 +04:00
i f n d e f M O Z B U I L D _ B A C K E N D _ C H E C K E D
2013-10-30 01:53:52 +04:00
i f n d e f M A C H
i f n d e f T O P L E V E L _ B U I L D
Bug 1239217 - Make the RecursiveMake build system create backend files generically. r=gps
The current rule is only for "backend.RecursiveMakeBackend", but, with
the current default of generating both the RecursiveMake and FasterMake
backends, the command creates/refreshes both backends. This is, in fact,
how the FasterMake backend is refreshed in most cases.
Moreover, with an hybrid backends, the generated file is not
"backend.RecursiveMakeBackend" anymore, so we need a more generic way to
handle this.
Furthermore, it's not necessarily desirable for all backends to have a
dependency file to handle the dependencies to refresh the backend, so
generate a plain list instead. This has the side effect of making `mach
build-backend --diff` more readable for changes to that file.
Finally, make the backend.* files created like any other backend file,
such that its diff appears in the `mach build-backend --diff` output.
2016-01-22 04:02:48 +03:00
BUILD_BACKEND_FILES := $( addprefix $( DEPTH) /backend.,$( addsuffix Backend,$( BUILD_BACKENDS) ) )
$(DEPTH)/backend.%Backend :
2013-10-30 01:53:52 +04:00
$( error Build configuration changed. Build with | mach build| or run | mach build-backend| to regenerate build config)
2013-05-21 10:26:20 +04:00
Bug 1239217 - Make the RecursiveMake build system create backend files generically. r=gps
The current rule is only for "backend.RecursiveMakeBackend", but, with
the current default of generating both the RecursiveMake and FasterMake
backends, the command creates/refreshes both backends. This is, in fact,
how the FasterMake backend is refreshed in most cases.
Moreover, with an hybrid backends, the generated file is not
"backend.RecursiveMakeBackend" anymore, so we need a more generic way to
handle this.
Furthermore, it's not necessarily desirable for all backends to have a
dependency file to handle the dependencies to refresh the backend, so
generate a plain list instead. This has the side effect of making `mach
build-backend --diff` more readable for changes to that file.
Finally, make the backend.* files created like any other backend file,
such that its diff appears in the `mach build-backend --diff` output.
2016-01-22 04:02:48 +03:00
d e f i n e b u i l d _ b a c k e n d _ r u l e
$(1) : $$( shell cat $ ( 1) .in )
2013-05-21 10:26:20 +04:00
Bug 1239217 - Make the RecursiveMake build system create backend files generically. r=gps
The current rule is only for "backend.RecursiveMakeBackend", but, with
the current default of generating both the RecursiveMake and FasterMake
backends, the command creates/refreshes both backends. This is, in fact,
how the FasterMake backend is refreshed in most cases.
Moreover, with an hybrid backends, the generated file is not
"backend.RecursiveMakeBackend" anymore, so we need a more generic way to
handle this.
Furthermore, it's not necessarily desirable for all backends to have a
dependency file to handle the dependencies to refresh the backend, so
generate a plain list instead. This has the side effect of making `mach
build-backend --diff` more readable for changes to that file.
Finally, make the backend.* files created like any other backend file,
such that its diff appears in the `mach build-backend --diff` output.
2016-01-22 04:02:48 +03:00
e n d e f
$( foreach file ,$ ( BUILD_BACKEND_FILES ) ,$ ( eval $ ( call build_backend_rule ,$ ( file ) ) ) )
default :: $( BUILD_BACKEND_FILES )
2013-05-17 21:54:56 +04:00
export MOZBUILD_BACKEND_CHECKED = 1
e n d i f
2013-10-30 01:53:52 +04:00
e n d i f
e n d i f
2013-05-17 21:54:56 +04:00
2005-04-01 01:40:23 +04:00
# The root makefile doesn't want to do a plain export/libs, because
# of the tiers and because of libxul. Suppress the default rules in favor
# of something else. Makefiles which use this var *must* provide a sensible
# default rule before including rules.mk
2006-08-25 14:45:39 +04:00
default all ::
2014-11-06 03:29:11 +03:00
$( foreach tier,$( TIERS) ,$( call SUBMAKE,$( tier) ) )
2005-04-01 01:40:23 +04:00
2013-08-20 11:21:34 +04:00
i f e q ( $( findstring s ,$ ( filter -out --%, $ ( MAKEFLAGS ) ) ) , )
2008-07-12 14:55:43 +04:00
ECHO := echo
QUIET :=
e l s e
ECHO := true
QUIET := -q
e n d i f
1999-01-21 10:42:44 +03:00
# Do everything from scratch
2001-12-01 01:53:10 +03:00
everything ::
$( MAKE) clean
2013-09-05 04:01:45 +04:00
$( MAKE) all
2001-04-05 05:18:34 +04:00
2010-10-28 22:28:21 +04:00
# Dependencies which, if modified, should cause everything to rebuild
2014-11-30 04:45:31 +03:00
GLOBAL_DEPS += Makefile $( addprefix $( DEPTH) /config/,$( INCLUDED_AUTOCONF_MK) ) $( MOZILLA_DIR) /config/config.mk
2008-11-28 05:26:44 +03:00
2000-03-31 05:24:48 +04:00
##############################################
2013-11-07 05:37:45 +04:00
i f d e f C O M P I L E _ E N V I R O N M E N T
2013-10-02 03:53:23 +04:00
OBJ_TARGETS = $( OBJS) $( PROGOBJS) $( HOST_OBJS) $( HOST_PROGOBJS)
2014-07-25 02:14:40 +04:00
compile :: host target
2018-07-05 08:58:09 +03:00
host :: $( HOST_LIBRARY ) $( HOST_PROGRAM ) $( HOST_SIMPLE_PROGRAMS ) $( HOST_RUST_PROGRAMS ) $( HOST_RUST_LIBRARY_FILE ) $( HOST_SHARED_LIBRARY )
2014-07-25 02:14:40 +04:00
2018-08-12 21:22:45 +03:00
target :: $( LIBRARY ) $( SHARED_LIBRARY ) $( PROGRAM ) $( SIMPLE_PROGRAMS ) $( RUST_LIBRARY_FILE ) $( RUST_PROGRAMS )
2013-09-06 04:19:32 +04:00
2018-03-21 02:31:05 +03:00
i f n d e f L I B R A R Y
i f d e f O B J S
target :: $( OBJS )
e n d i f
e n d i f
2017-04-10 20:27:49 +03:00
syms ::
2014-11-30 04:45:31 +03:00
i n c l u d e $( MOZILLA_DIR ) / c o n f i g / m a k e f i l e s / t a r g e t _ b i n a r i e s . m k
2013-11-07 05:37:45 +04:00
e n d i f
1998-03-28 05:44:41 +03:00
2002-04-25 06:52:44 +04:00
##############################################
2013-12-09 08:39:26 +04:00
i f n e q ( 1 , $( NO_PROFILE_GUIDED_OPTIMIZE ) )
2009-09-25 20:50:53 +04:00
i f d e f M O Z _ P R O F I L E _ U S E
2010-07-26 23:21:55 +04:00
i f e q ( $( OS_ARCH ) _ $( GNU_CC ) , W I N N T _ )
2009-09-25 20:50:53 +04:00
# When building with PGO, we have to make sure to re-link
# in the MOZ_PROFILE_USE phase if we linked in the
# MOZ_PROFILE_GENERATE phase. We'll touch this pgo.relink
# file in the link rule in the GENERATE phase to indicate
# that we need a relink.
2008-02-21 02:29:11 +03:00
i f d e f S H A R E D _ L I B R A R Y
2009-09-25 20:50:53 +04:00
$(SHARED_LIBRARY) : pgo .relink
2008-02-21 02:29:11 +03:00
e n d i f
i f d e f P R O G R A M
2009-09-25 20:50:53 +04:00
$(PROGRAM) : pgo .relink
2008-02-21 02:29:11 +03:00
e n d i f
# In the second pass, we need to merge the pgc files into the pgd file.
# The compiler would do this for us automatically if they were in the right
# place, but they're in dist/bin.
2009-01-08 21:52:38 +03:00
i f n e q ( , $( SHARED_LIBRARY ) $( PROGRAM ) )
2008-02-21 02:29:11 +03:00
export ::
2009-01-08 21:52:38 +03:00
i f d e f P R O G R A M
2014-11-30 04:45:31 +03:00
$( PYTHON) $( MOZILLA_DIR) /build/win32/pgomerge.py \
2011-11-05 01:26:53 +04:00
$( PROGRAM:$( BIN_SUFFIX) = ) $( DIST) /bin
2009-01-08 21:52:38 +03:00
e n d i f
i f d e f S H A R E D _ L I B R A R Y
2014-11-30 04:45:31 +03:00
$( PYTHON) $( MOZILLA_DIR) /build/win32/pgomerge.py \
2014-07-23 08:29:09 +04:00
$( patsubst $( DLL_PREFIX) %$( DLL_SUFFIX) ,%,$( SHARED_LIBRARY) ) $( DIST) /bin
2009-01-08 21:52:38 +03:00
e n d i f
2009-09-25 20:50:53 +04:00
e n d i f # SHARED_LIBRARY || PROGRAM
2008-02-21 02:29:11 +03:00
e n d i f # WINNT_
2011-08-16 11:41:55 +04:00
e n d i f # MOZ_PROFILE_USE
2011-06-13 19:58:34 +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
# Clean up profiling data during PROFILE_GENERATE phase
export ::
i f e q ( $( OS_ARCH ) _ $( GNU_CC ) , W I N N T _ )
2011-08-29 09:33:48 +04:00
$( foreach pgd,$( wildcard *.pgd) ,pgomgr -clear $( pgd) ; )
2011-06-13 19:58:34 +04:00
e l s e
i f d e f G N U _ C C
-$( RM) *.gcda
e n d i f
e n d i f
e n d i f
2011-08-29 09:34:12 +04:00
i f n e q ( , $( MOZ_PROFILE_GENERATE ) $( MOZ_PROFILE_USE ) )
2017-02-17 22:08:50 +03:00
i f n e q ( , $( filter target ,$ ( MAKECMDGOALS ) ) )
2011-08-29 09:34:12 +04:00
i f d e f G N U _ C C
# Force rebuilding libraries and programs in both passes because each
# pass uses different object files.
$(PROGRAM) $(SHARED_LIBRARY) $(LIBRARY) : FORCE
e n d i f
e n d i f
2017-02-17 22:08:50 +03:00
e n d i f
2011-08-29 09:34:12 +04:00
2008-02-21 02:29:11 +03:00
e n d i f # NO_PROFILE_GUIDED_OPTIMIZE
##############################################
2013-10-24 01:43:32 +04:00
clean clobber realclean clobber_all ::
2011-04-03 11:16:49 +04:00
-$( RM) $( ALL_TRASH)
-$( RM) -r $( ALL_TRASH_DIRS)
2013-08-30 06:10:19 +04:00
clean clobber realclean clobber_all distclean ::
2014-07-29 03:57:59 +04:00
$( foreach dir,$( DIRS) ,-$( call SUBMAKE,$@ ,$( dir) ) )
2013-08-30 06:10:19 +04:00
distclean ::
2011-08-26 03:37:25 +04:00
-$( RM) -r $( ALL_TRASH_DIRS)
2011-04-03 11:16:49 +04:00
-$( RM) $( ALL_TRASH) \
2000-12-13 00:28:24 +03:00
Makefile .HSancillary \
2005-06-29 20:28:02 +04:00
$( wildcard *.$( OBJ_SUFFIX) ) $( wildcard *.ho) $( wildcard host_*.o*) \
2003-04-23 04:54:38 +04:00
$( wildcard *.$( LIB_SUFFIX) ) $( wildcard *$( DLL_SUFFIX) ) \
$( wildcard *.$( IMPORT_LIB_SUFFIX) )
1999-06-04 02:23:06 +04:00
1998-03-28 05:44:41 +03:00
alltags :
2011-04-03 11:16:49 +04:00
$( RM) TAGS
1999-06-12 00:21:48 +04:00
find $( topsrcdir) -name dist -prune -o \( -name '*.[hc]' -o -name '*.cp' -o -name '*.cpp' -o -name '*.idl' \) -print | $( TAG_PROGRAM)
1998-03-28 05:44:41 +03:00
2017-08-17 23:21:23 +03:00
d e f i n e E X P A N D _ C C _ O R _ C X X
2018-03-21 02:31:05 +03:00
$( if $ ( PROG_IS_C_ONLY_ $ ( 1) ) ,$ ( CC ) ,$ ( CCC ) )
2017-08-17 23:21:23 +03:00
e n d e f
1999-01-23 14:41:15 +03:00
#
# PROGRAM = Foo
# creates OBJS, links with LIBS to create Foo
#
2018-03-21 02:31:05 +03:00
$(PROGRAM) : $( PROGOBJS ) $( STATIC_LIBS ) $( EXTRA_DEPS ) $( RESFILE ) $( GLOBAL_DEPS ) $( call mkdir_deps ,$ ( FINAL_TARGET ) )
2013-08-10 10:57:09 +04:00
$( REPORT_BUILD)
2011-04-03 11:16:49 +04:00
@$( RM) $@ .manifest
2001-12-09 10:08:58 +03:00
i f e q ( _ W I N N T , $( GNU_CC ) _ $( OS_ARCH ) )
2018-03-21 02:44:12 +03:00
$( LINKER) -NOLOGO -OUT:$@ -PDB:$( LINK_PDBFILE) -IMPLIB:$( basename $( @F) ) .lib $( WIN32_EXE_LDFLAGS) $( LDFLAGS) $( MOZ_PROGRAM_LDFLAGS) $( $( notdir $@ ) _$( OBJS_VAR_SUFFIX) ) $( RESFILE) $( STATIC_LIBS) $( SHARED_LIBS) $( OS_LIBS)
2006-01-23 20:16:17 +03:00
i f d e f M S M A N I F E S T _ T O O L
@if test -f $@ .manifest; then \
2018-03-20 00:07:32 +03:00
if test -f '$(srcdir)/$(notdir $@).manifest' ; then \
echo 'Embedding manifest from $(srcdir)/$(notdir $@).manifest and $@.manifest' ; \
$( MT) -NOLOGO -MANIFEST '$(win_srcdir)/$(notdir $@).manifest' $@ .manifest -OUTPUTRESOURCE:$@ \; 1; \
2006-03-21 17:49:45 +03:00
else \
2013-12-03 01:34:21 +04:00
echo 'Embedding manifest from $@.manifest' ; \
2016-07-22 09:56:26 +03:00
$( MT) -NOLOGO -MANIFEST $@ .manifest -OUTPUTRESOURCE:$@ \; 1; \
2006-03-21 17:49:45 +03:00
fi ; \
2018-03-20 00:07:32 +03:00
elif test -f '$(srcdir)/$(notdir $@).manifest' ; then \
echo 'Embedding manifest from $(srcdir)/$(notdir $@).manifest' ; \
$( MT) -NOLOGO -MANIFEST '$(win_srcdir)/$(notdir $@).manifest' -OUTPUTRESOURCE:$@ \; 1; \
2006-01-23 20:16:17 +03:00
fi
e n d i f # MSVC with manifest tool
2009-09-25 20:50:53 +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
# touch it a few seconds into the future to work around FAT's
# 2-second granularity
2013-12-03 01:34:21 +04:00
touch -t ` date +%Y%m%d%H%M.%S -d 'now+5seconds' ` pgo.relink
2009-09-25 20:50:53 +04:00
e n d i f
e l s e # !WINNT || GNU_CC
2018-03-21 02:44:12 +03:00
$( call EXPAND_CC_OR_CXX,$@ ) -o $@ $( COMPUTED_CXX_LDFLAGS) $( PGO_CFLAGS) $( $( notdir $@ ) _$( OBJS_VAR_SUFFIX) ) $( RESFILE) $( WIN32_EXE_LDFLAGS) $( LDFLAGS) $( STATIC_LIBS) $( MOZ_PROGRAM_LDFLAGS) $( SHARED_LIBS) $( OS_LIBS)
Bug 1470127 - Move binary checks to a standalone script. r=froydnj
We perform, on the binaries we build, a series of check, that are
implemented as half-baked make commands, invoked after linking them.
- check libstdc++ symbol versions to ensure binary compatibility with
a baseline.
- check glibc symbol versions to ensure binary compatibility with a
baseline.
- check that target binaries don't contain text relocations.
- check that libmozglue is linked before libc on android.
- on libxul, check that NSModules are laid out correctly.
- on libxul, check that there is more than one PT_LOAD segment.
Those checks happen to work where they matter, but their setup is
unreliable. For example, the checks for symbol versions are supposed to
work for libclang-plugin on cross osx builds, but in fact, don't,
because the readelf path doesn't exist, and the command doesn't fail in
that case.
So move them all to a standalone script, performing the checks more
thoroughly (especially the NSModules one, where we now also check that
they are all adjacent), and more verbosely.
--HG--
extra : rebase_source : 7072e622e95f363d4a6c3a8e272d3445d998b592
2018-06-21 12:13:03 +03:00
$( call py_action,check_binary,--target $@ )
2001-12-09 10:08:58 +03:00
e n d i f # WINNT && !GNU_CC
2005-04-22 23:06:27 +04:00
2001-10-26 12:36:28 +04:00
i f d e f E N A B L E _ S T R I P
2013-11-11 20:01:22 +04:00
$( STRIP) $( STRIP_FLAGS) $@
2001-10-26 12:36:28 +04:00
e n d i f
2001-10-26 16:39:30 +04:00
i f d e f M O Z _ P O S T _ P R O G R A M _ C O M M A N D
$( MOZ_POST_PROGRAM_COMMAND) $@
e n d i f
1999-01-23 12:36:40 +03:00
2018-06-19 00:22:20 +03:00
$(HOST_PROGRAM) : $( HOST_PROGOBJS ) $( HOST_LIBS ) $( HOST_EXTRA_DEPS ) $( GLOBAL_DEPS ) $( call mkdir_deps ,$ ( DEPTH ) /dist /host /bin )
2013-08-10 10:57:09 +04:00
$( REPORT_BUILD)
2006-01-24 20:25:42 +03:00
i f e q ( _ W I N N T , $( GNU_CC ) _ $( HOST_OS_ARCH ) )
2018-03-21 02:31:05 +03:00
$( LINKER) -NOLOGO -OUT:$@ -PDB:$( HOST_PDBFILE) $( HOST_OBJS) $( WIN32_EXE_LDFLAGS) $( HOST_LDFLAGS) $( HOST_LIBS) $( HOST_EXTRA_LIBS)
2006-01-23 20:16:17 +03:00
i f d e f M S M A N I F E S T _ T O O L
@if test -f $@ .manifest; then \
2018-06-19 00:22:20 +03:00
if test -f '$(srcdir)/$(notdir $@).manifest' ; then \
echo 'Embedding manifest from $(srcdir)/$(notdir $@).manifest and $@.manifest' ; \
$( MT) -NOLOGO -MANIFEST '$(win_srcdir)/$(notdir $@).manifest' $@ .manifest -OUTPUTRESOURCE:$@ \; 1; \
2009-08-04 02:01:55 +04:00
else \
2013-12-03 01:34:21 +04:00
echo 'Embedding manifest from $@.manifest' ; \
2016-07-22 09:56:26 +03:00
$( MT) -NOLOGO -MANIFEST $@ .manifest -OUTPUTRESOURCE:$@ \; 1; \
2009-08-04 02:01:55 +04:00
fi ; \
2018-06-19 00:22:20 +03:00
elif test -f '$(srcdir)/$(notdir $@).manifest' ; then \
echo 'Embedding manifest from $(srcdir)/$(notdir $@).manifest' ; \
$( MT) -NOLOGO -MANIFEST '$(win_srcdir)/$(notdir $@).manifest' -OUTPUTRESOURCE:$@ \; 1; \
2006-01-23 20:16:17 +03:00
fi
e n d i f # MSVC with manifest tool
2002-11-15 06:41:17 +03:00
e l s e
2011-01-24 11:56:40 +03:00
i f e q ( $( HOST_CPP_PROG_LINK ) , 1 )
2018-03-21 02:31:05 +03:00
$( HOST_CXX) -o $@ $( HOST_CXX_LDFLAGS) $( HOST_LDFLAGS) $( HOST_PROGOBJS) $( HOST_LIBS) $( HOST_EXTRA_LIBS)
2007-04-27 15:47:10 +04:00
e l s e
2018-03-21 02:31:05 +03:00
$( HOST_CC) -o $@ $( HOST_C_LDFLAGS) $( HOST_LDFLAGS) $( HOST_PROGOBJS) $( HOST_LIBS) $( HOST_EXTRA_LIBS)
2011-01-24 11:56:40 +03:00
e n d i f # HOST_CPP_PROG_LINK
2002-11-15 06:41:17 +03:00
e n d i f
2015-04-14 05:07:48 +03:00
i f n d e f C R O S S _ C O M P I L E
Bug 1470127 - Move binary checks to a standalone script. r=froydnj
We perform, on the binaries we build, a series of check, that are
implemented as half-baked make commands, invoked after linking them.
- check libstdc++ symbol versions to ensure binary compatibility with
a baseline.
- check glibc symbol versions to ensure binary compatibility with a
baseline.
- check that target binaries don't contain text relocations.
- check that libmozglue is linked before libc on android.
- on libxul, check that NSModules are laid out correctly.
- on libxul, check that there is more than one PT_LOAD segment.
Those checks happen to work where they matter, but their setup is
unreliable. For example, the checks for symbol versions are supposed to
work for libclang-plugin on cross osx builds, but in fact, don't,
because the readelf path doesn't exist, and the command doesn't fail in
that case.
So move them all to a standalone script, performing the checks more
thoroughly (especially the NSModules one, where we now also check that
they are all adjacent), and more verbosely.
--HG--
extra : rebase_source : 7072e622e95f363d4a6c3a8e272d3445d998b592
2018-06-21 12:13:03 +03:00
$( call py_action,check_binary,--host $@ )
2015-04-14 05:07:48 +03:00
e n d i f
2000-03-31 11:18:52 +04:00
1999-01-23 14:41:15 +03:00
#
# This is an attempt to support generation of multiple binaries
# in one directory, it assumes everything to compile Foo is in
# Foo.o (from either Foo.c or Foo.cpp).
#
# SIMPLE_PROGRAMS = Foo Bar
# creates Foo.o Bar.o, links with LIBS to create Foo, Bar.
#
2018-03-21 02:31:05 +03:00
$(SIMPLE_PROGRAMS) : %$( BIN_SUFFIX ) : %.$( OBJ_SUFFIX ) $( STATIC_LIBS ) $( EXTRA_DEPS ) $( GLOBAL_DEPS )
2013-08-10 10:57:09 +04:00
$( REPORT_BUILD)
2001-12-09 10:08:58 +03:00
i f e q ( _ W I N N T , $( GNU_CC ) _ $( OS_ARCH ) )
2018-03-21 02:44:12 +03:00
$( LINKER) -nologo -out:$@ -pdb:$( LINK_PDBFILE) $( $@ _$( OBJS_VAR_SUFFIX) ) $( WIN32_EXE_LDFLAGS) $( LDFLAGS) $( MOZ_PROGRAM_LDFLAGS) $( STATIC_LIBS) $( SHARED_LIBS) $( OS_LIBS)
2006-01-23 20:16:17 +03:00
i f d e f M S M A N I F E S T _ T O O L
@if test -f $@ .manifest; then \
2016-07-22 09:56:26 +03:00
$( MT) -NOLOGO -MANIFEST $@ .manifest -OUTPUTRESOURCE:$@ \; 1; \
2006-01-23 20:16:17 +03:00
rm -f $@ .manifest; \
2018-08-09 01:16:35 +03:00
elif test -f '$(srcdir)/$(notdir $@).manifest' ; then \
$( MT) -NOLOGO -MANIFEST '$(win_srcdir)/$(notdir $@).manifest' -OUTPUTRESOURCE:$@ \; 1; \
2006-01-23 20:16:17 +03:00
fi
e n d i f # MSVC with manifest tool
2000-03-31 05:24:48 +04:00
e l s e
2018-03-21 02:44:12 +03:00
$( call EXPAND_CC_OR_CXX,$@ ) $( COMPUTED_CXX_LDFLAGS) $( PGO_CFLAGS) -o $@ $( $@ _$( OBJS_VAR_SUFFIX) ) $( WIN32_EXE_LDFLAGS) $( LDFLAGS) $( STATIC_LIBS) $( MOZ_PROGRAM_LDFLAGS) $( SHARED_LIBS) $( OS_LIBS)
Bug 1470127 - Move binary checks to a standalone script. r=froydnj
We perform, on the binaries we build, a series of check, that are
implemented as half-baked make commands, invoked after linking them.
- check libstdc++ symbol versions to ensure binary compatibility with
a baseline.
- check glibc symbol versions to ensure binary compatibility with a
baseline.
- check that target binaries don't contain text relocations.
- check that libmozglue is linked before libc on android.
- on libxul, check that NSModules are laid out correctly.
- on libxul, check that there is more than one PT_LOAD segment.
Those checks happen to work where they matter, but their setup is
unreliable. For example, the checks for symbol versions are supposed to
work for libclang-plugin on cross osx builds, but in fact, don't,
because the readelf path doesn't exist, and the command doesn't fail in
that case.
So move them all to a standalone script, performing the checks more
thoroughly (especially the NSModules one, where we now also check that
they are all adjacent), and more verbosely.
--HG--
extra : rebase_source : 7072e622e95f363d4a6c3a8e272d3445d998b592
2018-06-21 12:13:03 +03:00
$( call py_action,check_binary,--target $@ )
2001-12-09 10:08:58 +03:00
e n d i f # WINNT && !GNU_CC
2005-04-22 23:06:27 +04:00
2001-10-26 12:36:28 +04:00
i f d e f E N A B L E _ S T R I P
2013-11-11 20:01:22 +04:00
$( STRIP) $( STRIP_FLAGS) $@
1999-01-23 15:20:00 +03:00
e n d i f
2001-10-26 16:39:30 +04:00
i f d e f M O Z _ P O S T _ P R O G R A M _ C O M M A N D
$( MOZ_POST_PROGRAM_COMMAND) $@
e n d i f
1999-01-23 14:41:15 +03:00
2014-07-29 03:59:56 +04:00
$(HOST_SIMPLE_PROGRAMS) : host_ %$( HOST_BIN_SUFFIX ) : host_ %.$( OBJ_SUFFIX ) $( HOST_LIBS ) $( HOST_EXTRA_DEPS ) $( GLOBAL_DEPS )
2013-08-10 10:57:09 +04:00
$( REPORT_BUILD)
2006-01-24 20:25:42 +03:00
i f e q ( W I N N T _ , $( HOST_OS_ARCH ) _ $( GNU_CC ) )
2018-03-21 02:31:05 +03:00
$( LINKER) -NOLOGO -OUT:$@ -PDB:$( HOST_PDBFILE) $< $( WIN32_EXE_LDFLAGS) $( HOST_LIBS) $( HOST_EXTRA_LIBS)
2007-03-26 22:29:16 +04:00
e l s e
2007-07-16 22:40:49 +04:00
i f n e q ( , $( HOST_CPPSRCS ) $( USE_HOST_CXX ) )
2018-03-21 02:31:05 +03:00
$( HOST_CXX) $( HOST_OUTOPTION) $@ $( HOST_CXX_LDFLAGS) $< $( HOST_LIBS) $( HOST_EXTRA_LIBS)
2005-07-05 21:02:20 +04:00
e l s e
2018-03-21 02:31:05 +03:00
$( HOST_CC) $( HOST_OUTOPTION) $@ $( HOST_C_LDFLAGS) $< $( HOST_LIBS) $( HOST_EXTRA_LIBS)
2005-07-05 21:02:20 +04:00
e n d i f
2006-01-24 20:25:42 +03:00
e n d i f
2015-04-14 05:07:48 +03:00
i f n d e f C R O S S _ C O M P I L E
Bug 1470127 - Move binary checks to a standalone script. r=froydnj
We perform, on the binaries we build, a series of check, that are
implemented as half-baked make commands, invoked after linking them.
- check libstdc++ symbol versions to ensure binary compatibility with
a baseline.
- check glibc symbol versions to ensure binary compatibility with a
baseline.
- check that target binaries don't contain text relocations.
- check that libmozglue is linked before libc on android.
- on libxul, check that NSModules are laid out correctly.
- on libxul, check that there is more than one PT_LOAD segment.
Those checks happen to work where they matter, but their setup is
unreliable. For example, the checks for symbol versions are supposed to
work for libclang-plugin on cross osx builds, but in fact, don't,
because the readelf path doesn't exist, and the command doesn't fail in
that case.
So move them all to a standalone script, performing the checks more
thoroughly (especially the NSModules one, where we now also check that
they are all adjacent), and more verbosely.
--HG--
extra : rebase_source : 7072e622e95f363d4a6c3a8e272d3445d998b592
2018-06-21 12:13:03 +03:00
$( call py_action,check_binary,--host $@ )
2015-04-14 05:07:48 +03:00
e n d i f
2000-03-31 11:18:52 +04:00
2018-03-21 02:31:05 +03:00
$(LIBRARY) : $( OBJS ) $( STATIC_LIBS ) $( EXTRA_DEPS ) $( GLOBAL_DEPS )
2013-08-10 10:57:09 +04:00
$( REPORT_BUILD)
2018-03-21 02:31:05 +03:00
$( RM) $( REAL_LIBRARY)
2018-07-19 10:30:19 +03:00
$( AR) $( AR_FLAGS) $( $@ _$( OBJS_VAR_SUFFIX) )
1999-10-08 09:18:46 +04:00
2011-04-19 08:11:40 +04:00
i f e q ( $( OS_ARCH ) , W I N N T )
2012-10-09 12:17:26 +04:00
# Import libraries are created by the rules creating shared libraries.
# The rules to copy them to $(DIST)/lib depend on $(IMPORT_LIBRARY),
# but make will happily consider the import library before it is refreshed
# when rebuilding the corresponding shared library. Defining an empty recipe
# for import libraries forces make to wait for the shared library recipe to
# have run before considering other targets that depend on the import library.
# See bug 795204.
$(IMPORT_LIBRARY) : $( SHARED_LIBRARY ) ;
2002-04-19 06:42:28 +04:00
e n d i f
2000-03-31 11:18:52 +04:00
$(HOST_LIBRARY) : $( HOST_OBJS ) Makefile
2013-08-10 10:57:09 +04:00
$( REPORT_BUILD)
2011-04-03 11:16:49 +04:00
$( RM) $@
2018-03-21 02:31:05 +03:00
$( HOST_AR) $( HOST_AR_FLAGS) $( HOST_OBJS)
2000-03-31 11:18:52 +04:00
2018-07-05 08:58:09 +03:00
$(HOST_SHARED_LIBRARY) : $( HOST_OBJS ) Makefile
$( REPORT_BUILD)
$( RM) $@
i f d e f _ M S C _ V E R
# /!\ We assume host and target are using the same compiler
$( LINKER) -NOLOGO -DLL -OUT:$@ $( HOST_OBJS) $( HOST_CXX_LDFLAGS) $( HOST_LDFLAGS) $( HOST_LIBS) $( HOST_EXTRA_LIBS)
e l s e
$( HOST_CXX) $( HOST_OUTOPTION) $@ $( HOST_OBJS) $( HOST_CXX_LDFLAGS) $( HOST_LDFLAGS) $( HOST_LIBS) $( HOST_EXTRA_LIBS)
e n d i f
2007-06-30 09:20:00 +04:00
# On Darwin (Mac OS X), dwarf2 debugging uses debug info left in .o files,
# so instead of deleting .o files after repacking them into a dylib, we make
# symlinks back to the originals. The symlinks are a no-op for stabs debugging,
# so no need to conditionalize on OS version or debugging format.
2018-03-21 02:31:05 +03:00
$(SHARED_LIBRARY) : $( OBJS ) $( RESFILE ) $( RUST_STATIC_LIB_FOR_SHARED_LIB ) $( STATIC_LIBS ) $( EXTRA_DEPS ) $( GLOBAL_DEPS )
2013-08-10 10:57:09 +04:00
$( REPORT_BUILD)
2003-09-17 02:36:02 +04:00
i f n d e f I N C R E M E N T A L _ L I N K E R
2011-04-03 11:16:49 +04:00
$( RM) $@
2003-09-17 02:36:02 +04:00
e n d i f
2018-03-21 02:44:12 +03:00
$( MKSHLIB) $( $@ _$( OBJS_VAR_SUFFIX) ) $( RESFILE) $( LDFLAGS) $( STATIC_LIBS) $( RUST_STATIC_LIB_FOR_SHARED_LIB) $( SHARED_LIBS) $( EXTRA_DSO_LDOPTS) $( MOZ_GLUE_LDFLAGS) $( OS_LIBS)
Bug 1470127 - Move binary checks to a standalone script. r=froydnj
We perform, on the binaries we build, a series of check, that are
implemented as half-baked make commands, invoked after linking them.
- check libstdc++ symbol versions to ensure binary compatibility with
a baseline.
- check glibc symbol versions to ensure binary compatibility with a
baseline.
- check that target binaries don't contain text relocations.
- check that libmozglue is linked before libc on android.
- on libxul, check that NSModules are laid out correctly.
- on libxul, check that there is more than one PT_LOAD segment.
Those checks happen to work where they matter, but their setup is
unreliable. For example, the checks for symbol versions are supposed to
work for libclang-plugin on cross osx builds, but in fact, don't,
because the readelf path doesn't exist, and the command doesn't fail in
that case.
So move them all to a standalone script, performing the checks more
thoroughly (especially the NSModules one, where we now also check that
they are all adjacent), and more verbosely.
--HG--
extra : rebase_source : 7072e622e95f363d4a6c3a8e272d3445d998b592
2018-06-21 12:13:03 +03:00
$( call py_action,check_binary,--target $@ )
2007-10-11 03:03:14 +04:00
2006-01-23 20:16:17 +03:00
i f e q ( _ W I N N T , $( GNU_CC ) _ $( OS_ARCH ) )
i f d e f M S M A N I F E S T _ T O O L
2007-09-26 14:38:29 +04:00
i f d e f E M B E D _ M A N I F E S T _ A T
2006-01-23 20:16:17 +03:00
@if test -f $@ .manifest; then \
2016-10-18 01:03:11 +03:00
if test -f '$(srcdir)/$@.manifest' ; then \
echo 'Embedding manifest from $(srcdir)/$@.manifest and $@.manifest' ; \
$( MT) -NOLOGO -MANIFEST '$(win_srcdir)/$@.manifest' $@ .manifest -OUTPUTRESOURCE:$@ \; $( EMBED_MANIFEST_AT) ; \
else \
echo 'Embedding manifest from $@.manifest' ; \
$( MT) -NOLOGO -MANIFEST $@ .manifest -OUTPUTRESOURCE:$@ \; $( EMBED_MANIFEST_AT) ; \
fi ; \
elif test -f '$(srcdir)/$@.manifest' ; then \
echo 'Embedding manifest from $(srcdir)/$@.manifest' ; \
$( MT) -NOLOGO -MANIFEST '$(win_srcdir)/$@.manifest' -OUTPUTRESOURCE:$@ \; $( EMBED_MANIFEST_AT) ; \
2006-01-23 20:16:17 +03:00
fi
2007-09-26 14:38:29 +04:00
e n d i f # EMBED_MANIFEST_AT
2006-01-23 20:16:17 +03:00
e n d i f # MSVC with manifest tool
2009-09-25 20:50:53 +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
2013-12-03 01:34:21 +04:00
touch -t ` date +%Y%m%d%H%M.%S -d 'now+5seconds' ` pgo.relink
2009-09-25 20:50:53 +04:00
e n d i f
2006-01-23 20:16:17 +03:00
e n d i f # WINNT && !GCC
1998-03-28 05:44:41 +03:00
chmod +x $@
2001-10-26 12:36:28 +04:00
i f d e f E N A B L E _ S T R I P
2013-11-11 20:01:22 +04:00
$( STRIP) $( STRIP_FLAGS) $@
2001-10-26 12:36:28 +04:00
e n d i f
1998-03-28 05:44:41 +03:00
2013-07-03 01:40:17 +04:00
# The object file is in the current directory, and the source file can be any
# relative path. This macro adds the dependency obj: src for each source file.
# This dependency must be first for the $< flag to work correctly, and the
# rules that have commands for these targets must not list any other
# prerequisites, or they will override the $< variable.
d e f i n e s r c _ o b j d e p
2013-10-25 02:58:14 +04:00
$(basename $2$(notdir $1)).$(OBJ_SUFFIX) : $1 $$( call mkdir_deps ,$ $ ( MDDEPDIR ) )
2013-07-03 01:40:17 +04:00
e n d e f
$( foreach f ,$ ( CSRCS ) $ ( SSRCS ) $ ( CPPSRCS ) $ ( CMSRCS ) $ ( CMMSRCS ) $ ( ASFILES ) ,$ ( eval $ ( call src_objdep ,$ ( f ) ) ) )
2013-10-25 02:58:14 +04:00
$( foreach f ,$ ( HOST_CSRCS ) $ ( HOST_CPPSRCS ) $ ( HOST_CMSRCS ) $ ( HOST_CMMSRCS ) ,$ ( eval $ ( call src_objdep ,$ ( f ) ,host_ ) ) )
2015-07-21 16:21:40 +03:00
# The Rust compiler only outputs library objects, and so we need different
2015-05-09 01:18:00 +03:00
# mangling to generate dependency rules for it.
Bug 1163224 - add build system support for multiple Rust crates; r=glandium
Our current build system support for Rust compiles any Rust crate into a
so-called staticlib, which is a static library (.a file) that includes
the Rust runtime. That staticlib is then linked into libxul. For
supporting multiple crates, this approach breaks down, as linking
multiple copies of the Rust runtime is going to fail.
For supporting multiple crates, the approach taken here is to compile
each crate into a so-called rlib, which is essentially a staticlib
without the Rust runtime linked in. The build system takes note of
every crate destined for linking with libxul (treating them like static
libraries generated from C/C++ files), and generates a super-crate,
whimsically named "rul", that is compiled as a staticlib (so as to
include the Rust runtime) and then linked into libxul. Thus only one
copy of the Rust runtime is included, and the Rust compiler can take
care of any inter-crate dependencies.
This patch currently only supports Rust code in shared libraries, not in
binaries.
2016-04-21 16:54:01 +03:00
mk_libname = $( basename lib$( notdir $1 ) ) .rlib
2015-05-09 01:18:00 +03:00
src_libdep = $( call mk_libname,$1 ) : $1 $$ ( call mkdir_deps,$$ ( MDDEPDIR) )
Bug 1163224 - add build system support for multiple Rust crates; r=glandium
Our current build system support for Rust compiles any Rust crate into a
so-called staticlib, which is a static library (.a file) that includes
the Rust runtime. That staticlib is then linked into libxul. For
supporting multiple crates, this approach breaks down, as linking
multiple copies of the Rust runtime is going to fail.
For supporting multiple crates, the approach taken here is to compile
each crate into a so-called rlib, which is essentially a staticlib
without the Rust runtime linked in. The build system takes note of
every crate destined for linking with libxul (treating them like static
libraries generated from C/C++ files), and generates a super-crate,
whimsically named "rul", that is compiled as a staticlib (so as to
include the Rust runtime) and then linked into libxul. Thus only one
copy of the Rust runtime is included, and the Rust compiler can take
care of any inter-crate dependencies.
This patch currently only supports Rust code in shared libraries, not in
binaries.
2016-04-21 16:54:01 +03:00
mk_global_crate_libname = $( basename lib$( notdir $1 ) ) .$( LIB_SUFFIX)
crate_src_libdep = $( call mk_global_crate_libname,$1 ) : $1 $$ ( call mkdir_deps,$$ ( MDDEPDIR) )
2015-05-09 01:18:00 +03:00
$( foreach f ,$ ( RSSRCS ) ,$ ( eval $ ( call src_libdep ,$ ( f ) ) ) )
Bug 1163224 - add build system support for multiple Rust crates; r=glandium
Our current build system support for Rust compiles any Rust crate into a
so-called staticlib, which is a static library (.a file) that includes
the Rust runtime. That staticlib is then linked into libxul. For
supporting multiple crates, this approach breaks down, as linking
multiple copies of the Rust runtime is going to fail.
For supporting multiple crates, the approach taken here is to compile
each crate into a so-called rlib, which is essentially a staticlib
without the Rust runtime linked in. The build system takes note of
every crate destined for linking with libxul (treating them like static
libraries generated from C/C++ files), and generates a super-crate,
whimsically named "rul", that is compiled as a staticlib (so as to
include the Rust runtime) and then linked into libxul. Thus only one
copy of the Rust runtime is included, and the Rust compiler can take
care of any inter-crate dependencies.
This patch currently only supports Rust code in shared libraries, not in
binaries.
2016-04-21 16:54:01 +03:00
$( foreach f ,$ ( RS_STATICLIB_CRATE_SRC ) ,$ ( eval $ ( call crate_src_libdep ,$ ( f ) ) ) )
2013-07-03 01:40:17 +04:00
2013-04-10 02:10:25 +04:00
$(OBJS) $(HOST_OBJS) $(PROGOBJS) $(HOST_PROGOBJS) : $( GLOBAL_DEPS )
2012-03-31 11:24:39 +04:00
2002-11-15 10:24:44 +03:00
# Rules for building native targets must come first because of the host_ prefix
2013-10-22 08:40:27 +04:00
$(HOST_COBJS) :
2016-04-06 23:49:55 +03:00
$( REPORT_BUILD_VERBOSE)
2017-11-23 00:23:44 +03:00
$( ELOG) $( HOST_CC) $( HOST_OUTOPTION) $@ -c $( HOST_CPPFLAGS) $( HOST_CFLAGS) $( NSPR_CFLAGS) $( _VPATH_SRCS)
2007-03-26 22:17:02 +04:00
2013-10-22 08:40:27 +04:00
$(HOST_CPPOBJS) :
2016-04-06 23:49:55 +03:00
$( REPORT_BUILD_VERBOSE)
2016-01-12 22:00:24 +03:00
$( call BUILDSTATUS,OBJECT_FILE $@ )
2017-11-23 00:23:44 +03:00
$( ELOG) $( HOST_CXX) $( HOST_OUTOPTION) $@ -c $( HOST_CPPFLAGS) $( HOST_CXXFLAGS) $( NSPR_CFLAGS) $( _VPATH_SRCS)
2002-11-15 10:24:44 +03:00
2013-10-22 08:40:27 +04:00
$(HOST_CMOBJS) :
2016-04-06 23:49:55 +03:00
$( REPORT_BUILD_VERBOSE)
2017-11-23 00:23:44 +03:00
$( ELOG) $( HOST_CC) $( HOST_OUTOPTION) $@ -c $( HOST_CPPFLAGS) $( HOST_CFLAGS) $( HOST_CMFLAGS) $( NSPR_CFLAGS) $( _VPATH_SRCS)
2007-04-27 15:47:10 +04:00
2013-10-22 08:40:27 +04:00
$(HOST_CMMOBJS) :
2016-04-06 23:49:55 +03:00
$( REPORT_BUILD_VERBOSE)
2017-11-23 00:23:44 +03:00
$( ELOG) $( HOST_CXX) $( HOST_OUTOPTION) $@ -c $( HOST_CPPFLAGS) $( HOST_CXXFLAGS) $( HOST_CMMFLAGS) $( NSPR_CFLAGS) $( _VPATH_SRCS)
2007-04-27 15:47:10 +04:00
2013-07-03 01:40:17 +04:00
$(COBJS) :
2016-04-06 23:49:55 +03:00
$( REPORT_BUILD_VERBOSE)
2016-04-30 00:09:57 +03:00
$( ELOG) $( CC) $( OUTOPTION) $@ -c $( COMPILE_CFLAGS) $( $( notdir $<) _FLAGS) $( _VPATH_SRCS)
1998-03-28 05:44:41 +03:00
2010-07-23 21:56:19 +04:00
# DEFINES and ACDEFINES are needed here to enable conditional compilation of Q_OBJECTs:
2011-08-26 03:37:25 +04:00
# 'moc' only knows about #defines it gets on the command line (-D...), not in
2010-07-23 21:56:19 +04:00
# included headers like mozilla-config.h
2013-08-20 10:21:35 +04:00
$(filter moc_%.cpp,$(CPPSRCS)) : moc_ %.cpp : %.h
2016-04-06 23:49:55 +03:00
$( REPORT_BUILD_VERBOSE)
2011-11-17 10:28:33 +04:00
$( ELOG) $( MOC) $( DEFINES) $( ACDEFINES) $< $( OUTOPTION) $@
1999-08-09 18:55:56 +04:00
2013-08-20 10:21:35 +04:00
$(filter moc_%.cc,$(CPPSRCS)) : moc_ %.cc : %.cc
2016-04-06 23:49:55 +03:00
$( REPORT_BUILD_VERBOSE)
2010-07-23 21:56:19 +04:00
$( ELOG) $( MOC) $( DEFINES) $( ACDEFINES) $( _VPATH_SRCS:.cc= .h) $( OUTOPTION) $@
2010-02-19 00:48:50 +03:00
2013-08-20 10:21:35 +04:00
$(filter qrc_%.cpp,$(CPPSRCS)) : qrc_ %.cpp : %.qrc
2016-04-06 23:49:55 +03:00
$( REPORT_BUILD_VERBOSE)
2011-11-17 10:28:33 +04:00
$( ELOG) $( RCC) -name $* $< $( OUTOPTION) $@
2007-10-14 02:14:28 +04:00
i f d e f A S F I L E S
1999-03-08 18:01:13 +03:00
# The AS_DASH_C_FLAG is needed cause not all assemblers (Solaris) accept
# a '-c' flag.
2013-07-03 01:40:17 +04:00
$(ASOBJS) :
2016-04-06 23:49:55 +03:00
$( REPORT_BUILD_VERBOSE)
2014-03-04 20:30:01 +04:00
$( AS) $( ASOUTOPTION) $@ $( ASFLAGS) $( $( notdir $<) _FLAGS) $( AS_DASH_C_FLAG) $( _VPATH_SRCS)
2001-07-02 07:49:50 +04:00
e n d i f
1998-03-28 05:44:41 +03:00
2017-02-10 19:34:08 +03:00
d e f i n e s y m s _ t e m p l a t e
syms :: $( 2)
$(2) : $( 1)
2017-12-18 19:26:02 +03:00
i f d e f M O Z _ C R A S H R E P O R T E R
Bug 1464522 - Count static initializers from the crash reporter symbol files. r=froydnj
The crash reporter symbol files are the easiest cross-platform way to
find static initializers. While some types of static initializers (e.g.
__attribute__(constructor) functions) don't appear there in a notable
way, the static initializers we do care the most about for tracking do
(static initializers from C++ globals). As a matter of fact, there is
only a difference of 2 compared to the currently reported count of 125
on a linux64 build, so this is a good enough approximation. And allows
us to easily track the count on Android, OSX and Windows builds, which
we currently don't do.
The tricky part is that the symbol files are in
dist/crashreporter-symbols/$lib/$fileid/$lib.sym, and $fileid is hard to
figure out. There is a `fileid` tool in testing/tools, but it is a
target binary, meaning it's not available on cross builds (OSX,
Android).
So the simplest is just to gather the data while creating the symbol
files, which unfortunately requires to go through some hoops to make it
happen for just the files we care about.
--HG--
extra : rebase_source : 458fed1ffd6f9294eefef61f10ff7a284af0d986
2018-05-29 02:48:47 +03:00
$$ ( call py_action,dumpsymbols,$$ ( abspath $$ <) $$ ( abspath $$ @) $$ ( DUMP_SYMBOLS_FLAGS) )
2017-12-18 19:26:02 +03:00
e n d i f
2017-02-10 19:34:08 +03:00
e n d e f
i f n d e f M O Z _ P R O F I L E _ G E N E R A T E
i f n e q ( , $( filter $ ( DIST ) /bin %,$ ( FINAL_TARGET ) ) )
DUMP_SYMS_TARGETS := $( SHARED_LIBRARY) $( PROGRAM) $( SIMPLE_PROGRAMS)
e n d i f
e n d i f
i f d e f M O Z _ A U T O M A T I O N
i f e q ( , $( filter 1,$ ( MOZ_AUTOMATION_BUILD_SYMBOLS ) ) )
DUMP_SYMS_TARGETS :=
e n d i f
e n d i f
2017-12-18 19:26:02 +03:00
i f d e f M O Z _ C R A S H R E P O R T E R
2018-01-10 22:26:12 +03:00
$( foreach file ,$ ( DUMP_SYMS_TARGETS ) ,$ ( eval $ ( call syms_template ,$ ( file ) ,$ ( notdir $ ( file ) ) _syms .track ) ) )
2017-12-18 19:26:02 +03:00
e l s e i f n e q ( , $( and $ ( LLVM_SYMBOLIZER ) ,$ ( filter WINNT ,$ ( OS_ARCH ) ) ,$ ( MOZ_AUTOMATION ) ) )
PDB_FILES = $( addsuffix .pdb,$( basename $( DUMP_SYMS_TARGETS) ) )
PDB_DEST ?= $( FINAL_TARGET)
2018-03-27 00:07:30 +03:00
PDB_TARGET = syms
2017-12-18 19:26:02 +03:00
INSTALL_TARGETS += PDB
e n d i f
2017-02-10 19:34:08 +03:00
2016-11-28 19:20:39 +03:00
cargo_host_flag := --target= $( RUST_HOST_TARGET)
cargo_target_flag := --target= $( RUST_TARGET)
2016-10-18 11:04:57 +03:00
# Permit users to pass flags to cargo from their mozconfigs (e.g. --color=always).
cargo_build_flags = $( CARGOFLAGS)
Bug 1353810 - add a --enable-rust-debug option; r=chmanchester
For people working on Rust code, compiling in debug mode (Cargo's "dev"
profile) is convenient: debug assertions are turned on, optimization is
turned off, and parallel compilation inside of rustc itself can be
used. These things make the build faster and the debugging experience
more pleasant.
To obtain that currently, one needs to --enable-debug at the Gecko
toplevel, which turns on debug assertions for the entire browser, which
makes things run unreasonably slowly. So it would be desirable to be
able to turn *off* debug mode for the entirety of the browser, but turn
on debug mode for the Rust code only.
Hence this added switch, --enable-rust-debug, which does what it
suggests and defaults to the value of --enable-debug. For our own
sanity and because we judge it a non-existent use case, we do not
support --enable-debug --disable-rust-debug.
2017-04-13 04:49:25 +03:00
i f n d e f M O Z _ D E B U G _ R U S T
2017-02-17 23:50:29 +03:00
cargo_build_flags += --release
2016-08-06 07:49:26 +03:00
e n d i f
cargo_build_flags += --frozen
2016-08-04 02:40:41 +03:00
2016-08-06 07:49:26 +03:00
cargo_build_flags += --manifest-path $( CARGO_FILE)
2017-01-27 04:38:27 +03:00
i f d e f B U I L D _ V E R B O S E _ L O G
2018-07-03 21:17:31 +03:00
cargo_build_flags += -vv
2017-04-22 05:25:59 +03:00
e l s e
i f d e f M O Z _ A U T O M A T I O N
2018-07-03 21:17:31 +03:00
cargo_build_flags += -vv
2017-04-22 05:25:59 +03:00
e n d i f # MOZ_AUTOMATION
e n d i f # BUILD_VERBOSE_LOG
2016-08-06 07:49:26 +03:00
2016-11-08 00:46:15 +03:00
# Enable color output if original stdout was a TTY and color settings
# aren't already present. This essentially restores the default behavior
# of cargo when running via `mach`.
i f d e f M A C H _ S T D O U T _ I S A T T Y
i f e q ( , $( findstring --color ,$ ( cargo_build_flags ) ) )
cargo_build_flags += --color= always
e n d i f
e n d i f
2017-08-10 21:38:10 +03:00
# These flags are passed via `cargo rustc` and only apply to the final rustc
# invocation (i.e., only the top-level crate, not its dependencies).
cargo_rustc_flags = $( CARGO_RUSTCFLAGS)
i f n d e f D E V E L O P E R _ O P T I O N S
i f n d e f M O Z _ D E B U G _ R U S T
# Enable link-time optimization for release builds.
cargo_rustc_flags += -C lto
e n d i f
e n d i f
2018-03-12 20:25:39 +03:00
i f d e f C A R G O _ I N C R E M E N T A L
cargo_incremental := CARGO_INCREMENTAL = $( CARGO_INCREMENTAL)
2018-01-17 19:32:51 +03:00
e n d i f
2018-06-05 14:56:11 +03:00
rustflags_neon =
i f e q ( n e o n , $( MOZ_FPU ) )
rustflags_neon += -C target_feature = +neon
e n d i f
rustflags_override = RUSTFLAGS = '$(MOZ_RUST_DEFAULT_FLAGS) $(RUSTFLAGS) $(rustflags_neon)'
2016-11-22 01:39:39 +03:00
2017-04-06 16:59:14 +03:00
i f d e f M O Z _ M S V C B I T S
# If we are building a MozillaBuild shell, we want to clear out the
# vcvars.bat environment variables for cargo builds. This is because
# a 32-bit MozillaBuild shell on a 64-bit machine will try to use
# the 32-bit compiler/linker for everything, while cargo/rustc wants
# to use the 64-bit linker for build.rs scripts. This conflict results
2017-04-11 20:35:40 +03:00
# in a build failure (see bug 1350001). So we clear out the environment
# variables that are actually relevant to 32- vs 64-bit builds.
Bug 1377157 - remove VCINSTALLDIR from cargo's environment when running in MozillaBuild; r=ted.mielczarek
Stable Rust currently has logic similar to the following for finding the
linker on Windows:
if VCINSTALLDIR in os.env:
search for things in PATH
if found, return, otherwise fallthrough
look for MSVC installations of various kinds
For our current MozillaBuild setup where we clear out PATH prior to
invoking Cargo, this works: even though VCINSTALLDIR is set and we
(unsuccessfully) search through an empty PATH, we'll still fallback to
looking for MSVC installations.
Beta Rust has altered this search strategy:
if VCINSTALLDIR in os.env:
search for things in PATH
return the result of the search, regardless of success
look for MSVC installations of various kinds
Note that in the above logic, if VCINSTALLDIR is set, we are only going
to try looking in PATH for an appropriate linker. Since PATH is empty
in our current MozillaBuild setup, beta Rust will therefore fail to find
the correct linker. This failure causes numerous problems.
Since Firefox is already trying to "clean" the environment that Cargo is
invoked in, we should work a little bit harder by unsetting VCINSTALLDIR
entirely, and simply force Rust to search for known MSVC installations.
Making this change makes stable and beta Rust behave identically.
(We don't have to worry about this distinction in automation, because
the "cleaning" code is only activated when we detect a MozillaBuild
shell.)
2017-06-29 20:41:57 +03:00
environment_cleaner = -u VCINSTALLDIR PATH = '' LIB = '' LIBPATH = ''
2017-04-11 20:35:40 +03:00
# The servo build needs to know where python is, and we're removing the PATH
# so we tell it explicitly via the PYTHON env var.
environment_cleaner += PYTHON = '$(shell which $(PYTHON))'
2017-04-06 16:59:14 +03:00
e l s e
environment_cleaner =
e n d i f
2017-05-29 17:11:18 +03:00
rust_unlock_unstable =
i f d e f M O Z _ R U S T _ S I M D
rust_unlock_unstable += RUSTC_BOOTSTRAP = 1
e n d i f
2017-05-01 18:58:45 +03:00
i f d e f M O Z _ U S I N G _ S C C A C H E
sccache_wrap := RUSTC_WRAPPER = '$(CCACHE)'
e n d i f
2018-07-05 14:22:02 +03:00
i f n e q ( W I N N T , $( OS_ARCH ) )
i f n d e f M O Z _ A S A N
i f n d e f M O Z _ T S A N
i f n d e f M O Z _ C O D E _ C O V E R A G E
# Pass the compilers and flags in use to cargo for use in build scripts.
# * Don't do this on Windows because msys path translation makes a mess of the paths, and
# we put MSVC in PATH there anyway.
# * Don't do this for ASAN/TSAN builds because we don't pass our custom linker (see below)
# which will muck things up.
# * Don't do this for code coverage builds because the way rustc invokes the linker doesn't
# work with GCC 6: https://bugzilla.mozilla.org/show_bug.cgi?id=1477305
#
# We don't pass HOST_{CC,CXX} down in any form because our host value might not match
# what cargo chooses and there's no way to control cargo's selection, so we just have to
# hope that if something needs to build a host C source file it can find a usable compiler!
#
# We're passing these for consumption by the `cc` crate, which doesn't use the same
# convention as cargo itself:
# https://github.com/alexcrichton/cc-rs/blob/baa71c0e298d9ad7ac30f0ad78f20b4b3b3a8fb2/src/lib.rs#L1715
rust_cc_env_name := $( subst -,_,$( RUST_TARGET) )
cargo_c_compiler_envs := \
CC_$( rust_cc_env_name) = " $( CC) " \
CXX_$( rust_cc_env_name) = " $( CXX) " \
CFLAGS_$( rust_cc_env_name) = " $( COMPUTED_CFLAGS) " \
CXXFLAGS_$( rust_cc_env_name) = " $( COMPUTED_CXXFLAGS) " \
AR_$( rust_cc_env_name) = " $( AR) " \
$( NULL)
e n d i f # MOZ_CODE_COVERAGE
e n d i f # MOZ_TSAN
e n d i f # MOZ_ASAN
e n d i f # WINNT
2017-07-13 14:07:49 +03:00
# We use the + prefix to pass down the jobserver fds to cargo, but we
# don't use the prefix when make -n is used, so that cargo doesn't run
# in that case)
2017-07-05 21:19:31 +03:00
d e f i n e R U N _ C A R G O
2017-07-13 14:07:49 +03:00
$( if $ ( findstring n ,$ ( filter -out --%, $ ( MAKEFLAGS ) ) ) ,,+) e n v $( environment_cleaner ) $( rust_unlock_unstable ) $( rustflags_override ) $( sccache_wrap ) \
2017-02-23 18:35:07 +03:00
CARGO_TARGET_DIR = $( CARGO_TARGET_DIR) \
2017-01-20 19:33:04 +03:00
RUSTC = $( RUSTC) \
2018-05-02 13:02:04 +03:00
RUSTDOC = $( RUSTDOC) \
2018-06-27 08:27:43 +03:00
RUSTFMT = $( RUSTFMT) \
2018-07-05 14:22:02 +03:00
$( cargo_c_compiler_envs) \
2017-05-19 05:51:48 +03:00
MOZ_SRC = $( topsrcdir) \
2017-01-20 19:33:04 +03:00
MOZ_DIST = $( ABS_DIST) \
2017-05-29 00:13:30 +03:00
LIBCLANG_PATH = " $( MOZ_LIBCLANG_PATH) " \
CLANG_PATH = " $( MOZ_CLANG_PATH) " \
2017-02-08 22:13:50 +03:00
PKG_CONFIG_ALLOW_CROSS = 1 \
2017-08-08 19:34:55 +03:00
RUST_BACKTRACE = full \
2017-04-07 00:32:58 +03:00
MOZ_TOPOBJDIR = $( topobjdir) \
2018-01-17 19:32:51 +03:00
$( cargo_incremental) \
2017-07-05 21:19:31 +03:00
$( 2) \
$( CARGO) $( 1) $( cargo_build_flags)
e n d e f
# This function is intended to be called by:
#
# $(call CARGO_BUILD,EXTRA_ENV_VAR1=X EXTRA_ENV_VAR2=Y ...)
#
# but, given the idiosyncracies of make, can also be called without arguments:
#
# $(call CARGO_BUILD)
d e f i n e C A R G O _ B U I L D
2017-08-10 21:38:10 +03:00
$( call RUN_CARGO ,rustc ,$ ( 1) )
2017-04-28 21:06:42 +03:00
e n d e f
2016-12-02 19:38:45 +03:00
2017-07-05 21:19:31 +03:00
d e f i n e C A R G O _ C H E C K
$( call RUN_CARGO ,check ,$ ( 1) )
e n d e f
2017-04-28 21:06:41 +03:00
cargo_linker_env_var := CARGO_TARGET_$( RUST_TARGET_ENV_NAME) _LINKER
# Don't define a custom linker on Windows, as it's difficult to have a
# non-binary file that will get executed correctly by Cargo. We don't
# have to worry about a cross-compiling (besides x86-64 -> x86, which
# already works with the current setup) setup on Windows, and we don't
# have to pass in any special linker options on Windows.
i f n e q ( W I N N T , $( OS_ARCH ) )
2017-05-05 23:53:37 +03:00
# Defining all of this for ASan/TSan builds results in crashes while running
2017-04-28 21:06:41 +03:00
# some crates's build scripts (!), so disable it for now.
i f n d e f M O Z _ A S A N
2017-05-05 23:53:37 +03:00
i f n d e f M O Z _ T S A N
2017-05-26 00:49:32 +03:00
# Cargo needs the same linker flags as the C/C++ compiler,
# but not the final libraries. Filter those out because they
# cause problems on macOS 10.7; see bug 1365993 for details.
2018-05-11 17:37:55 +03:00
# Also, we don't want to pass PGO flags until cargo supports them.
2017-04-28 21:06:41 +03:00
target_cargo_env_vars := \
2018-05-11 17:37:55 +03:00
MOZ_CARGO_WRAP_LDFLAGS = " $( filter-out -framework Cocoa -lobjc AudioToolbox ExceptionHandling -fprofile-%,$( LDFLAGS) ) " \
2017-04-28 21:06:41 +03:00
MOZ_CARGO_WRAP_LD = " $( CC) " \
$( cargo_linker_env_var) = $( topsrcdir) /build/cargo-linker
2017-05-05 23:53:37 +03:00
e n d i f # MOZ_TSAN
2017-04-28 21:06:41 +03:00
e n d i f # MOZ_ASAN
e n d i f # ifneq WINNT
2016-11-28 19:20:39 +03:00
i f d e f R U S T _ L I B R A R Y _ F I L E
2016-12-02 19:39:15 +03:00
i f d e f R U S T _ L I B R A R Y _ F E A T U R E S
rust_features_flag := --features " $( RUST_LIBRARY_FEATURES) "
e n d i f
2016-08-06 07:49:26 +03:00
# Assume any system libraries rustc links against are already in the target's LIBS.
#
# We need to run cargo unconditionally, because cargo is the only thing that
# has full visibility into how changes in Rust sources might affect the final
# build.
2016-11-28 19:20:39 +03:00
force-cargo-library-build :
2016-08-06 07:49:26 +03:00
$( REPORT_BUILD)
2017-08-10 21:38:10 +03:00
$( call CARGO_BUILD,$( target_cargo_env_vars) ) --lib $( cargo_target_flag) $( rust_features_flag) -- $( cargo_rustc_flags)
2016-08-06 07:49:26 +03:00
2016-11-28 19:20:39 +03:00
$(RUST_LIBRARY_FILE) : force -cargo -library -build
2017-07-05 21:19:31 +03:00
force-cargo-library-check :
$( call CARGO_CHECK,$( target_cargo_env_vars) ) --lib $( cargo_target_flag) $( rust_features_flag)
e l s e
force-cargo-library-check :
@true
2016-11-28 19:20:39 +03:00
e n d i f # RUST_LIBRARY_FILE
2016-11-28 19:20:39 +03:00
2018-05-02 04:51:25 +03:00
i f d e f R U S T _ T E S T S
rust_test_options := $( foreach test,$( RUST_TESTS) ,-p $( test ) )
2017-10-02 16:21:22 +03:00
i f d e f R U S T _ T E S T _ F E A T U R E S
rust_features_flag := --features " $( RUST_TEST_FEATURES) "
e n d i f
2018-05-02 10:13:25 +03:00
# Don't stop at the first failure. We want to list all failures together.
rust_test_flag := --no-fail-fast
2017-10-02 16:21:22 +03:00
force-cargo-test-run :
2018-05-02 10:13:25 +03:00
$( call RUN_CARGO,test $( cargo_target_flag) $( rust_test_flag) $( rust_test_options) $( rust_features_flag) ,$( target_cargo_env_vars) )
2017-10-02 16:21:22 +03:00
check :: force -cargo -test -run
e n d i f
2017-01-20 01:58:10 +03:00
i f d e f H O S T _ R U S T _ L I B R A R Y _ F I L E
i f d e f H O S T _ R U S T _ L I B R A R Y _ F E A T U R E S
host_rust_features_flag := --features " $( HOST_RUST_LIBRARY_FEATURES) "
e n d i f
force-cargo-host-library-build :
$( REPORT_BUILD)
2017-04-28 21:06:42 +03:00
$( call CARGO_BUILD) --lib $( cargo_host_flag) $( host_rust_features_flag)
2017-01-20 01:58:10 +03:00
$(HOST_RUST_LIBRARY_FILE) : force -cargo -host -library -build
2017-07-05 21:19:31 +03:00
force-cargo-host-library-check :
$( call CARGO_CHECK) --lib $( cargo_host_flag) $( host_rust_features_flag)
e l s e
force-cargo-host-library-check :
@true
2017-01-20 01:58:10 +03:00
e n d i f # HOST_RUST_LIBRARY_FILE
2016-11-28 19:20:39 +03:00
i f d e f R U S T _ P R O G R A M S
force-cargo-program-build :
$( REPORT_BUILD)
2017-04-28 21:06:41 +03:00
$( call CARGO_BUILD,$( target_cargo_env_vars) ) $( addprefix --bin ,$( RUST_CARGO_PROGRAMS) ) $( cargo_target_flag)
2016-11-28 19:20:39 +03:00
$(RUST_PROGRAMS) : force -cargo -program -build
2017-07-05 21:19:31 +03:00
force-cargo-program-check :
$( call CARGO_CHECK,$( target_cargo_env_vars) ) $( addprefix --bin ,$( RUST_CARGO_PROGRAMS) ) $( cargo_target_flag)
e l s e
force-cargo-program-check :
@true
2016-11-28 19:20:39 +03:00
e n d i f # RUST_PROGRAMS
i f d e f H O S T _ R U S T _ P R O G R A M S
force-cargo-host-program-build :
$( REPORT_BUILD)
2017-04-28 21:06:42 +03:00
$( call CARGO_BUILD) $( addprefix --bin ,$( HOST_RUST_CARGO_PROGRAMS) ) $( cargo_host_flag)
2016-11-28 19:20:39 +03:00
$(HOST_RUST_PROGRAMS) : force -cargo -host -program -build
2017-07-05 21:19:31 +03:00
force-cargo-host-program-check :
$( REPORT_BUILD)
$( call CARGO_CHECK) $( addprefix --bin ,$( HOST_RUST_CARGO_PROGRAMS) ) $( cargo_host_flag)
e l s e
force-cargo-host-program-check :
@true
2016-11-28 19:20:39 +03:00
e n d i f # HOST_RUST_PROGRAMS
2016-08-06 07:49:26 +03:00
2013-07-03 01:40:17 +04:00
$(SOBJS) :
2013-08-10 10:57:09 +04:00
$( REPORT_BUILD)
2018-07-06 20:56:50 +03:00
$( AS) $( ASOUTOPTION) $@ $( SFLAGS) $( $( notdir $<) _FLAGS) -c $<
1998-03-28 05:44:41 +03:00
2013-07-03 01:40:17 +04:00
$(CPPOBJS) :
2016-04-06 23:49:55 +03:00
$( REPORT_BUILD_VERBOSE)
2016-01-12 22:00:24 +03:00
$( call BUILDSTATUS,OBJECT_FILE $@ )
2016-04-30 00:09:57 +03:00
$( ELOG) $( CCC) $( OUTOPTION) $@ -c $( COMPILE_CXXFLAGS) $( $( notdir $<) _FLAGS) $( _VPATH_SRCS)
1998-03-28 05:44:41 +03:00
2013-07-03 01:40:17 +04:00
$(CMMOBJS) :
2016-04-06 23:49:55 +03:00
$( REPORT_BUILD_VERBOSE)
2016-04-30 00:09:57 +03:00
$( ELOG) $( CCC) -o $@ -c $( COMPILE_CXXFLAGS) $( COMPILE_CMMFLAGS) $( $( notdir $<) _FLAGS) $( _VPATH_SRCS)
2001-10-31 04:20:39 +03:00
2013-07-03 01:40:17 +04:00
$(CMOBJS) :
2016-04-06 23:49:55 +03:00
$( REPORT_BUILD_VERBOSE)
2016-04-30 00:09:57 +03:00
$( ELOG) $( CC) -o $@ -c $( COMPILE_CFLAGS) $( COMPILE_CMFLAGS) $( $( notdir $<) _FLAGS) $( _VPATH_SRCS)
2004-06-18 04:56:48 +04:00
2013-08-20 10:21:35 +04:00
$(filter %.s,$(CPPSRCS : %.cpp =%.s )): %.s : %.cpp $( call mkdir_deps ,$ ( MDDEPDIR ) )
2016-04-06 23:49:55 +03:00
$( REPORT_BUILD_VERBOSE)
2016-04-30 00:09:57 +03:00
$( CCC) -S $( COMPILE_CXXFLAGS) $( $( notdir $<) _FLAGS) $( _VPATH_SRCS)
2003-03-08 08:18:43 +03:00
2013-08-20 10:21:35 +04:00
$(filter %.s,$(CPPSRCS : %.cc =%.s )): %.s : %.cc $( call mkdir_deps ,$ ( MDDEPDIR ) )
2016-04-06 23:49:55 +03:00
$( REPORT_BUILD_VERBOSE)
2016-04-30 00:09:57 +03:00
$( CCC) -S $( COMPILE_CXXFLAGS) $( $( notdir $<) _FLAGS) $( _VPATH_SRCS)
2007-07-11 21:26:11 +04:00
2014-06-17 06:36:24 +04:00
$(filter %.s,$(CPPSRCS : %.cxx =%.s )): %.s : %.cpp $( call mkdir_deps ,$ ( MDDEPDIR ) )
2016-04-06 23:49:55 +03:00
$( REPORT_BUILD_VERBOSE)
2016-04-30 00:09:57 +03:00
$( CCC) -S $( COMPILE_CXXFLAGS) $( $( notdir $<) _FLAGS) $( _VPATH_SRCS)
2014-06-17 06:36:24 +04:00
2013-08-20 10:21:35 +04:00
$(filter %.s,$(CSRCS : %.c =%.s )): %.s : %.c $( call mkdir_deps ,$ ( MDDEPDIR ) )
2016-04-06 23:49:55 +03:00
$( REPORT_BUILD_VERBOSE)
2016-04-30 00:09:57 +03:00
$( CC) -S $( COMPILE_CFLAGS) $( $( notdir $<) _FLAGS) $( _VPATH_SRCS)
2003-03-08 08:18:43 +03:00
2013-12-12 04:23:24 +04:00
i f n e q ( , $( filter %.i ,$ ( MAKECMDGOALS ) ) )
# Call as $(call _group_srcs,extension,$(SRCS)) - this will create a list
# of the full sources, as well as the $(notdir) version. So:
# foo.cpp sub/bar.cpp
# becomes:
# foo.cpp sub/bar.cpp bar.cpp
#
# This way we can match both 'make sub/bar.i' and 'make bar.i'
_group_srcs = $( sort $( patsubst %.$1 ,%.i,$( filter %.$1 ,$2 $( notdir $2 ) ) ) )
2017-04-05 10:31:40 +03:00
d e f i n e P R E P R O C E S S _ R U L E S
_PREPROCESSED_$1_FILES := $$ ( call _group_srcs,$1 ,$$ ( $2 ) )
2013-12-12 04:23:24 +04:00
# Make preprocessed files PHONY so they are always executed, since they are
# manual targets and we don't necessarily write to $@.
2017-04-05 10:31:40 +03:00
.PHONY : $$( _PREPROCESSED_ $ 1_FILES )
2017-04-05 10:36:24 +03:00
# Hack up VPATH so we can reach the sources. Eg: 'make Parser.i' may need to
# reach $(srcdir)/frontend/Parser.i
v p a t h % . $ 1 $$ ( a d d p r e f i x $$ ( s r c d i r ) / , $$ ( s o r t $$ ( d i r $$ ( $ 2 ) ) ) )
2017-04-05 10:39:51 +03:00
v p a t h % . $ 1 $$ ( a d d p r e f i x $$ ( C U R D I R ) / , $$ ( s o r t $$ ( d i r $$ ( $ 2 ) ) ) )
2017-04-05 10:36:24 +03:00
2017-04-05 10:33:37 +03:00
$$ (_PREPROCESSED_$1_FILES) : _DEPEND_CFLAGS =
$$ (_PREPROCESSED_$1_FILES) : %.i : %.$1
2017-04-05 10:31:40 +03:00
$$ ( REPORT_BUILD_VERBOSE)
$$ ( addprefix $$ ( MKDIR) -p ,$$ ( filter-out .,$$ ( @D) ) )
$$ ( $3 ) -C $$ ( PREPROCESS_OPTION) $$ @ $( foreach var,$4 ,$$ ( $( var) ) ) $$ ( $$ ( notdir $$ <) _FLAGS) $$ ( _VPATH_SRCS)
2013-12-12 04:23:24 +04:00
2017-04-05 10:31:40 +03:00
e n d e f
1998-03-28 05:44:41 +03:00
2017-04-05 10:31:40 +03:00
$( eval $ ( call PREPROCESS_RULES ,cpp ,CPPSRCS ,CCC ,COMPILE_CXXFLAGS ) )
$( eval $ ( call PREPROCESS_RULES ,cc ,CPPSRCS ,CCC ,COMPILE_CXXFLAGS ) )
$( eval $ ( call PREPROCESS_RULES ,cxx ,CPPSRCS ,CCC ,COMPILE_CXXFLAGS ) )
$( eval $ ( call PREPROCESS_RULES ,c ,CSRCS ,CC ,COMPILE_CFLAGS ) )
$( eval $ ( call PREPROCESS_RULES ,mm ,CMMSRCS ,CCC ,COMPILE_CXXFLAGS COMPILE_CMMFLAGS ) )
2008-03-13 14:12:10 +03:00
2013-12-12 04:23:24 +04:00
# Default to pre-processing the actual unified file. This can be overridden
# at the command-line to pre-process only the individual source file.
PP_UNIFIED ?= 1
# PP_REINVOKE gets set on the sub-make to prevent us from going in an
# infinite loop if the filename doesn't exist in the unified source files.
i f n d e f P P _ R E I N V O K E
2014-06-17 06:36:24 +04:00
MATCH_cpp = \( cpp\| cc| cxx\)
2013-12-12 04:23:24 +04:00
UPPER_c = C
UPPER_cpp = CPP
UPPER_mm = CMM
# When building with PP_UNIFIED=0, we also have to look in the Unified files to
# find a matching pathname.
_get_all_sources = $1 $( if $( filter Unified%,$1 ) ,$( shell sed -n 's/\#include "\(.*\)"$$/\1/p' $( filter Unified%,$1 ) ) )
all_cpp_sources := $( call _get_all_sources,$( CPPSRCS) )
all_mm_sources := $( call _get_all_sources,$( CMMSRCS) )
all_c_sources := $( call _get_all_sources,$( CSRCS) )
all_sources := $( all_cpp_sources) $( all_cmm_sources) $( all_c_sources)
# The catch-all %.i rule runs when we pass in a .i filename that doesn't match
# one of the *SRCS variables. The two code paths depend on whether or not
# we are requesting a unified file (PP_UNIFIED=1, the default) or not:
#
# PP_UNIFIED=1:
# - Look for it in any of the Unified files, and re-exec make with
# Unified_foo0.i as the target. This gets us the full unified preprocessed
# file.
#
# PP_UNIFIED=0:
# - If the .i filename is in *SRCS, or in a Unified filename, then we re-exec
# make with that filename as the target. The *SRCS variables are modified
# to have the Unified sources appended to them so that the static pattern
# rules will match.
%.i : FORCE
i f e q ( $( PP_UNIFIED ) , 1 )
@$( MAKE) PP_REINVOKE = 1 \
$( or $( addsuffix .i, \
$( foreach type,c cpp mm, \
$( if $( filter Unified%,$( $( UPPER_$( type ) ) SRCS) ) , \
$( shell grep -l '#include "\(.*/\)\?$(basename $@).$(or $(MATCH_$(type)),$(type))"' Unified*.$( type ) | sed 's/\.$(type)$$//' ) \
) ) ) ,$( error " File not found for preprocessing: $@ " ) )
e l s e
@$( MAKE) PP_REINVOKE = 1 $@ \
$( foreach type,c cpp mm,$( UPPER_$( type ) ) SRCS = " $( all_$( type ) _sources) " )
e n d i f
e n d i f
e n d i f
2013-08-20 10:21:35 +04:00
$(RESFILE) : %.res : %.rc
2013-08-10 10:57:09 +04:00
$( REPORT_BUILD)
2002-01-01 03:03:57 +03:00
@echo Creating Resource file: $@
2003-03-08 08:18:43 +03:00
i f d e f G N U _ C C
2003-08-05 08:43:49 +04:00
$( RC) $( RCFLAGS) $( filter-out -U%,$( DEFINES) ) $( INCLUDES:-I%= --include-dir %) $( OUTOPTION) $@ $( _VPATH_SRCS)
2002-03-21 16:45:32 +03:00
e l s e
2003-08-05 08:43:49 +04:00
$( RC) $( RCFLAGS) -r $( DEFINES) $( INCLUDES) $( OUTOPTION) $@ $( _VPATH_SRCS)
2002-03-21 16:45:32 +03:00
e n d i f
2002-01-01 03:03:57 +03:00
2013-08-20 10:21:45 +04:00
# Cancel GNU make built-in implicit rules
MAKEFLAGS += -r
1999-03-22 23:43:05 +03:00
2014-02-11 02:57:01 +04:00
i f n e q ( , $( filter WINNT ,$ ( OS_ARCH ) ) )
2006-09-27 19:23:31 +04:00
SEP := ;
e l s e
SEP := :
e n d i f
EMPTY :=
SPACE := $( EMPTY) $( EMPTY)
2011-01-25 23:14:30 +03:00
# MSYS has its own special path form, but javac expects the source and class
# paths to be in the DOS form (i.e. e:/builds/...). This function does the
# appropriate conversion on Windows, but is a noop on other systems.
2011-04-19 08:11:40 +04:00
i f e q ( $( HOST_OS_ARCH ) , W I N N T )
2007-05-02 21:02:45 +04:00
# We use 'pwd -W' to get DOS form of the path. However, since the given path
2010-10-28 22:28:21 +04:00
# could be a file or a non-existent path, we cannot call 'pwd -W' directly
2007-05-02 21:02:45 +04:00
# on the path. Instead, we extract the root path (i.e. "c:/"), call 'pwd -W'
# on it, then merge with the rest of the path.
2013-12-03 01:34:21 +04:00
root-path = $( shell echo $( 1) | sed -e 's|\(/[^/]*\)/\?\(.*\)|\1|' )
non-root-path = $( shell echo $( 1) | sed -e 's|\(/[^/]*\)/\?\(.*\)|\2|' )
2009-08-03 20:16:05 +04:00
normalizepath = $( foreach p,$( 1) ,$( if $( filter /%,$( 1) ) ,$( patsubst %/,%,$( shell cd $( call root-path,$( 1) ) && pwd -W) ) /$( call non-root-path,$( 1) ) ,$( 1) ) )
2007-03-08 01:44:16 +03:00
e l s e
normalizepath = $( 1)
e n d i f
1999-01-29 23:00:50 +03:00
###############################################################################
1998-03-28 05:44:41 +03:00
# Bunch of things that extend the 'export' rule (in order):
1999-01-29 23:00:50 +03:00
###############################################################################
1998-03-28 05:44:41 +03:00
2005-02-19 01:17:37 +03:00
i f n e q ( $( XPI_NAME ) , )
2008-10-31 03:03:02 +03:00
$(FINAL_TARGET) :
$( NSINSTALL) -D $@
export :: $( FINAL_TARGET )
2005-02-19 01:17:37 +03:00
e n d i f
1999-06-03 04:41:11 +04:00
################################################################################
2015-11-28 04:21:19 +03:00
# The default location for prefs is the gre prefs directory.
# PREF_DIR is used for L10N_PREF_JS_EXPORTS in various locales/ directories.
2004-01-16 22:22:43 +03:00
PREF_DIR = defaults/pref
2012-12-06 02:36:15 +04:00
# If DIST_SUBDIR is defined it indicates that app and gre dirs are
# different and that we are building app related resources. Hence,
# PREF_DIR should point to the app prefs location.
2015-10-06 06:13:33 +03:00
i f n e q ( , $( DIST_SUBDIR ) $( XPI_NAME ) )
2012-12-06 02:36:15 +04:00
PREF_DIR = defaults/preferences
2005-03-28 23:36:24 +04:00
e n d i f
2004-01-16 22:22:43 +03:00
2012-05-10 21:10:11 +04:00
################################################################################
2000-09-20 23:35:24 +04:00
# CHROME PACKAGING
2000-09-09 09:54:35 +04:00
2003-10-16 00:30:59 +04:00
chrome ::
$( MAKE) realchrome
2009-02-28 00:03:53 +03:00
$( LOOP_OVER_DIRS)
2003-10-16 00:30:59 +04:00
2012-05-15 20:20:30 +04:00
$(FINAL_TARGET)/chrome : $( call mkdir_deps ,$ ( FINAL_TARGET ) /chrome )
2008-10-31 03:03:02 +03:00
2013-12-10 11:18:11 +04:00
i f n e q ( , $( JAR_MANIFEST ) )
2002-04-25 06:52:44 +04:00
i f n d e f N O _ D I S T _ I N S T A L L
2013-02-07 01:21:32 +04:00
i f d e f X P I _ N A M E
2013-02-07 20:22:11 +04:00
i f d e f X P I _ R O O T _ A P P I D
# For add-on packaging we may specify that an application
2013-02-07 01:21:32 +04:00
# sub-dir should be added to the root chrome manifest with
# a specific application id.
2013-12-03 01:34:21 +04:00
MAKE_JARS_FLAGS += --root-manifest-entry-appid= '$(XPI_ROOT_APPID)'
2013-02-07 20:22:11 +04:00
e n d i f
2013-02-07 01:21:32 +04:00
# if DIST_SUBDIR is defined but XPI_ROOT_APPID is not there's
# no way langpacks will get packaged right, so error out.
i f n e q ( , $( DIST_SUBDIR ) )
i f n d e f X P I _ R O O T _ A P P I D
$( error XPI_ROOT_APPID is not defined - langpacks will break .)
e n d i f
e n d i f
e n d i f
2016-01-20 02:01:42 +03:00
libs realchrome :: $( FINAL_TARGET ) /chrome
2013-10-12 00:19:11 +04:00
$( call py_action,jar_maker,\
2015-10-09 02:35:48 +03:00
$( QUIET) -d $( FINAL_TARGET) \
2015-12-29 10:00:21 +03:00
$( MAKE_JARS_FLAGS) $( DEFINES) $( ACDEFINES) \
2013-10-12 00:19:11 +04:00
$( JAR_MANIFEST) )
2013-02-07 01:21:32 +04:00
2008-11-26 22:43:59 +03:00
e n d i f
2013-12-10 11:18:11 +04:00
2002-04-25 06:52:44 +04:00
e n d i f
2014-07-29 03:55:55 +04:00
# When you move this out of the tools tier, please remove the corresponding
# hacks in recursivemake.py that check if Makefile.in sets the variable.
2005-06-01 15:59:09 +04:00
i f n e q ( $( XPI_PKGNAME ) , )
2013-11-08 06:42:22 +04:00
tools realchrome ::
2006-02-06 22:07:40 +03:00
i f d e f S T R I P _ X P I
2006-03-29 01:44:14 +04:00
i f n d e f M O Z _ D E B U G
2013-12-03 01:34:21 +04:00
@echo 'Stripping $(XPI_PKGNAME) package directory...'
2006-01-03 22:08:27 +03:00
@echo $( FINAL_TARGET)
@cd $( FINAL_TARGET) && find . ! -type d \
2013-12-03 01:34:21 +04:00
! -name '*.js' \
! -name '*.xpt' \
! -name '*.gif' \
! -name '*.jpg' \
! -name '*.png' \
! -name '*.xpm' \
! -name '*.txt' \
! -name '*.rdf' \
! -name '*.sh' \
! -name '*.properties' \
! -name '*.dtd' \
! -name '*.html' \
! -name '*.xul' \
! -name '*.css' \
! -name '*.xml' \
! -name '*.jar' \
! -name '*.dat' \
! -name '*.tbl' \
! -name '*.src' \
! -name '*.reg' \
2006-01-03 22:08:27 +03:00
$( PLATFORM_EXCLUDE_LIST) \
-exec $( STRIP) $( STRIP_FLAGS) { } >/dev/null 2>& 1 \;
2006-03-29 01:44:14 +04:00
e n d i f
2006-01-03 22:08:27 +03:00
e n d i f
2013-12-03 01:34:21 +04:00
@echo 'Packaging $(XPI_PKGNAME).xpi...'
2015-05-20 01:52:55 +03:00
$( call py_action,zip,-C $( FINAL_TARGET) ../$( XPI_PKGNAME) .xpi '*' )
2005-06-01 15:59:09 +04:00
e n d i f
2014-07-29 03:55:55 +04:00
# See comment above about moving this out of the tools tier.
2005-06-01 15:59:09 +04:00
i f d e f I N S T A L L _ E X T E N S I O N _ I D
i f n d e f X P I _ N A M E
$( error XPI_NAME must be set for INSTALL_EXTENSION_ID )
e n d i f
2013-11-08 06:42:22 +04:00
tools ::
2014-08-06 20:58:31 +04:00
$( RM) -r '$(DIST)/bin/distribution$(DIST_SUBDIR:%=/%)/extensions/$(INSTALL_EXTENSION_ID)'
$( NSINSTALL) -D '$(DIST)/bin/distribution$(DIST_SUBDIR:%=/%)/extensions/$(INSTALL_EXTENSION_ID)'
$( call copy_dir,$( FINAL_TARGET) ,$( DIST) /bin/distribution$( DIST_SUBDIR:%= /%) /extensions/$( INSTALL_EXTENSION_ID) )
2005-06-01 15:59:09 +04:00
e n d i f
1999-02-17 20:33:07 +03:00
#############################################################################
1999-08-25 01:45:06 +04:00
# MDDEPDIR is the subdirectory where all the dependency files are placed.
# This uses a make rule (instead of a macro) to support parallel
# builds (-jN). If this were done in the LOOP_OVER_DIRS macro, two
# processes could simultaneously try to create the same directory.
#
2008-11-10 23:55:46 +03:00
# We use $(CURDIR) in the rule's target to ensure that we don't find
# a dependency directory in the source tree via VPATH (perhaps from
# a previous build in the source tree) and thus neglect to create a
# dependency directory in the object directory, where we really need
# it.
2013-10-24 02:59:03 +04:00
i f n e q ( , $( filter -out all chrome default export realchrome clean clobber clobber_all distclean realclean ,$ ( MAKECMDGOALS ) ) )
2015-11-03 21:23:04 +03:00
MDDEPEND_FILES := $( strip $( wildcard $( addprefix $( MDDEPDIR) /,$( addsuffix .pp,$( notdir $( sort $( OBJS) $( PROGOBJS) $( HOST_OBJS) $( HOST_PROGOBJS) ) ) ) ) ) )
1999-09-09 13:24:58 +04:00
2001-04-05 05:18:34 +04:00
i f n e q ( , $( MDDEPEND_FILES ) )
2015-12-04 02:20:58 +03:00
- i n c l u d e $( MDDEPEND_FILES )
1999-03-09 04:31:26 +03:00
e n d i f
2001-04-05 05:18:34 +04:00
1999-03-10 03:03:12 +03:00
e n d i f
2013-05-09 21:05:33 +04:00
2015-11-03 21:23:04 +03:00
MDDEPEND_FILES := $( strip $( wildcard $( addprefix $( MDDEPDIR) /,$( EXTRA_MDDEPEND_FILES) ) ) )
2013-05-09 21:05:33 +04:00
i f n e q ( , $( MDDEPEND_FILES ) )
2015-12-04 02:20:58 +03:00
- i n c l u d e $( MDDEPEND_FILES )
2013-05-09 21:05:33 +04:00
e n d i f
2012-08-07 11:29:59 +04:00
################################################################################
# Install/copy rules
#
# The INSTALL_TARGETS variable contains a list of all install target
2012-08-29 10:55:57 +04:00
# categories. Each category defines a list of files and executables, and an
# install destination,
2012-08-07 11:29:59 +04:00
#
# FOO_FILES := foo bar
# FOO_EXECUTABLES := baz
# FOO_DEST := target_path
# INSTALL_TARGETS += FOO
2012-08-29 10:55:57 +04:00
#
# Additionally, a FOO_TARGET variable may be added to indicate the target for
# which the files and executables are installed. Default is "libs".
2013-11-09 05:32:53 +04:00
#
# Finally, a FOO_KEEP_PATH variable may be set to 1 to indicate the paths given
# in FOO_FILES/FOO_EXECUTABLES are to be kept at the destination. That is,
# if FOO_FILES is bar/baz/qux.h, and FOO_DEST is $(DIST)/include, the installed
# file would be $(DIST)/include/bar/baz/qux.h instead of $(DIST)/include/qux.h
2012-08-29 10:55:57 +04:00
# If we're using binary nsinstall and it's not built yet, fallback to python nsinstall.
2014-08-06 21:58:50 +04:00
i f n e q ( , $( filter $ ( DEPTH ) /config /nsinstall $ ( HOST_BIN_SUFFIX ) ,$ ( install_cmd ) ) )
i f e q ( , $( wildcard $ ( DEPTH ) /config /nsinstall $ ( HOST_BIN_SUFFIX ) ) )
nsinstall_is_usable = $( if $( wildcard $( DEPTH) /config/nsinstall$( HOST_BIN_SUFFIX) ) ,yes)
2012-08-29 10:55:57 +04:00
d e f i n e i n s t a l l _ c m d _ o v e r r i d e
2014-02-05 08:02:20 +04:00
$(1) : install_cmd = $$( if $ $ ( nsinstall_is_usable ) ,$ $ ( INSTALL ) ,$ $ ( NSINSTALL_PY ) -t ) $$( 1)
2012-08-29 10:55:57 +04:00
e n d e f
e n d i f
2013-01-23 13:13:04 +04:00
e n d i f
2012-08-29 10:55:57 +04:00
2013-11-09 05:32:53 +04:00
install_target_tier = $( or $( $( 1) _TARGET) ,libs)
INSTALL_TARGETS_TIERS := $( sort $( foreach category,$( INSTALL_TARGETS) ,$( call install_target_tier,$( category) ) ) )
install_target_result = $( $( 1) _DEST:%/= %) /$( if $( $( 1) _KEEP_PATH) ,$( 2) ,$( notdir $( 2) ) )
install_target_files = $( foreach file,$( $( 1) _FILES) ,$( call install_target_result,$( category) ,$( file) ) )
install_target_executables = $( foreach file,$( $( 1) _EXECUTABLES) ,$( call install_target_result,$( category) ,$( file) ) )
# Work around a GNU make 3.81 bug where it gives $< the wrong value.
# See details in bug 934864.
d e f i n e c r e a t e _ d e p e n d e n c y
$(1) : $( 2)
$(1) : $( 2)
e n d e f
d e f i n e i n s t a l l _ t a r g e t _ t e m p l a t e
$( call install_cmd_override ,$ ( 2) )
$( call create_dependency ,$ ( 2) ,$ ( 1) )
2012-08-07 11:29:59 +04:00
e n d e f
2013-11-09 05:32:53 +04:00
2012-08-07 11:29:59 +04:00
$( foreach category ,$ ( INSTALL_TARGETS ) ,\
2013-11-09 05:32:53 +04:00
$( if $( $( category) _DEST) ,,$( error Missing $( category) _DEST) ) \
$( foreach tier,$( call install_target_tier,$( category) ) ,\
$( eval INSTALL_TARGETS_FILES_$( tier) += $( call install_target_files,$( category) ) ) \
$( eval INSTALL_TARGETS_EXECUTABLES_$( tier) += $( call install_target_executables,$( category) ) ) \
) \
$( foreach file,$( $( category) _FILES) $( $( category) _EXECUTABLES) , \
$( eval $( call install_target_template,$( file) ,$( call install_target_result,$( category) ,$( file) ) ) ) \
) \
)
$( foreach tier ,$ ( INSTALL_TARGETS_TIERS ) , \
$( eval $( tier) :: $( INSTALL_TARGETS_FILES_$( tier) ) $( INSTALL_TARGETS_EXECUTABLES_$( tier) ) ) \
2012-08-07 11:29:59 +04:00
)
2013-11-09 05:32:53 +04:00
install_targets_sanity = $( if $( filter-out $( notdir $@ ) ,$( notdir $( <) ) ) ,$( error Looks like $@ has an unexpected dependency on $< which breaks INSTALL_TARGETS) )
$(sort $(foreach tier,$(INSTALL_TARGETS_TIERS),$(INSTALL_TARGETS_FILES_$(tier)))) :
$( install_targets_sanity)
2013-12-03 01:34:21 +04:00
$( call install_cmd,$( IFLAGS1) '$<' '$(@D)' )
2013-11-09 05:32:53 +04:00
$(sort $(foreach tier,$(INSTALL_TARGETS_TIERS),$(INSTALL_TARGETS_EXECUTABLES_$(tier)))) :
$( install_targets_sanity)
2013-12-03 01:34:21 +04:00
$( call install_cmd,$( IFLAGS2) '$<' '$(@D)' )
2013-11-09 05:32:53 +04:00
2012-07-23 09:42:22 +04:00
################################################################################
# Preprocessing rules
#
# The PP_TARGETS variable contains a list of all preprocessing target
2012-12-03 04:49:32 +04:00
# categories. Each category has associated variables listing input files, the
# output directory, extra preprocessor flags, and so on. For example:
2012-07-23 09:42:22 +04:00
#
2012-12-03 04:49:32 +04:00
# FOO := input-file
# FOO_PATH := target-directory
# FOO_FLAGS := -Dsome_flag
# PP_TARGETS += FOO
2012-08-29 10:55:57 +04:00
#
2012-12-03 04:49:32 +04:00
# If PP_TARGETS lists a category name <C> (like FOO, above), then we consult the
# following make variables to see what to do:
#
2013-11-09 05:35:44 +04:00
# - <C> lists input files to be preprocessed with mozbuild.action.preprocessor.
# We search VPATH for the names given here. If an input file name ends in
# '.in', that suffix is omitted from the output file name.
2012-12-03 04:49:32 +04:00
#
# - <C>_PATH names the directory in which to place the preprocessed output
# files. We create this directory if it does not already exist. Setting
# this variable is optional; if unset, we install the files in $(CURDIR).
#
2013-11-09 05:35:44 +04:00
# - <C>_FLAGS lists flags to pass to mozbuild.action.preprocessor, in addition
# to the usual bunch. Setting this variable is optional.
2012-12-03 04:49:32 +04:00
#
# - <C>_TARGET names the 'make' target that should depend on creating the output
# files. Setting this variable is optional; if unset, we preprocess the
# files for the 'libs' target.
2013-11-09 05:32:53 +04:00
#
# - <C>_KEEP_PATH may be set to 1 to indicate the paths given in <C> are to be
# kept under <C>_PATH. That is, if <C> is bar/baz/qux.h.in and <C>_PATH is
# $(DIST)/include, the preprocessed file would be $(DIST)/include/bar/baz/qux.h
# instead of $(DIST)/include/qux.h.
pp_target_tier = $( or $( $( 1) _TARGET) ,libs)
PP_TARGETS_TIERS := $( sort $( foreach category,$( PP_TARGETS) ,$( call pp_target_tier,$( category) ) ) )
pp_target_result = $( or $( $( 1) _PATH:%/= %) ,$( CURDIR) ) /$( if $( $( 1) _KEEP_PATH) ,$( 2:.in= ) ,$( notdir $( 2:.in= ) ) )
pp_target_results = $( foreach file,$( $( 1) ) ,$( call pp_target_result,$( category) ,$( file) ) )
$( foreach category ,$ ( PP_TARGETS ) , \
$( foreach tier,$( call pp_target_tier,$( category) ) , \
$( eval PP_TARGETS_RESULTS_$( tier) += $( call pp_target_results,$( category) ) ) \
) \
$( foreach file,$( $( category) ) , \
$( eval $( call create_dependency,$( call pp_target_result,$( category) ,$( file) ) , \
$( file) $( GLOBAL_DEPS) ) ) \
) \
$( eval $( call pp_target_results,$( category) ) : PP_TARGET_FLAGS = $( $( category) _FLAGS) ) \
)
2012-07-23 09:42:22 +04:00
2013-11-09 05:32:53 +04:00
$( foreach tier ,$ ( PP_TARGETS_TIERS ) , \
$( eval $( tier) :: $( PP_TARGETS_RESULTS_$( tier) ) ) \
)
2013-11-09 05:35:45 +04:00
PP_TARGETS_ALL_RESULTS := $( sort $( foreach tier,$( PP_TARGETS_TIERS) ,$( PP_TARGETS_RESULTS_$( tier) ) ) )
$(PP_TARGETS_ALL_RESULTS) :
2013-11-09 05:32:53 +04:00
$( if $( filter-out $( notdir $@ ) ,$( notdir $( <:.in= ) ) ) ,$( error Looks like $@ has an unexpected dependency on $< which breaks PP_TARGETS) )
2013-12-03 01:34:21 +04:00
$( RM) '$@'
2015-12-29 10:00:21 +03:00
$( call py_action,preprocessor,--depend $( MDDEPDIR) /$( @F) .pp $( PP_TARGET_FLAGS) $( DEFINES) $( ACDEFINES) '$<' -o '$@' )
2013-11-09 05:35:45 +04:00
2015-12-24 10:36:50 +03:00
$(filter %.css,$(PP_TARGETS_ALL_RESULTS)) : PP_TARGET_FLAGS +=--marker %
2013-11-09 05:35:45 +04:00
# The depfile is based on the filename, and we don't want conflicts. So check
# there's only one occurrence of any given filename in PP_TARGETS_ALL_RESULTS.
PP_TARGETS_ALL_RESULT_NAMES := $( notdir $( PP_TARGETS_ALL_RESULTS) )
$( foreach file ,$ ( sort $ ( PP_TARGETS_ALL_RESULT_NAMES ) ) , \
$( if $( filter-out 1,$( words $( filter $( file) ,$( PP_TARGETS_ALL_RESULT_NAMES) ) ) ) , \
$( error Multiple preprocessing rules are creating a $( file) file) \
) \
)
i f n e q ( , $( filter $ ( PP_TARGETS_TIERS ) $ ( PP_TARGETS_ALL_RESULTS ) ,$ ( MAKECMDGOALS ) ) )
# If the depfile for a preprocessed file doesn't exist, add a dep to force
# re-preprocessing.
$( foreach file ,$ ( PP_TARGETS_ALL_RESULTS ) , \
$( if $( wildcard $( MDDEPDIR) /$( notdir $( file) ) .pp) , \
, \
$( eval $( file) : FORCE) \
) \
)
MDDEPEND_FILES := $( strip $( wildcard $( addprefix $( MDDEPDIR) /,$( addsuffix .pp,$( notdir $( PP_TARGETS_ALL_RESULTS) ) ) ) ) )
2012-07-23 09:42:22 +04:00
2013-11-09 05:35:45 +04:00
i f n e q ( , $( MDDEPEND_FILES ) )
2015-12-04 02:20:58 +03:00
- i n c l u d e $( MDDEPEND_FILES )
2013-11-09 05:35:45 +04:00
e n d i f
e n d i f
2012-07-23 09:42:22 +04:00
2013-05-17 21:54:53 +04:00
# Pull in non-recursive targets if this is a partial tree build.
i f n d e f T O P L E V E L _ B U I L D
2014-11-30 04:45:31 +03:00
i n c l u d e $( MOZILLA_DIR ) / c o n f i g / m a k e f i l e s / n o n r e c u r s i v e . m k
2013-05-17 21:54:53 +04:00
e n d i f
1998-03-28 05:44:41 +03:00
################################################################################
# Special gmake rules.
################################################################################
2007-07-25 17:56:04 +04:00
1998-03-28 05:44:41 +03:00
#
# Re-define the list of default suffixes, so gmake won't have to churn through
# hundreds of built-in suffix rules for stuff we don't need.
#
.SUFFIXES :
#
# Fake targets. Always run these rules, even if a file/directory with that
# name already exists.
#
2017-11-02 01:05:50 +03:00
.PHONY : all alltags boot chrome realchrome clean clobber clobber_all export install libs makefiles realclean run_apprunner tools $( DIRS ) FORCE
1999-03-10 00:56:44 +03:00
# Used as a dependency to force targets to rebuild
FORCE :
1998-03-28 05:44:41 +03:00
2000-09-28 08:02:15 +04:00
# Delete target if error occurs when building target
.DELETE_ON_ERROR :
1999-05-12 03:43:36 +04:00
tags : TAGS
2013-10-24 01:43:32 +04:00
TAGS : $( CSRCS ) $( CPPSRCS ) $( wildcard *.h )
1999-05-12 03:43:36 +04:00
-etags $( CSRCS) $( CPPSRCS) $( wildcard *.h)
2009-02-28 00:03:53 +03:00
$( LOOP_OVER_DIRS)
1999-05-12 03:43:36 +04:00
2012-05-16 22:46:28 +04:00
i f n d e f I N C L U D E D _ D E B U G M A K E _ M K #{
## Only parse when an echo* or show* target is requested
ifneq ( ,$( call isTargetStem,echo,show) )
2014-11-30 04:45:31 +03:00
include $( MOZILLA_DIR) /config/makefiles/debugmake.mk
2012-05-16 22:46:28 +04:00
endif #}
e n d i f #}
2000-04-21 05:14:45 +04:00
2002-02-22 14:11:24 +03:00
documentation :
@cd $( DEPTH)
2002-11-11 07:04:49 +03:00
$( DOXYGEN) $( DEPTH) /config/doxygen.cfg
2005-08-11 20:41:54 +04:00
2009-05-18 22:15:05 +04:00
FREEZE_VARIABLES = \
CSRCS \
CPPSRCS \
EXPORTS \
DIRS \
LIBRARY \
MODULE \
$( NULL)
$(foreach var,$(FREEZE_VARIABLES),$(eval $(var)_FROZEN : = '$( $ ( var ) ) '))
CHECK_FROZEN_VARIABLES = $( foreach var,$( FREEZE_VARIABLES) , \
$( if $( subst $( $( var) _FROZEN) ,,'$($(var))' ) ,$( error Makefile variable '$(var)' changed value after including rules.mk. Was $( $( var) _FROZEN) , now $( $( var) ) .) ) )
2012-04-04 00:08:16 +04:00
libs export ::
2009-05-18 22:15:05 +04:00
$( CHECK_FROZEN_VARIABLES)
2010-07-03 03:59:17 +04:00
2013-05-05 12:16:25 +04:00
.DEFAULT_GOAL := $( or $( OVERRIDE_DEFAULT_GOAL) ,default)
2012-04-02 21:06:06 +04:00
#############################################################################
# Derived targets and dependencies
2014-11-30 04:45:31 +03:00
i n c l u d e $( MOZILLA_DIR ) / c o n f i g / m a k e f i l e s / a u t o t a r g e t s . m k
2012-04-02 21:06:06 +04:00
i f n e q ( $( NULL ) , $( AUTO_DEPS ) )
default all libs tools export:: $( AUTO_DEPS)
e n d i f