On Wed, May 26, 2021 at 8:31 AM <rhuij...@apache.org> wrote: > Author: rhuijben > Date: Wed May 26 12:31:05 2021 > New Revision: 1890223 > > URL: http://svn.apache.org/viewvc?rev=1890223&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&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