diff options
author | Eric Engestrom <[email protected]> | 2019-01-03 15:44:42 +0000 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-01-03 18:53:21 +0000 |
commit | 8b363bc42e32c67ceeaa4affd7bf346c14ed2825 (patch) | |
tree | 3ed6aeb1492efa355c6329edb8e26351ccab1f7c /docs/meson.html | |
parent | 6a9be6fc0c683bb5382d83737494f63b36c26187 (diff) |
docs: fix the meson aarch64 cross-file
`gcc-ar` is preferred over the generic `ar`, and the `arm` family is
for 32-bit ARM [1].
[1] https://mesonbuild.com/Reference-tables.html#cpu-families
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'docs/meson.html')
-rw-r--r-- | docs/meson.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/meson.html b/docs/meson.html index 3bef8083f9b..89a19dd2741 100644 --- a/docs/meson.html +++ b/docs/meson.html @@ -286,14 +286,14 @@ endian = 'little' [binaries] c = '/usr/bin/aarch64-linux-gnu-gcc' cpp = '/usr/bin/aarch64-linux-gnu-g++' -ar = '/usr/bin/aarch64-linux-gnu-ar' +ar = '/usr/bin/aarch64-linux-gnu-gcc-ar' strip = '/usr/bin/aarch64-linux-gnu-strip' pkgconfig = '/usr/bin/aarch64-linux-gnu-pkg-config' exe_wrapper = '/usr/bin/qemu-aarch64-static' [host_machine] system = 'linux' -cpu_family = 'arm' +cpu_family = 'aarch64' cpu = 'aarch64' endian = 'little' </pre> |