mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
d6175dcca7
A native x86_64 C compiler has appeared. We preserve the previous config target with a new name to indicate that it's for cross compilation, at least for the time being. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20983)
15 lines
420 B
Perl
15 lines
420 B
Perl
## -*- mode: perl; -*-
|
|
|
|
# OpenVMS cross compilation of x86_64 binaries on Itanium. This doesn't
|
|
# fit the usual cross compilation parameters that are used on Unixly machines
|
|
|
|
(
|
|
'vms-x86_64-cross-ia64' => {
|
|
inherit_from => [ 'vms-generic' ],
|
|
CC => 'XCC',
|
|
bn_ops => 'SIXTY_FOUR_BIT',
|
|
pointer_size => '',
|
|
setup_commands => [ '@SYS$MANAGER:X86_XTOOLS$SYLOGIN.COM' ],
|
|
}
|
|
);
|