RAD Studio 13.1 compiles applications for Win64-ARM64EC now. TaurusTLS supports this and provides compiled OpenSSL binaries for this. I think DefaultLibVersions should reflect this. Here's what I have for the Windows platform.
{$IFDEF WINDOWS}
{$IFDEF CPU64}
{$IFDEF CPUARM64}
DefaultLibVersions = '-4-arm64;-3-arm64;-1_1-arm64;-1-arm64;';
{$ELSE}
DefaultLibVersions = '-4-x64;-3-x64;-1_1-x64;-1-x64;';
{$ENDIF}
{$ENDIF}
{$IFDEF CPU32}
DefaultLibVersions = '-4;-3;-1_1;-1;';
{$ENDIF}
{$ENDIF}
RAD Studio 13.1 compiles applications for Win64-ARM64EC now. TaurusTLS supports this and provides compiled OpenSSL binaries for this. I think DefaultLibVersions should reflect this. Here's what I have for the Windows platform.