[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Preprocessor
From: |
Pádraig Brady |
Subject: |
Re: Preprocessor |
Date: |
Fri, 04 Jul 2014 11:43:45 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130110 Thunderbird/17.0.2 |
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.