Re: [PATCH] Makefile.tpl: pass CXXFLAGS_FOR_BUILD where appropriate

2022-11-21 Thread Jeff Law via Gcc-patches
On 9/9/22 04:10, Ross Burton via Gcc-patches wrote: If CXXFLAGS contains something unsupported by the build CXX, we see build failures (e.g. using -fmacro-prefix-map for the target). Ensure that CXXFLAGS_FOR_BUILD is passed where appropriate so that the correct flags are used. ChangeLog:

[PATCH] Makefile.tpl: pass CXXFLAGS_FOR_BUILD where appropriate

2022-09-09 Thread Ross Burton via Gcc-patches
If CXXFLAGS contains something unsupported by the build CXX, we see build failures (e.g. using -fmacro-prefix-map for the target). Ensure that CXXFLAGS_FOR_BUILD is passed where appropriate so that the correct flags are used. ChangeLog: * Makefile.in: Regenerate. * Makefile.tpl: Add missi