(no title)
sp1rit | 1 year ago
This is only half true. While the code doesn't call any stdlib functions, it still relies on the the c stdlib and runtime in order to get called and properly exit.
I'm somewhat perplexed why the author did do it with the runtime, given that he doesn't really depend on features of it (except maybe the automatic exit code handling) instead of building with -ffreestanding.
fsmv|1 year ago
This is for -nostdlib not -ffreestanding
sp1rit|1 year ago
ASalazarMX|1 year ago