mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-05 17:40:56 +11:00
9b85961093
Now that this section is so small, I think I can see a possibility for cross-compiling Collapse OS entirely, which would be great because we could get rid of the relinker.
15 lines
538 B
Plaintext
15 lines
538 B
Plaintext
XPACKed core
|
|
|
|
Most of Collapse OS' core words are cross compiled (B390).
|
|
However, some of them are too dynamically referenced to be
|
|
cross-compiled without great pain, so we XPACK (B267) them,
|
|
that is, we put them in source form in the target's
|
|
initialization section (see B89).
|
|
|
|
These words will be compiled into RAM at initialization, which
|
|
is a bit wasteful both in RAM and in boot time, so we will
|
|
typically relink (B120) that newly compiled binary and append
|
|
it to our existing binary for optimal resource usage.
|
|
|
|
Load range: 440-446
|