This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Rewrite $. entry and switch to -> syntax
[perl5.git] / vos / compile_perl.cm
CommitLineData
24e8e380
GS
1& This command macro creates the appropriate subdirectory
2& for the specified processor type and then runs the
3& build macro in that subdirectory to create the perl
4& executable program module file.
5& Written 99-02-03 by Paul Green (Paul_Green@stratus.com)
5b8c1387 6& Modified 00-10-24 by Paul Green
24e8e380
GS
7&
8&begin_parameters
5b8c1387 9 cpu option(-processor)name,allow(mc68020,i80860,pa7100,pa8000),=pa7100
24e8e380
GS
10 recompile switch(-recompile),=1
11 rebind switch(-rebind),=1
12 module option(-module)module_name,='(current_module)'
5b8c1387
JH
13 tgt_mod option(-target_module)module_name,='(current_module)'
14 version option(-version)name,allow(alpha,ga),=ga
0d6ca59a 15 compiler option(-compiler)name,allow(cc,gcc)=cc
24e8e380 16&end_parameters
495c5fdc 17&echo command_lines
24e8e380
GS
18&
19&if &recompile&
20&then &set_string recompile -recompile
21&else &set_string recompile -no_recompile
22&
23&if &rebind&
24&then &set_string rebind -rebind
25&else &set_string rebind -no_rebind
26&
27&if &cpu& = mc68020
28&then &set_string obj ''
29&if &cpu& = i80860
30&then &set_string obj .860
31&if &cpu& = pa7100
32&then &set_string obj .7100
33&if &cpu& = pa8000
34&then &set_string obj .8000
35&
0d6ca59a
JH
36&if &compiler& = gcc & &version& = alpha
37&then &do
38 &display_line GCC is not supported by the alpha version of POSIX support.
39 &return e$translation_failed
40&end
24e8e380
GS
41&if ^ (exists obj&obj& -directory)
42&then !create_dir obj&obj&
43&
44&if ^ (exists obj&obj&>build.out)
45&then !create_file obj&obj&>build.out ; set_implicit_locking obj&obj&>build.out
46&
5b8c1387
JH
47!configure_perl -version &version&
48&
24e8e380 49!change_current_dir obj&obj&
5b8c1387 50!start_process (string <build -processor &cpu& &recompile& &rebind& &+
0d6ca59a
JH
51 -target_module &tgt_mod& -version &version& -compiler &compiler&) &+
52 -module &module&
495c5fdc 53!change_current_dir <