Adapted to using the new linker.
This commit is contained in:
parent
4eed0fe226
commit
37c3bced4b
1 changed files with 17 additions and 6 deletions
|
@ -11,6 +11,8 @@ var LIB=lib/{M}/tail_
|
||||||
var RT=lib/{M}/head_
|
var RT=lib/{M}/head_
|
||||||
var CPP_F=-Dunix
|
var CPP_F=-Dunix
|
||||||
var INCLUDES=-I{EM}/include -I/usr/include
|
var INCLUDES=-I{EM}/include -I/usr/include
|
||||||
|
# 407 align is the default
|
||||||
|
var ALIGN=-a0:2 -a1:2 -a2:2 -a3:2
|
||||||
name be
|
name be
|
||||||
from .m.g
|
from .m.g
|
||||||
to .s
|
to .s
|
||||||
|
@ -19,18 +21,27 @@ name be
|
||||||
stdout
|
stdout
|
||||||
need .e
|
need .e
|
||||||
end
|
end
|
||||||
name asld
|
name as
|
||||||
from .s.a
|
from .s
|
||||||
to .out
|
to .o
|
||||||
program {EM}/lib/{M}/as
|
program {EM}/lib/{M}/as
|
||||||
|
args - -o > <
|
||||||
|
prep cond
|
||||||
|
end
|
||||||
|
name led
|
||||||
|
from .o.a
|
||||||
|
to .out
|
||||||
|
program {EM}/lib/em_led
|
||||||
mapflag -l* LNAME={EM}/{LIB}*
|
mapflag -l* LNAME={EM}/{LIB}*
|
||||||
args (.e:{HEAD}={EM}/{RT}em) \
|
mapflag -i ALIGN=-a0:2 -a1:2 -a2:0x8000 -a3:2
|
||||||
|
mapflag -n ALIGN=-a0:2 -a1:2 -a2:0x8000 -a3:2
|
||||||
|
mapflag -nr ALIGN=-a0:2 -a1:0x8000 -a2:2 -a3:2
|
||||||
|
args (.e:{HEAD}=-b0:0x20000 {ALIGN} {EM}/{RT}em) \
|
||||||
({RTS}:.b.c={EM}/{RT}cc) ({RTS}:.p={EM}/{RT}pc) -o > < \
|
({RTS}:.b.c={EM}/{RT}cc) ({RTS}:.p={EM}/{RT}pc) -o > < \
|
||||||
(.p:{TAIL}={EM}/{LIB}pc) \
|
(.p:{TAIL}={EM}/{LIB}pc) \
|
||||||
(.b:{TAIL}={EM}/{LIB}bc) \
|
(.b:{TAIL}={EM}/{LIB}bc) \
|
||||||
(.b.c:{TAIL}={EM}/{LIB}cc.1s {EM}/{LIB}cc.2g) \
|
(.b.c:{TAIL}={EM}/{LIB}cc.1s {EM}/{LIB}cc.2g) \
|
||||||
(.e:{TAIL}={EM}/{LIB}em.rt {EM}/{LIB}mon {EM}/lib/{M}/end_em.s)
|
(.e:{TAIL}={EM}/{LIB}em.rt {EM}/{LIB}mon {EM}/lib/{M}/end_em)
|
||||||
prep cond
|
|
||||||
linker
|
linker
|
||||||
end
|
end
|
||||||
name cv
|
name cv
|
||||||
|
|
Loading…
Reference in a new issue