New installation mechanism
This commit is contained in:
parent
0cc2f6e317
commit
85a8a71149
10 changed files with 46 additions and 20 deletions
|
@ -8,3 +8,4 @@ libem
|
||||||
libfp
|
libfp
|
||||||
libend
|
libend
|
||||||
libmon
|
libmon
|
||||||
|
mach_params
|
||||||
|
|
|
@ -13,6 +13,9 @@ end
|
||||||
name "ARM EM library"
|
name "ARM EM library"
|
||||||
dir libem
|
dir libem
|
||||||
end
|
end
|
||||||
|
name "ARM etext,edata,end library"
|
||||||
|
dir libend
|
||||||
|
end
|
||||||
name "ARM RiscOs library"
|
name "ARM RiscOs library"
|
||||||
dir libmon
|
dir libmon
|
||||||
end
|
end
|
||||||
|
|
2
mach/arm/libend/.distr
Normal file
2
mach/arm/libend/.distr
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
LIST
|
||||||
|
end_s.a
|
5
mach/arm/libend/LIST
Normal file
5
mach/arm/libend/LIST
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
end_s.a
|
||||||
|
edata.s
|
||||||
|
em_end.s
|
||||||
|
end.s
|
||||||
|
etext.s
|
7
mach/arm/libend/edata.s
Normal file
7
mach/arm/libend/edata.s
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
.sect .text
|
||||||
|
.sect .rom
|
||||||
|
.sect .data
|
||||||
|
.sect .bss
|
||||||
|
.define _edata
|
||||||
|
.sect .data
|
||||||
|
_edata:
|
14
mach/arm/libend/em_end.s
Normal file
14
mach/arm/libend/em_end.s
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
.sect .text
|
||||||
|
.sect .rom
|
||||||
|
.sect .data
|
||||||
|
.sect .bss
|
||||||
|
.sect .end ! only for declaration of _end, __end and endbss.
|
||||||
|
.define endtext,enddata,endbss,__end
|
||||||
|
|
||||||
|
.sect .text
|
||||||
|
endtext:
|
||||||
|
.sect .data
|
||||||
|
enddata:
|
||||||
|
.sect .end
|
||||||
|
__end:
|
||||||
|
endbss:
|
7
mach/arm/libend/end.s
Normal file
7
mach/arm/libend/end.s
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
.sect .text
|
||||||
|
.sect .rom
|
||||||
|
.sect .data
|
||||||
|
.sect .bss
|
||||||
|
.define _end
|
||||||
|
.sect .end ! only for declaration of _end, __end and endbss.
|
||||||
|
_end:
|
7
mach/arm/libend/etext.s
Normal file
7
mach/arm/libend/etext.s
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
.sect .text
|
||||||
|
.sect .rom
|
||||||
|
.sect .data
|
||||||
|
.sect .bss
|
||||||
|
.define _etext
|
||||||
|
.sect .text
|
||||||
|
_etext:
|
|
@ -1,6 +1 @@
|
||||||
Action
|
Action
|
||||||
libbc
|
|
||||||
libcc
|
|
||||||
libpc
|
|
||||||
liboc
|
|
||||||
libm2
|
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
name "2-2 Interpreter C libraries"
|
|
||||||
dir libcc
|
|
||||||
end
|
|
||||||
name "2-2 Interpreter Pascal library"
|
|
||||||
dir libpc
|
|
||||||
end
|
|
||||||
name "2-2 Interpreter Basic library"
|
|
||||||
dir libbc
|
|
||||||
end
|
|
||||||
name "2-2 Interpreter Occam library"
|
|
||||||
dir liboc
|
|
||||||
end
|
|
||||||
name "2-2 Interpreter Modula-2 library"
|
|
||||||
dir libm2
|
|
||||||
end
|
|
Loading…
Reference in a new issue