fune/tools/fuzzing/libfuzzer/moz.build
Chris Manchester e84068a5db Bug 1411712 - Move libfuzzer ldflags filtering to moz.build. r=mshal
MozReview-Commit-ID: 50aeTifZ1gT

--HG--
extra : rebase_source : b89709f4bb5027061ab8da0fee0e864d4f25bb97
2017-11-02 11:47:49 -07:00

54 lines
1.6 KiB
Python

# -*- Mode: python; c-basic-offset: 4; 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/.
Library('fuzzer')
DIRS += [
'harness',
]
SOURCES += [
'FuzzerCrossOver.cpp',
'FuzzerDriver.cpp',
'FuzzerExtFunctionsDlsym.cpp',
'FuzzerExtFunctionsDlsymWin.cpp',
'FuzzerExtFunctionsWeak.cpp',
'FuzzerExtFunctionsWeakAlias.cpp',
'FuzzerExtraCounters.cpp',
'FuzzerIO.cpp',
'FuzzerIOPosix.cpp',
'FuzzerIOWindows.cpp',
'FuzzerLoop.cpp',
'FuzzerMerge.cpp',
'FuzzerMutate.cpp',
'FuzzerSHA1.cpp',
'FuzzerShmemPosix.cpp',
'FuzzerShmemWindows.cpp',
'FuzzerTracePC.cpp',
'FuzzerTraceState.cpp',
'FuzzerUtil.cpp',
'FuzzerUtilDarwin.cpp',
'FuzzerUtilLinux.cpp',
'FuzzerUtilPosix.cpp',
'FuzzerUtilWindows.cpp'
]
if CONFIG['CLANG_CXX']:
CXXFLAGS += ['-Wno-unreachable-code-return']
# According to the LLVM docs, LibFuzzer isn't supposed to be built with any
# sanitizer flags and in fact, building it with ASan coverage currently causes
# Clang 3.9+ to crash, so we filter out all sanitizer-related flags here.
for flags_var in ('OS_CFLAGS', 'OS_CXXFLAGS'):
COMPILE_FLAGS[flags_var] = [
f for f in COMPILE_FLAGS.get(flags_var, [])
if not f.startswith('-fsanitize')
]
LINK_FLAGS['OS'] = [
f for f in LINK_FLAGS.get('OS', [])
if not f.startswith('-fsanitize')
]