Bug 1082987 - Never use the debug runtime libraries for Windows ASAN builds; r=glandium

This is a non-supported AddressSanitizer configurations, and it
will fail the build.
This commit is contained in:
Ehsan Akhgari 2014-10-16 09:13:27 -04:00
parent 4aa24b266c
commit 1259e667ec

View File

@ -122,7 +122,7 @@ MOZ_ARG_ENABLE_STRING(debug,
fi ],
MOZ_DEBUG=)
if test -z "$MOZ_DEBUG"; then
if test -z "$MOZ_DEBUG" -o -n "$MOZ_ASAN"; then
MOZ_NO_DEBUG_RTL=1
fi