-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathaarch64.yaml
More file actions
27 lines (22 loc) · 926 Bytes
/
aarch64.yaml
File metadata and controls
27 lines (22 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# SPDX-FileCopyrightText: 2023 AerynOS Developers
# SPDX-License-Identifier: MPL-2.0
# Provides -m64 builds for aarch64 build-hosts
definitions:
- libsuffix : ""
- build_platform : aarch64-%(vendorID)
- host_platform : aarch64-%(vendorID)
- cc : "%(compiler_c)"
- cxx : "%(compiler_cxx)"
- cpp : "%(compiler_cpp)"
- march : armv8-a+simd+fp+crypto
- mtune : cortex-a72.cortex-a53
- target_triple : "aarch64-unknown-linux-gnu"
flags:
# Set architecture flags
- architecture:
llvm:
c : "-march=armv8-a+simd+fp+crypto -mtune=cortex-a72"
cxx : "-march=armv8-a+simd+fp+crypto -mtune=cortex-a72"
gcc:
c : "-march=armv8-a+simd+fp+crypto -mtune=cortex-a72.cortex-a53"
cxx : "-march=armv8-a+simd+fp+crypto -mtune=cortex-a72.cortex-a53"