cpp is a really bad alias for c++ because it's also the name of the
preprocessor. Let's rename the variable.
if cxx.found()
# Used only for tests
add_languages('cpp')
- cpp_cmd = ' '.join(meson.get_compiler('cpp').cmd_array())
+ cxx_cmd = ' '.join(meson.get_compiler('cpp').cmd_array())
else
- cpp_cmd = ''
+ cxx_cmd = ''
endif
want_ossfuzz = get_option('oss-fuzz')
'fuzzers',
'-Db_lundef=false -Db_sanitize=address',
' '.join(cc.cmd_array()),
- cpp_cmd])
+ cxx_cmd])
sanitizers = [['address', sanitize_address]]