Fix accuracy problem with generic kernels on x86_64

fixes #2257, which was caused by #2051.
This commit is contained in:
Martin Kroeker 2019-09-13 14:05:46 +02:00 committed by GitHub
parent 2a1911cc14
commit 6acaa1ea2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -24,9 +24,15 @@ ifeq ($(TARGET), LOONGSON3B)
USE_TRMM = 1
endif
ifeq ($(DYNAMIC_ARCH), 1)
ifeq ($(CORE), GENERIC)
USE_TRMM = 1
endif
else
ifeq ($(TARGET), GENERIC)
USE_TRMM = 1
endif
endif
ifeq ($(CORE), HASWELL)
USE_TRMM = 1