Bug 1188045: Don't delayload xul.dll or nss3.dll on clang-cl builds. r=glandium

This commit is contained in:
David Major 2015-09-08 15:07:45 -04:00
parent 9d4dac1765
commit e51173dfce

View File

@ -57,10 +57,15 @@ if CONFIG['MOZ_SANDBOX'] and CONFIG['OS_ARCH'] == 'WINNT':
'rlz',
'sandbox_staticruntime_s',
]
DELAYLOAD_DLLS += [
'nss3.dll',
'xul.dll'
]
# clang-cl can't deal with this delay-load due to bug 1188045
# (also filed as https://llvm.org/bugs/show_bug.cgi?id=24291)
if not CONFIG['CLANG_CL']:
DELAYLOAD_DLLS += [
'nss3.dll',
'xul.dll'
]
DEFINES['HASH_NODE_ID_WITH_DEVICE_ID'] = 1;
SOURCES += [
'sha256.c',