Replies: 2 comments 4 replies
-
I think there is some work under way by @kalibera to experiment with a cross compiler but in general it is often impractical to cross compile R packages. This is because during several steps of the build process, R has to load and run some of the binaries it just built, and of course this does not work for binaries that were built for a target that cannot run on the host platform. Either way it is not up to me but up to the maintainer of rtools (Tomas Kalibera) to figure out if this is something that R could support. |
Beta Was this translation helpful? Give feedback.
-
FYI, GitHub already announced their plan to support ARM Windows GitHub Actions runner. So, I think we can just wait. As GitHub is owned by Microsoft, I guess they are not very slow at things related to Windows.
|
Beta Was this translation helpful? Give feedback.
-
Given the fantastic existing work that went into developing MacOS ARM64 cross-compiling, would any of that translate to cross-compiling binaries for Windows ARM64?
Given that the LLVM toolchain is itself cross-compiled for an aarch64 host and aarch64 target, it could alternatively be cross-compiled for an x86_64 host with an aarch64 target - so that a similar process as the current Macos approach could be used.
Beta Was this translation helpful? Give feedback.
All reactions