зеркало из https://github.com/mozilla/gecko-dev.git
96 строки
3.0 KiB
Python
96 строки
3.0 KiB
Python
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# 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/.
|
|
|
|
SharedLibrary('clang-plugin')
|
|
|
|
SOURCES += ['!ThirdPartyPaths.cpp']
|
|
|
|
UNIFIED_SOURCES += [
|
|
'ArithmeticArgChecker.cpp',
|
|
'AssertAssignmentChecker.cpp',
|
|
'CanRunScriptChecker.cpp',
|
|
'CustomTypeAnnotation.cpp',
|
|
'DanglingOnTemporaryChecker.cpp',
|
|
'DiagnosticsMatcher.cpp',
|
|
'ExplicitImplicitChecker.cpp',
|
|
'ExplicitOperatorBoolChecker.cpp',
|
|
'KungFuDeathGripChecker.cpp',
|
|
'MozCheckAction.cpp',
|
|
'MustOverrideChecker.cpp',
|
|
'MustReturnFromCallerChecker.cpp',
|
|
'MustUseChecker.cpp',
|
|
'NaNExprChecker.cpp',
|
|
'NeedsNoVTableTypeChecker.cpp',
|
|
'NoAddRefReleaseOnReturnChecker.cpp',
|
|
'NoAutoTypeChecker.cpp',
|
|
'NoDuplicateRefCntMemberChecker.cpp',
|
|
'NoExplicitMoveConstructorChecker.cpp',
|
|
'NonMemMovableMemberChecker.cpp',
|
|
'NonMemMovableTemplateArgChecker.cpp',
|
|
'NonParamInsideFunctionDeclChecker.cpp',
|
|
'OverrideBaseCallChecker.cpp',
|
|
'OverrideBaseCallUsageChecker.cpp',
|
|
'ParamTraitsEnumChecker.cpp',
|
|
'RefCountedCopyConstructorChecker.cpp',
|
|
'RefCountedInsideLambdaChecker.cpp',
|
|
'ScopeChecker.cpp',
|
|
'SprintfLiteralChecker.cpp',
|
|
'TrivialCtorDtorChecker.cpp',
|
|
'VariableUsageHelpers.cpp',
|
|
]
|
|
|
|
if CONFIG['ENABLE_MOZSEARCH_PLUGIN']:
|
|
UNIFIED_SOURCES += [
|
|
'mozsearch-plugin/FileOperations.cpp',
|
|
'mozsearch-plugin/JSONFormatter.cpp',
|
|
'mozsearch-plugin/MozsearchIndexer.cpp',
|
|
'mozsearch-plugin/StringOperations.cpp',
|
|
]
|
|
|
|
GENERATED_FILES += ['ThirdPartyPaths.cpp']
|
|
third_party_paths = GENERATED_FILES['ThirdPartyPaths.cpp']
|
|
third_party_paths.script = "ThirdPartyPaths.py:generate"
|
|
third_party_paths.inputs = [
|
|
'/tools/rewriting/ThirdPartyPaths.txt',
|
|
]
|
|
|
|
DisableStlWrapping()
|
|
NoVisibilityFlags()
|
|
|
|
# libc++ is required to build plugins against clang on OS X.
|
|
if CONFIG['HOST_OS_ARCH'] == 'Darwin':
|
|
CXXFLAGS += ['-stdlib=libc++']
|
|
LDFLAGS += ['-lc++']
|
|
|
|
DIRS += [
|
|
'tests',
|
|
]
|
|
|
|
|
|
# In the current moz.build world, we need to override essentially every
|
|
# variable to limit ourselves to what we need to build the clang plugin.
|
|
if CONFIG['HOST_OS_ARCH'] == 'WINNT':
|
|
extra_cxxflags = ['-GR-', '-EHsc']
|
|
else:
|
|
extra_cxxflags = ['-fno-rtti', '-fno-exceptions']
|
|
|
|
if CONFIG['LLVM_CXXFLAGS']:
|
|
COMPILE_FLAGS['OS_CXXFLAGS'] = CONFIG['LLVM_CXXFLAGS'] + extra_cxxflags
|
|
|
|
COMPILE_FLAGS['CLANG_PLUGIN'] = []
|
|
COMPILE_FLAGS['OPTIMIZE'] = []
|
|
COMPILE_FLAGS['DEBUG'] = []
|
|
COMPILE_FLAGS['OS_COMPILE_CXXFLAGS'] = []
|
|
|
|
LINK_FLAGS['OS'] = CONFIG['LLVM_LDFLAGS'] + CONFIG['CLANG_LDFLAGS']
|
|
# The ldflags above override most other categories.
|
|
for var in ('LINKER', 'OPTIMIZE'):
|
|
LINK_FLAGS[var] = []
|
|
|
|
if CONFIG['HOST_OS_ARCH'] == 'Linux' and CONFIG['OS_ARCH'] == 'Darwin':
|
|
# Don't pass OSX linker arguments.
|
|
LINK_FLAGS['FIX_LINK_PATHS'] = []
|