Are there any technical necessities for fant, fanp, jstub, and nstub to be implemented natively in sys?
fant
fanp
jstub
nstub
sys
Just an idle curiosity :)
Well fanp is actually implemented in compiler::Fanp - its a Fantom program.
compiler::Fanp
Fant could be implemented in Fantom too, but since it is used as a core bootstrap thing it lives in sys.
The stub code is a command line wrapper for the emitter, so that would always be native.
Thanks.
Does this mean that src/sys/*/fanx/tools/Fanp.* is obsoleted?
src/sys/*/fanx/tools/Fanp.*
Yeah it was obsolete, I removed it and reworked fanp to work like flux/fansh (which just use fan/fan.exe with an explicit main)
Login or Signup to reply.
tactics Wed 17 Feb 2010
Are there any technical necessities for
fant
,fanp
,jstub
, andnstub
to be implemented natively insys
?Just an idle curiosity :)
brian Wed 17 Feb 2010
Well fanp is actually implemented in
compiler::Fanp
- its a Fantom program.Fant could be implemented in Fantom too, but since it is used as a core bootstrap thing it lives in sys.
The stub code is a command line wrapper for the emitter, so that would always be native.
tactics Wed 17 Feb 2010
Thanks.
Does this mean that
src/sys/*/fanx/tools/Fanp.*
is obsoleted?brian Thu 18 Feb 2010
Yeah it was obsolete, I removed it and reworked fanp to work like flux/fansh (which just use fan/fan.exe with an explicit main)