mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 23:38:38 +09:00
Merge remote-tracking branch 'origin/master' into custom
This commit is contained in:
commit
ebaff2c498
2 changed files with 10 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 }
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue