We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca57d11 commit fb53316Copy full SHA for fb53316
test/fuzz/meson.build
@@ -7,10 +7,11 @@ sanitize_address_undefined = custom_target(
7
project_source_root,
8
'@OUTPUT@',
9
'fuzzers',
10
- '-Dfuzz-tests=true -Db_lundef=false -Db_sanitize=address,undefined --optimization=@0@ @1@ -Dc_args=@2@ -Dcpp_args=@2@'.format(
+ '-Dfuzz-tests=true -Db_lundef=false -Db_sanitize=address,undefined --optimization=@0@ @1@ -Dc_args=@2@ -Dcpp_args=@2@ -Dskip-deps=@3@'.format(
11
get_option('optimization'),
12
get_option('werror') ? '--werror' : '',
13
- '-DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION'
+ '-DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION',
14
+ get_option('skip-deps')
15
),
16
' '.join(cc.cmd_array()),
17
cxx_cmd])
0 commit comments