Added Basic library.

This commit is contained in:
keie
1984-12-10 14:29:51 +00:00
parent f4ab1bb6e6
commit ef7ea116cd
13 changed files with 157 additions and 114 deletions

View File

@@ -6,15 +6,16 @@ var f=4
var d=8
var M=vax4
var NAME=vax4
var LIB=mach/vax4/lib/tail_
var RT=mach/vax4/lib/head_
var LIB=lib/{M}/tail_
var RT=lib/{M}/head_
var CPP_F=-Dunix
var INCLUDES=-I{EM}/include -I/usr/include
name be
from .m
from .m.g
to .s
program {EM}/lib/{M}_cg
program {EM}/lib/{M}/cg
args <
prop >
stdout
need .e
end
name asopt
@@ -22,23 +23,29 @@ name asopt
to .so
program /bin/sed
args -f {EM}/mach/vax4/cg/sedf
prop O<>
optimizer
stdin
stdout
end
name as
from .s.so
to .o
program /bin/as
args - -o > <
prop m
prep cond
end
name ld
from .o.a
to a.out
to .out
outfile a.out
program /bin/ld
mapflag -l* LNAME={EM}/{LIB}*
args (.e:{HEAD}={EM}/{RT}em) \
({RTS}:.c={EM}/{RT}cc) ({RTS}:.p={EM}/{RT}pc) -o > < \
(.p:{TAIL}={EM}/{LIB}pc) (.c:{TAIL}={EM}/{LIB}cc.1s {EM}/{LIB}cc.2g) \
(.c.p:{TAIL}={EM}/{LIB}mon) (.e:{TAIL}={EM}/{LIB}em)
prop C
({RTS}:.b.c={EM}/{RT}cc) ({RTS}:.p={EM}/{RT}pc) -o > < \
(.p:{TAIL}={EM}/{LIB}pc) \
(.b:{TAIL}={EM}/{LIB}bc) \
(.b.c:{TAIL}={EM}/{LIB}cc.1s {EM}/{LIB}cc.2g) \
(.b.c.p:{TAIL}={EM}/{LIB}mon) \
(.e:{TAIL}={EM}/{LIB}em)
linker
end