We will need a few more patches to really support ARM64 builds. Once I get
things working I’ll add a pull request.
Most likely I will release a SlikSvn client release for ARM64 with that support
if everything comes together… But cross compiling on Windows is quite new for
most of our dependencies, and ARM64 is new as well so most dependencies need
patches (except for those building via CMake)
Bert
Van: Nathan Hartman <[email protected]>
Verzonden: woensdag 26 mei 2021 15:00
Aan: [email protected]
Onderwerp: Re: svn commit: r1890223 -
/subversion/trunk/subversion/svn_private_config.hw
On Wed, May 26, 2021 at 8:31 AM <[email protected]
<mailto:[email protected]> > wrote:
Author: rhuijben
Date: Wed May 26 12:31:05 2021
New Revision: 1890223
URL: http://svn.apache.org/viewvc?rev=1890223
<http://svn.apache.org/viewvc?rev=1890223&view=rev> &view=rev
Log:
* subversion/svn_private_config.hw
Properly identify Windows on ARM/ARM64, instead of breaking the build.
Modified:
subversion/trunk/subversion/svn_private_config.hw
Modified: subversion/trunk/subversion/svn_private_config.hw
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/svn_private_config.hw?rev=1890223
<http://svn.apache.org/viewvc/subversion/trunk/subversion/svn_private_config.hw?rev=1890223&r1=1890222&r2=1890223&view=diff>
&r1=1890222&r2=1890223&view=diff
==============================================================================
--- subversion/trunk/subversion/svn_private_config.hw (original)
+++ subversion/trunk/subversion/svn_private_config.hw Wed May 26 12:31:05 2021
@@ -39,6 +39,10 @@
#define SVN_BUILD_TARGET "ia64-microsoft-windows"
#elif defined( _M_IX86)
#define SVN_BUILD_TARGET "x86-microsoft-windows"
+#elif defined(_M_ARM64)
+#define SVN_BUILD_TARGET "arm64-microsoft-windows"
+#elif defined(_M_ARM)
+#define SVN_BUILD_TARGET "arm-microsoft-windows"
#else
#error Unsupported build target.
#endif
This looks like it should be nominated for backport, though I don't have an ARM
Windows machine to test with.
Nathan