Browse Source

Merge 8450c13fb1 into 06c09deee9

pull/1752/merge
Sacha GitHub 5 months ago
parent
commit
d2ae5fe70f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      cmake/system.cmake

+ 4
- 0
cmake/system.cmake View File

@@ -40,6 +40,10 @@ if(CMAKE_CROSSCOMPILING AND NOT DEFINED TARGET)
set(TARGET "ARMV8")
elseif(ARM)
set(TARGET "ARMV7") # TODO: Ask compiler which arch this is
elseif(X86_64)
set(TARGET "PENRYN")
elseif(X86)
set(TARGET "CORE2")
else()
message(FATAL_ERROR "When cross compiling, a TARGET is required.")
endif()


Loading…
Cancel
Save