Browse Source

Fix accuracy problem with generic kernels on x86_64

fixes #2257, which was caused by #2051.
pull/2258/head
Martin Kroeker GitHub 6 years ago
parent
commit
6acaa1ea2c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      kernel/Makefile.L3

+ 6
- 0
kernel/Makefile.L3 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


Loading…
Cancel
Save