On 05/15/2015 03:07 PM, Ángel González wrote:
I thought -nostlib disabled the printf(x"\n") to puts(x) optimization...
The -ffreestanding or -fno-builtin (or -fno-builtin-printf) options will do that. -nostdlib is a link time option (see the manual for details). Martin