Last active
February 16, 2022 03:35
-
-
Save JohnnyonFlame/8d6d0562345cbfed35746ac2ffd08aa1 to your computer and use it in GitHub Desktop.
Simple meson cross-build file for aarch64
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
[binaries] | |
c = 'aarch64-linux-gnu-gcc' | |
cpp = 'aarch64-linux-gnu-g++' | |
ld = 'aarch64-linux-gnu-ld' | |
ar = 'aarch64-linux-gnu-ar' | |
as = 'aarch64-linux-gnu-as' | |
size = 'aarch64-linux-gnu-size' | |
objdump = 'aarch64-linux-gnu-objdump' | |
objcopy = 'aarch64-linux-gnu-objcopy' | |
strip = 'aarch64-linux-gnu-strip' | |
gdb = 'aarch64-linux-gnu-gdb' | |
pkgconfig = 'aarch64-linux-gnu-pkg-config' | |
[host_machine] | |
system = 'linux' | |
cpu_family = 'arm' | |
cpu = 'cortex-a35' | |
endian = 'little' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment