2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2014-08-24 04:11:05 +04:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# 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/.
|
|
|
|
|
2014-09-04 04:05:12 +04:00
|
|
|
@template
|
2014-10-29 07:29:42 +03:00
|
|
|
def Binary():
|
|
|
|
'''Generic template for target binaries. Meant to be used by other
|
|
|
|
templates.'''
|
2014-09-04 04:05:12 +04:00
|
|
|
|
2017-07-05 16:32:30 +03:00
|
|
|
# Add -llog by default, since we use it all over the place.
|
|
|
|
if CONFIG['OS_TARGET'] == 'Android':
|
|
|
|
OS_LIBS += ['log']
|
|
|
|
|
2014-09-04 04:05:12 +04:00
|
|
|
|
2014-09-03 09:10:54 +04:00
|
|
|
@template
|
|
|
|
def Program(name):
|
|
|
|
'''Template for program executables.'''
|
|
|
|
PROGRAM = name
|
|
|
|
|
2014-10-29 07:29:42 +03:00
|
|
|
Binary()
|
2014-09-04 04:05:12 +04:00
|
|
|
|
2014-09-03 09:10:54 +04:00
|
|
|
|
|
|
|
@template
|
2014-09-03 09:16:37 +04:00
|
|
|
def SimplePrograms(names, ext='.cpp'):
|
2014-09-03 09:10:54 +04:00
|
|
|
'''Template for simple program executables.
|
|
|
|
|
|
|
|
Those have a single source with the same base name as the executable.
|
|
|
|
'''
|
|
|
|
SIMPLE_PROGRAMS += names
|
2014-09-03 09:16:37 +04:00
|
|
|
SOURCES += ['%s%s' % (name, ext) for name in names]
|
2014-09-03 09:10:54 +04:00
|
|
|
|
2014-10-29 07:29:42 +03:00
|
|
|
Binary()
|
2014-09-04 04:05:12 +04:00
|
|
|
|
2014-09-03 09:10:54 +04:00
|
|
|
|
|
|
|
@template
|
2014-09-03 09:16:37 +04:00
|
|
|
def CppUnitTests(names, ext='.cpp'):
|
2014-09-03 09:10:54 +04:00
|
|
|
'''Template for C++ unit tests.
|
|
|
|
|
|
|
|
Those have a single source with the same base name as the executable.
|
|
|
|
'''
|
2017-09-20 22:43:24 +03:00
|
|
|
COMPILE_FLAGS['EXTRA_INCLUDES'] = ['-I%s/dist/include' % TOPOBJDIR,
|
|
|
|
'-I%s/dist/include/testing' % TOPOBJDIR]
|
2014-09-03 09:10:54 +04:00
|
|
|
CPP_UNIT_TESTS += names
|
2014-09-03 09:16:37 +04:00
|
|
|
SOURCES += ['%s%s' % (name, ext) for name in names]
|
2014-09-03 09:10:54 +04:00
|
|
|
|
2014-10-29 07:29:42 +03:00
|
|
|
Binary()
|
2014-09-04 04:05:12 +04:00
|
|
|
|
2014-09-03 09:10:54 +04:00
|
|
|
|
|
|
|
@template
|
|
|
|
def Library(name):
|
|
|
|
'''Template for libraries.'''
|
|
|
|
LIBRARY_NAME = name
|
|
|
|
|
2018-07-16 20:52:14 +03:00
|
|
|
@template
|
|
|
|
def AllowCompilerWarnings():
|
|
|
|
COMPILE_FLAGS['WARNINGS_AS_ERRORS'] = []
|
2014-09-03 09:10:54 +04:00
|
|
|
|
2018-08-30 20:29:54 +03:00
|
|
|
@template
|
|
|
|
def DisableCompilerWarnings():
|
|
|
|
COMPILE_FLAGS['WARNINGS_CFLAGS'] = []
|
|
|
|
|
2016-08-06 07:49:26 +03:00
|
|
|
@template
|
2018-10-18 13:40:32 +03:00
|
|
|
def RustLibrary(name, features=None, output_category=None):
|
2016-08-06 07:49:26 +03:00
|
|
|
'''Template for Rust libraries.'''
|
|
|
|
Library(name)
|
|
|
|
|
|
|
|
IS_RUST_LIBRARY = True
|
2018-07-16 20:52:14 +03:00
|
|
|
# Some Rust build scripts compile C/C++ sources, don't error on warnings for them.
|
|
|
|
AllowCompilerWarnings()
|
2016-12-02 19:56:43 +03:00
|
|
|
|
2018-08-30 20:29:54 +03:00
|
|
|
# And furthermore, don't even show warnings for them, so they don't regress
|
|
|
|
# the Compiler Warnings build metric
|
|
|
|
# <https://developer.mozilla.org/en-US/docs/Mozilla/Performance/Automated_Performance_Testing_and_Sheriffing/Build_Metrics#compiler_warnings>.
|
|
|
|
DisableCompilerWarnings()
|
|
|
|
|
2016-12-02 19:56:43 +03:00
|
|
|
if features:
|
|
|
|
RUST_LIBRARY_FEATURES = features
|
2016-08-06 07:49:26 +03:00
|
|
|
|
2018-08-10 22:07:29 +03:00
|
|
|
if output_category:
|
|
|
|
RUST_LIBRARY_OUTPUT_CATEGORY = output_category
|
|
|
|
|
2016-08-06 07:49:26 +03:00
|
|
|
|
2014-09-04 04:04:45 +04:00
|
|
|
@template
|
2018-08-10 22:07:29 +03:00
|
|
|
def SharedLibrary(name, output_category=None):
|
2014-09-04 04:04:45 +04:00
|
|
|
'''Template for shared libraries.'''
|
|
|
|
Library(name)
|
|
|
|
|
|
|
|
FORCE_SHARED_LIB = True
|
|
|
|
|
2018-08-10 22:07:29 +03:00
|
|
|
if output_category:
|
|
|
|
SHARED_LIBRARY_OUTPUT_CATEGORY = output_category
|
|
|
|
|
2014-10-29 07:29:42 +03:00
|
|
|
Binary()
|
2014-09-04 04:05:12 +04:00
|
|
|
|
2014-09-04 04:04:45 +04:00
|
|
|
|
|
|
|
@template
|
2018-08-10 22:07:29 +03:00
|
|
|
def Framework(name, output_category=None):
|
2014-09-04 04:04:45 +04:00
|
|
|
'''Template for OSX Frameworks.'''
|
2018-08-10 22:07:29 +03:00
|
|
|
SharedLibrary(name, output_category)
|
2014-09-04 04:04:45 +04:00
|
|
|
|
|
|
|
IS_FRAMEWORK = True
|
|
|
|
|
|
|
|
|
2014-09-04 04:05:12 +04:00
|
|
|
@template
|
Bug 1423802 - Handle stdc++compat and STLPORT_LIBS at the emitter level. r=nalexander
Bug 1256642 introduced magic at the emitter level to determine whether a
binary contains C++ sources and should be linked with the C compiler or
the C++ compiler.
Unfortunately, the Binary() moz.build template always adds C++ OS
libraries on Android (through STLPORT_LIBS), and C++ libraries on Linux
(stdc++compat).
The latter only ends up forcing every Binary() to be linked with the C++
linker, which is unfortunate, but doesn't cause much problems. The
former, however, involving OS libraries, the magic from bug 1256642
doesn't kick in, so we end up trying to link C++ OS libraries with the C
linker. Which ends up failing, because the libraries in STLPORT_LIBS
require -lm, which, while it's added by the C++ compiler when linking,
is not when the linkage is driven by the C compiler.
Because the fallible library, linked to all GeckoBinary()s is a C++
library, we still ended up linking with the C++ compiler on Android, so
this wasn't actually causing any problem... until I tried to remove that
fallible library in bug 1423803.
Anyways, the core problem is that moz.build evaluation is happening too
early to know whether any C++ sources are being linked together, so
there is no way the Binary() template can do the right thing. So this
change moves the logic to the emitter.
This also changes the type of STLPORT_LIBS to a list.
--HG--
extra : rebase_source : a70ddf7a132f94dc10e7e1db94ae80fb8d7a269f
2017-12-07 06:15:32 +03:00
|
|
|
def HostProgram(name):
|
2014-09-03 09:10:54 +04:00
|
|
|
'''Template for build tools executables.'''
|
|
|
|
HOST_PROGRAM = name
|
|
|
|
|
|
|
|
|
|
|
|
@template
|
2014-09-03 09:16:37 +04:00
|
|
|
def HostSimplePrograms(names, ext='.cpp'):
|
2014-09-03 09:10:54 +04:00
|
|
|
'''Template for simple build tools executables.
|
|
|
|
|
|
|
|
Those have a single source with the same base name as the executable.
|
|
|
|
'''
|
|
|
|
HOST_SIMPLE_PROGRAMS += names
|
2014-09-03 09:16:37 +04:00
|
|
|
HOST_SOURCES += ['%s%s' % (name.replace('host_', ''), ext)
|
|
|
|
for name in names]
|
2014-09-03 09:10:54 +04:00
|
|
|
|
|
|
|
|
2018-07-05 08:58:09 +03:00
|
|
|
@template
|
|
|
|
def HostSharedLibrary(name):
|
|
|
|
'''Template for build tools libraries.'''
|
|
|
|
if name != 'clang-plugin':
|
|
|
|
error('Please make sure host shared library support is complete '
|
|
|
|
'before using for something else than the clang plugin')
|
|
|
|
|
|
|
|
HOST_LIBRARY_NAME = name
|
|
|
|
|
|
|
|
FORCE_SHARED_LIB = True
|
|
|
|
|
2014-09-03 09:10:54 +04:00
|
|
|
@template
|
|
|
|
def HostLibrary(name):
|
|
|
|
'''Template for build tools libraries.'''
|
|
|
|
HOST_LIBRARY_NAME = name
|
|
|
|
|
2017-01-20 01:58:10 +03:00
|
|
|
@template
|
|
|
|
def HostRustLibrary(name, features=None):
|
|
|
|
'''Template for host Rust libraries.'''
|
|
|
|
HostLibrary(name)
|
|
|
|
|
|
|
|
IS_RUST_LIBRARY = True
|
2018-07-16 20:52:14 +03:00
|
|
|
# Some Rust build scripts compile C/C++ sources, don't error on warnings for them.
|
|
|
|
AllowCompilerWarnings()
|
2017-01-20 01:58:10 +03:00
|
|
|
|
|
|
|
if features:
|
|
|
|
HOST_RUST_LIBRARY_FEATURES = features
|
|
|
|
|
2017-04-29 02:35:19 +03:00
|
|
|
@template
|
|
|
|
def DisableStlWrapping():
|
|
|
|
COMPILE_FLAGS['STL'] = []
|
|
|
|
|
2017-09-11 21:36:31 +03:00
|
|
|
@template
|
|
|
|
def NoVisibilityFlags():
|
|
|
|
COMPILE_FLAGS['VISIBILITY'] = []
|
|
|
|
|
2018-05-23 06:36:39 +03:00
|
|
|
@template
|
|
|
|
def ForceInclude(*headers):
|
|
|
|
"""Force includes a set of header files in C++ compilations"""
|
|
|
|
if CONFIG['CC_TYPE'] in ('msvc', 'clang-cl'):
|
|
|
|
include_flag = '-FI'
|
|
|
|
else:
|
|
|
|
include_flag = '-include'
|
|
|
|
for header in headers:
|
|
|
|
CXXFLAGS += [include_flag, header]
|
|
|
|
|
2014-10-30 07:06:12 +03:00
|
|
|
include('gecko_templates.mozbuild')
|
2015-12-14 22:50:56 +03:00
|
|
|
include('test_templates.mozbuild')
|