On Fri, Feb 5, 2021 at 1:37 PM Nathan Chancellor <nathan@xxxxxxxxxx> wrote: > > It is entirely possible that '--prefix=' should always be present though: > > diff --git a/Makefile b/Makefile > index f5842126e89d..409822f45bfd 100644 > --- a/Makefile > +++ b/Makefile > @@ -562,10 +562,10 @@ endif > ifneq ($(shell $(CC) --version 2>&1 | head -n 1 | grep clang),) > ifneq ($(CROSS_COMPILE),) > CLANG_FLAGS += --target=$(notdir $(CROSS_COMPILE:%-=%)) > +endif > GCC_TOOLCHAIN_DIR := $(dir $(shell which $(CROSS_COMPILE)elfedit)) > CLANG_FLAGS += --prefix=$(GCC_TOOLCHAIN_DIR)$(notdir $(CROSS_COMPILE)) > GCC_TOOLCHAIN := $(realpath $(GCC_TOOLCHAIN_DIR)/..) > -endif > ifneq ($(GCC_TOOLCHAIN),) > CLANG_FLAGS += --gcc-toolchain=$(GCC_TOOLCHAIN) > endif I'm unsure. Consider the case where I'm building with `LLVM=1 LLVM_IAS=1 CROSS_COMPILE=aarch64-linux-gnu`, ie. no GNU binutils and am cross compiling. In that case, we should not be setting any --prefix or --gcc-toolchain, and yet today we are. Perhaps that is orthogonal though? -- Thanks, ~Nick Desaulniers