bug 1475278 - don't use rust demangle in Breakpad when building with tup. r=mshal

MozReview-Commit-ID: I7YQbfzBo0p
This commit is contained in:
Ted Mielczarek 2018-07-12 12:47:17 -04:00
parent ee9dbcb8e0
commit 7d0f5a44b5

View File

@ -52,7 +52,9 @@ if CONFIG['OS_ARCH'] != 'WINNT':
'-O2',
'-g',
]
HOST_DEFINES['HAVE_RUST_DEMANGLE'] = True
# The tup build doesn't currently link this properly: bug 1475278
if 'Tup' not in CONFIG['BUILD_BACKENDS']:
HOST_DEFINES['HAVE_RUST_DEMANGLE'] = True
LOCAL_INCLUDES += [
'/toolkit/crashreporter/rust',
]