Questions tagged [bootstrapping]
For questions about bootstrapping, the process of starting a system or program with minimal resources and gradually building it up to a more complete and functional state. It involves using a small, self-contained initial version of a system or tool to develop or compile subsequent versions with additional features or capabilities.
3 questions
5
votes
1
answer
1k
views
How will boostrapping libc be possible if python starts depending on Rust?
There has been a proposal to start implementing some python optional extension modules in Rust. Eventually, the authors hope to make Rust a core dependency of the language.
This creates some ...
13
votes
5
answers
1k
views
Why do many language implementations not provide an option to bootstrap from another language?
In the context of bootstrapping quite a few languages are fully self hosted.
Becoming self hosting is often treated as a significant milestone in the development of a programming language.
Once you ...
15
votes
2
answers
1k
views
Is it possible to bootstrap an interpreted language?
Is it possible to bootstrap an interpreted language? Bootstrapping, broadly, refers to writing a programming language in that same programming language.
This is obviously possible for compiled ...