On 07/04/2014 11:20 AM, Khaled Yakdan wrote: > Hi all, > > is there an option to configure so that the make file only runs the > preprocessor or at least produces preprocessed source code files in > addition to object files?
Not a coreutils specific question, but you could pass --save-temps to CFLAGS through configure. Also for one off debugging, you can see the full command used for a standard build like: make V=1 src/$cmd and then adjust to add -E to send preprocessed to stdout.