Message ID | nycvar.YSQ.7.76.1802021336090.1842@knanqh.ubzr (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Fri, Feb 2, 2018 at 7:41 PM, Nicolas Pitre <nicolas.pitre@linaro.org> wrote: > On Fri, 2 Feb 2018, Arnd Bergmann wrote: > >> Building randconfig kernels with a biarch compiler fails with LTO >> when the final link uses a different target architecture compared >> to the earlier compilation stages. >> >> Setting -m32 or -m64 in ${LDFINAL} solves this problem, though my >> feeling is that there is a better way to do this. There might also >> be other from KBUILD_CFLAGS that we may need in LDFINAL. > > On ARM I had the same problem as it requires explicit arch flags. I > therefore used this patch: > -exec $CC $ARGS > +case "${KBUILD_VERBOSE}" in > +*1*) > + set -x > + ;; > +esac > + > +exec $CC $KBUILD_CFLAGS $ARGS Ah, right, that's much simpler. I'll put that in my test tree now and will see if it works on x86. Do you have a git tree with other changes for LTO on ARM? I'd like to try that as well. Arnd -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/scripts/gcc-ld b/scripts/gcc-ld index d95dd0be38..fa53be2a34 100755 --- a/scripts/gcc-ld +++ b/scripts/gcc-ld @@ -27,4 +27,10 @@ while [ "$1" != "" ] ; do shift done -exec $CC $ARGS +case "${KBUILD_VERBOSE}" in +*1*) + set -x + ;; +esac + +exec $CC $KBUILD_CFLAGS $ARGS