The standalone Scudo version is being built with -Werror which can be
tripped by extraneous command line arguments. We have little control over
those as they can be passed down to us by CMAKE_C(XX)_FLAGS, the reported
scenario involving -stdlib=libc++ (see https://reviews.llvm.org/D57412#1384504).
To work around this, disable -Wunused-command-line-argument.
This behavior could (or even should) depend on COMPILER_RT_ENABLE_WERROR.