2 $! This file sets things up to build gas on a VMS system to generate object
3 $! files for a VMS system. We do not use the configure script, since we
4 $! do not have /bin/sh to execute it.
6 $! If you are running this file, then obviously the host is vax-dec-vms.
7 $! [That's no longer obvious, but there's not much we can do about alpha yet.]
16 $ DELETE = "delete/noConfirm"
17 $ ECHO = "write sys$output"
19 $! Target specific information
20 $call link targ-cpu.c [.config]tc-'cpu_type'.c
21 $call link targ-cpu.h [.config]tc-'cpu_type'.h
22 $call link targ-env.h [.config]te-'emulation'.h
24 $! Code to handle the object file format.
25 $call link obj-format.h [.config]obj-'obj_format'.h
26 $call link obj-format.c [.config]obj-'obj_format'.c
28 $! Code to handle floating point.
29 $call link atof-targ.c [.config]atof-'atof'.c
32 $! Create the file version.opt, which helps identify the executable.
34 $if f$trnlnm("IFILE$").nes."" then close/noLog ifile$
35 $search Makefile.in "VERSION="/Exact/Output=config-gas-tmp.tmp
36 $open ifile$ config-gas-tmp.tmp
39 $DELETE config-gas-tmp.tmp;*
40 $! Discard "VERSION=" and "\n" parts.
41 $ijk=f$locate("=",line)+1
42 $line=f$extract(ijk,f$length(line)-ijk,line)
43 $! [what "\n" part?? this seems to be useless, but is benign]
44 $ijk=f$locate("\n",line)
45 $line=f$extract(0,ijk,line)
47 $ if f$search("version.opt").nes."" then DELETE version.opt;*
48 $copy _NL: version.opt
49 $open/Append ifile$ version.opt
50 $write ifile$ "identification="+""""+line+""""
53 $! Now write config.h.
55 $ if f$search("config.h").nes."" then DELETE config.h;*
57 $open/Append ifile$ config.h
58 $write ifile$ "/* config.h. Generated by config-gas.com. */
59 $write ifile$ "#ifndef GAS_VERSION"
60 $write ifile$ "#define GAS_VERSION """,line,""""
61 $write ifile$ "#endif"
62 $write ifile$ "/*--*/"
63 $append [.config]vms-conf.h ifile$:
65 $ECHO "Created config.h."
67 $! Check for, and possibly make, header file <unistd.h>.
69 $ if f$search("tmp-chk-h.*").nes."" then DELETE tmp-chk-h.*;*
70 $!can't use simple `#include HDR' with `gcc /Define="HDR=<foo.h>"'
71 $!because the 2.6.[0-3] preprocessor handles it wrong (VMS-specific gcc bug)
73 int tmp_chk_h; /* guarantee non-empty output */
86 $ on warning then continue
87 $ CHECK = "call tmp_chk_h"
88 $ CHECK "HAVE_STDIO_H"
90 $ then type sys$input:
92 ? could not compile <stdio.h>.
93 Since gcc is not set up correctly, gas configuration cannot proceed.
95 $ DELETE tmp-chk-h.c;*
99 $ CHECK "HAVE_UNISTD_H"
102 $ if f$trnlnm("HFILE$").nes."" then close/noLog hfile$
103 $ CHECK "HAVE_UNIXIO_H"
104 $ got_unixio = ($status .and. 1)
105 $ CHECK "HAVE_UNIXLIB_H"
106 $ got_unixlib = ($status .and. 1)
107 $ create []unistd.h !with rudimentary contents
108 /* <unistd.h> substitute for building gas */
112 $ open/Append hfile$ []unistd.h
114 $ then write hfile$ "#include <unixio.h>"
115 $ else append sys$input: hfile$:
116 /* some of the routines normally prototyped in <unixio.h> */
117 extern int creat(), open(), close(), read(), write();
118 extern int access(), dup(), dup2(), fstat(), stat();
123 $ then write hfile$ "#include <unixlib.h>"
124 $ else append sys$input: hfile$:
125 /* some of the routines normally prototyped in <unixlib.h> */
126 extern char *sbrk(), *getcwd(), *cuserid();
127 extern int brk(), chdir(), chmod(), chown(), mkdir();
128 extern unsigned getuid(), umask();
130 $ append sys$input: hfile$:
134 $ ECHO "Created ""[]unistd.h""."
135 $ endif !gcc '#include <unistd.h>' failed
136 $ DELETE tmp-chk-h.c;*
138 $tmp_chk_h: subroutine
140 $ hname = f$edit("<" + (p1 - "HAVE_" - "_H") + ".h>","LOWERCASE")
141 $ write sys$output "Checking for ''hname'."
142 $ if f$search("tmp-chk-h.obj").nes."" then DELETE tmp-chk-h.obj;*
143 $ define/noLog sys$error _NL: !can't use /User_Mode here due to gcc
144 $ define/noLog sys$output _NL: ! driver's use of multiple image activation
145 $ gcc /Include=([],[-.include]) /Define=("''p1'") tmp-chk-h.c
146 $!can't just check $status; gcc 2.6.[0-3] preprocessor doesn't set it correctly
147 $ ok = (($status.and.1).and.(f$search("tmp-chk-h.obj").nes."")) .or. %x10000000
148 $ deassign sys$error !restore, more or less
149 $ deassign sys$output
150 $ if ok then DELETE tmp-chk-h.obj;*
152 $ endsubroutine !tmp_chk_h
157 $ if f$search("config.status") .nes. "" then DELETE config.status;*
158 $ create config.status
159 Links are now set up for use with a vax running VMS.
166 $ if f$search(p1).nes."" then DELETE 'p1';*
168 $ ECHO "Copied ''f$edit(p2,"LOWERCASE")' to ''f$edit(p1,"LOWERCASE")'."