Comment on A whirlwind tutorial on creating teensy ELF executables for Linux (1999)parentComments−oguz-ismail1yIf that's a hard lower limitI think it's some sort of optimization (retrieving one page of memory should be easier than two, right?). With GNU ld I can do ld -s -Ttext=0x4000b0 tiny.o and shave off 3920 bytes on my system.
Comments
I think it's some sort of optimization (retrieving one page of memory should be easier than two, right?). With GNU ld I can do
and shave off 3920 bytes on my system.