From: Richard Levitte Date: Wed, 20 Dec 2023 07:25:22 +0000 (+0100) Subject: VMS: Add the missing -p32 and -p64 variants for x86_64 X-Git-Tag: openssl-3.1.5~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=143a0915e34553912ee37331b189e78096861bfb;p=thirdparty%2Fopenssl.git VMS: Add the missing -p32 and -p64 variants for x86_64 The pointer size support is already in the code, and is present for all other supported hardwares. Fixes #22899 Reviewed-by: Tomas Mraz Reviewed-by: Tom Cosgrove (Merged from https://github.com/openssl/openssl/pull/23081) (cherry picked from commit a43f253d586279b5d96fffcaf1b26c7a2b0dd938) --- diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf index c6c1814d3a3..0baa0a440b2 100644 --- a/Configurations/10-main.conf +++ b/Configurations/10-main.conf @@ -2019,5 +2019,15 @@ my %targets = ( inherit_from => [ "vms-generic" ], bn_ops => "SIXTY_FOUR_BIT", pointer_size => "", + }, + "vms-x86_64-p32" => { + inherit_from => [ "vms-x86_64" ], + cflags => add("/POINTER_SIZE=32"), + pointer_size => "32", + }, + "vms-x86_64-p64" => { + inherit_from => [ "vms-x86_64" ], + cflags => add("/POINTER_SIZE=64=ARGV"), + pointer_size => "64", } );