https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=215684

Dimitry Andric <d...@freebsd.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |d...@freebsd.org

--- Comment #1 from Dimitry Andric <d...@freebsd.org> ---
There's a special case in usr.bin/clang/llvm.prog.mk for the pre-world stages:

# Special case for the bootstrap-tools phase.
.if (defined(TOOLS_PREFIX) || ${MACHINE} == "host") && \
    (${PROG_CXX} == "clang-tblgen" || ${PROG_CXX} == "llvm-tblgen")
LIBDEPS+=       llvmminimal
.else
LIBDEPS+=       llvm
.endif

E.g. either TOOLS_PREFIX must be defined (as it normally is during all stages
before world), or as Bryan added in r305223, for the host build.

I take it something is going wrong in this second case, e.g. TOOLS_PREFIX is
likely not defined, while ${MACHINE} is not "host".

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
freebsd-toolchain@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-toolchain
To unsubscribe, send any mail to "freebsd-toolchain-unsubscr...@freebsd.org"

Reply via email to