Browse Source

Merge pull request #1987 from martin-frbg/issue1961

Change ARMV8 target with BINARY=32 to ARMV7 automatically
tags/v0.3.6^2
Martin Kroeker GitHub 7 years ago
parent
commit
89b60dab8a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions
  1. +3
    -0
      Makefile.system
  2. +3
    -0
      cmake/system.cmake

+ 3
- 0
Makefile.system View File

@@ -95,6 +95,9 @@ endif
ifeq ($(TARGET), ZEN)
GETARCH_FLAGS := -DFORCE_BARCELONA
endif
ifeq ($(TARGET), ARMV8)
GETARCH_FLAGS := -DFORCE_ARMV7
endif
endif




+ 3
- 0
cmake/system.cmake View File

@@ -39,6 +39,9 @@ if (DEFINED BINARY AND DEFINED TARGET AND BINARY EQUAL 32)
if (${TARGET} STREQUAL "BULLDOZER" OR ${TARGET} STREQUAL "PILEDRIVER" OR ${TARGET} STREQUAL "ZEN")
set(TARGET "BARCELONA")
endif ()
if (${TARGET} STREQUAL "ARMV8" OR ${TARGET} STREQUAL "CORTEXA57" OR ${TARGET} STREQUAL "CORTEXA53")
set(TARGET "ARMV7")
endif ()
endif ()

if (DEFINED TARGET)


Loading…
Cancel
Save