diff options
author | Matt A. Tobin <email@mattatobin.com> | 2021-01-03 03:11:57 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2021-01-03 03:11:57 -0500 |
commit | eb3d71486c45e02121d52ae6f606158fb9a653c7 (patch) | |
tree | 0850f017e35264bc238ae16708a47bc4d3ba282d | |
parent | eeeb4b4494690dd7d74f6ef7e6488a1cb740db96 (diff) | |
parent | a625decfc91a0e973392c6d4f3339ff6b0615741 (diff) | |
download | uxp-eb3d71486c45e02121d52ae6f606158fb9a653c7.tar.gz |
Merge branch 'master' into freebsd-supportfreebsd-support
-rw-r--r-- | security/nss/coreconf/config.mk | 28 |
1 files changed, 5 insertions, 23 deletions
diff --git a/security/nss/coreconf/config.mk b/security/nss/coreconf/config.mk index f071dab367..867dd5e88f 100644 --- a/security/nss/coreconf/config.mk +++ b/security/nss/coreconf/config.mk @@ -139,29 +139,11 @@ endif ####################################################################### # Master "Core Components" macros for Hardware features # ####################################################################### -ifndef NSS_DISABLE_AVX2 - ifneq ($(CPU_ARCH),x86_64) - # Disable AVX2 entirely on non-Intel platforms - NSS_DISABLE_AVX2 = 1 - $(warning CPU_ARCH is not x86_64, disabling -mavx2) - else - # Clang reports its version as an older gcc, but it's OK - ifndef CC_IS_CLANG - ifneq (,$(filter 0 1 2 3,$(word 1,$(GCC_VERSION)))) - NSS_DISABLE_AVX2 = 1 - endif - ifeq (4,$(word 1,$(GCC_VERSION))) - ifeq (,$(filter 8 9,$(word 2,$(GCC_VERSION)))) - NSS_DISABLE_AVX2 = 1 - endif - endif - endif - ifeq (1,$(NSS_DISABLE_AVX2)) - $(warning Unable to find gcc 4.8 or greater, disabling -mavx2) - export NSS_DISABLE_AVX2 - endif - endif -endif #ndef NSS_DISABLE_AVX2 +# NSS Build system does not properly support MozillaBuild 2 MSYS1 +# So we simply aren't going to enable AVX2 at all +# Plus there seems to be an issue with it anyway for other reasons +NSS_DISABLE_AVX2 = 1 +export NSS_DISABLE_AVX2 ####################################################################### # [15.0] Dependencies. |