This PR adds a common host-platform-triplet
example for ARM macOS.
Master: render
PR: render
x86_64-apple-darwin18
is the correct triplet. It’s aligned with macOS 10.14, which is our minimum supported version.
what about the macOS arm triplet?
That should be fine to add. Can you make it arm-apple-darwin20
? I have no hardware to test any of those builds, but I think @jonasschnelli has been doing them.
Add a common host-platform-triplet example for ARM macOS.
updated from 3c04b29 to 2c11d28
changes:
Intel macOS
darwin20
24@@ -25,7 +25,8 @@ Common `host-platform-triplets` for cross compilation are:
25 - `i686-pc-linux-gnu` for Linux 32 bit
26 - `x86_64-pc-linux-gnu` for x86 Linux
27 - `x86_64-w64-mingw32` for Win64
28-- `x86_64-apple-darwin18` for macOS
29+- `x86_64-apple-darwin18` for Intel macOS
30+- `arm-apple-darwin20` for ARM macOS
aarch64
? arm
is 32 bit ARM
arm-apple-darwin
works. It should be aarch64, I agree, but somehow it’s not.
arm-apple-darwin20
cross compilation does currently not work due to cctools/etc. not supporting it. We should add it in the same patch as adding apple-arm cross compilation support in the toolchain.