Merge remote-tracking branch 'origin/master' into custom

This commit is contained in:
Roy Tam 2019-09-20 22:22:16 +08:00
commit ebaff2c498
2 changed files with 10 additions and 2 deletions

View file

@ -176,8 +176,13 @@ if test "$GNU_CC"; then
CFLAGS="$CFLAGS -ffunction-sections -fdata-sections"
CXXFLAGS="$CXXFLAGS -ffunction-sections -fdata-sections"
fi
CFLAGS="$CFLAGS -fno-math-errno -msse2 -mfpmath=sse"
CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-math-errno -msse2 -mfpmath=sse"
CFLAGS="$CFLAGS -fno-math-errno"
CXXFLAGS="$CXXFLAGS -fno-exceptions -fno-math-errno"
if test "$CPU_ARCH" = "x86" -o "$CPU_ARCH" = "x86_64"; then
CFLAGS="$CFLAGS -msse2 -mfpmath=sse"
CXXFLAGS="$CXXFLAGS -msse2 -mfpmath=sse"
fi
if test -z "$CLANG_CC"; then
case "$CC_VERSION" in

View file

@ -231,6 +231,9 @@ static DllBlockInfo sWindowsDllBlocklist[] = {
// Comodo IS old versions, startup crash on 64-bit, bug 1140397
{ "guard64.dll", MAKE_VERSION(6, 3, 0, 0) },
// 360 Safeguard/360 Total Security causes a11y crashes, bug 1536227.
{ "safemon64.dll", ALL_VERSIONS },
{ nullptr, 0 }
};