diff options
Diffstat (limited to 'Configurations/10-main.conf')
-rw-r--r-- | Configurations/10-main.conf | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf index 7fb0fda866..2a047caa7d 100644 --- a/Configurations/10-main.conf +++ b/Configurations/10-main.conf @@ -2125,5 +2125,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", } ); |