1## -*- mode: perl; -*-
2
3# OpenVMS for x86_64 is currently out on a field test.  A native C compiler
4# is currently not available, but there are cross-compilation tools for
5# OpenVMS for Itanium.  This configuration file holds the necessary target(s)
6# to make that useful.
7#
8# The assumption is that *building* is done on Itanium, and then the source
9# tree and build tree are transferred to x86_64, where tests can be performed,
10# and installation can be done.
11
12(
13 'vms-x86_64' => {
14     inherit_from   => [ 'vms-generic' ],
15     CC             => 'XCC',
16     bn_ops         => 'SIXTY_FOUR_BIT',
17     pointer_size   => '',
18     setup_commands => [ '@SYS$MANAGER:X86_XTOOLS$SYLOGIN.COM' ],
19 }
20);
21