Re: [PATCH] Adjust CPP_FOR_BUILD

2021-12-02 Thread Jeff Law via Gcc-patches
On 11/11/2021 2:10 AM, Pekka Seppänen wrote: Hi. CPP/CPPFLAGS were changed by commit 84401ce5fb4ecab55decb472b168100e7593e01f.  That commit uses CPP as a default for CPP_FOR_BUILD.  Unless CPP is defined, GNU make defaults CPP as `$(CC) -E'.  Given the context, this is now incorrect, since

[PATCH] Adjust CPP_FOR_BUILD

2021-11-11 Thread Pekka Seppänen
Hi. CPP/CPPFLAGS were changed by commit 84401ce5fb4ecab55decb472b168100e7593e01f. That commit uses CPP as a default for CPP_FOR_BUILD. Unless CPP is defined, GNU make defaults CPP as `$(CC) -E'. Given the context, this is now incorrect, since CC_FOR_BUILD should be used. Fixes PR103011.