-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #36 - Separate ARM and ARM SVE tags and add SVE2 detectors
- Loading branch information
Showing
6 changed files
with
114 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
##================================================================================================== | ||
## SPY - C++ Informations Broker | ||
## Copyright : SPY Project Contributors | ||
## SPDX-License-Identifier: BSL-1.0 | ||
##================================================================================================== | ||
set(CMAKE_SYSTEM_NAME Linux) | ||
set(CMAKE_SYSTEM_PROCESSOR arm) | ||
|
||
set(CMAKE_C_COMPILER aarch64-linux-gnu-gcc-12 ) | ||
set(CMAKE_CXX_COMPILER aarch64-linux-gnu-g++-12 ) | ||
set(CMAKE_CXX_FLAGS "-march=armv8-a+sve2 -msve-vector-bits=512" ) | ||
|
||
set(CMAKE_CROSSCOMPILING_CMD qemu-aarch64) |