Show HN: I wrote a Libc-free AOT systems language in JavaScript with no VM(github.com)
github.com
Show HN: I wrote a Libc-free AOT systems language in JavaScript with no VM
https://github.com/DO-SAY-GO/freelang
6 comments
do you have any learning resources that you used to build the ELF linker?
It’s not a linker, it just writes ELF format directly which is not such a complicated format.
Look for repos that emit ELF directly in C, Rust, or other languages (eg., tiny compilers or assemblers that skip ld).
Look for repos that emit ELF directly in C, Rust, or other languages (eg., tiny compilers or assemblers that skip ld).
This looks promising, i like the philosophy. keep it up!
by the way, do you have any learning resources that you used to build the ELF linker?