Add WITH_SYSTEM_LINKER, on by default, that avoids building lld when possible.
This works similar to WITH_SYSTEM_COMPILER added in r300354. It only supports lld via WITH_LLD_BOOTSTRAP. When both SYSTEM_COMPILER and SYSTEM_LINKER logic passes then libclang will not build in cross-tools. If either check fails though then libclang is built. The .info is reworked to notify when libclang will be built since if either clang or lld needs to be rebuilt, but not the other, the notification can lead to confusion on why "clang is building". -fuse-ld= is not used with this method so some combinations of compiler and linker are expected to fail. A new 'make test-system-linker' target is added to see the logic results. Makefile.inc1: CROSS_BINUTILS_PREFIX support had to be moved higher up so that XLD could be set and MK_LLD_BOOTSTRAP disabled before checking SYSTEM_LINKER logic as done with SYSTEM_COMPILER. This also required moving where bsd.linker.mk was read since XLD needs to be set before parsing it. This creates a situation where src.opts.mk can not test LINKER_FEATURES or add LLD_BOOTSTAP to BROKEN_OPTIONS. Reviewed by: emaste (earlier version) Sponsored by: Dell EMC Differential Revision: https://reviews.freebsd.org/D15894
This commit is contained in:
parent
a883ed8c1d
commit
a7d84af890
4
Makefile
4
Makefile
@ -143,7 +143,7 @@ TGTS= all all-man buildenv buildenvvars buildkernel buildworld \
|
||||
stage-packages \
|
||||
create-packages-world create-packages-kernel create-packages \
|
||||
packages installconfig real-packages sign-packages package-pkg \
|
||||
print-dir test-system-compiler
|
||||
print-dir test-system-compiler test-system-linker
|
||||
|
||||
# These targets require a TARGET and TARGET_ARCH be defined.
|
||||
XTGTS= native-xtools native-xtools-install xdev xdev-build xdev-install \
|
||||
@ -168,7 +168,7 @@ META_TGT_WHITELIST+= \
|
||||
_* build32 buildfiles buildincludes buildkernel buildsoft \
|
||||
buildworld everything kernel-toolchain kernel-toolchains kernel \
|
||||
kernels libraries native-xtools showconfig test-system-compiler \
|
||||
tinderbox toolchain \
|
||||
test-system-linker tinderbox toolchain \
|
||||
toolchains universe world worlds xdev xdev-build
|
||||
|
||||
.ORDER: buildworld installworld
|
||||
|
262
Makefile.inc1
262
Makefile.inc1
@ -97,99 +97,13 @@ MK_GCC_BOOTSTRAP= no
|
||||
# Pull in COMPILER_TYPE and COMPILER_FREEBSD_VERSION early. Pull it from the
|
||||
# tree to be friendlier to foreign OS builds. It's safe to do so unconditionally
|
||||
# here since we will always have the right make, unlike in src/Makefile
|
||||
# Don't include bsd.linker.mk yet until XBINUTILS is handled (after src.opts.mk)
|
||||
_NO_INCLUDE_LINKERMK= t
|
||||
.include "share/mk/bsd.compiler.mk"
|
||||
.undef _NO_INCLUDE_LINKERMK
|
||||
# src.opts.mk depends on COMPILER_FEATURES
|
||||
.include "share/mk/src.opts.mk"
|
||||
|
||||
# Check if there is a local compiler that can satisfy as an external compiler.
|
||||
# Which compiler is expected to be used?
|
||||
.if ${MK_CLANG_BOOTSTRAP} == "yes"
|
||||
WANT_COMPILER_TYPE= clang
|
||||
.elif ${MK_GCC_BOOTSTRAP} == "yes"
|
||||
WANT_COMPILER_TYPE= gcc
|
||||
.else
|
||||
WANT_COMPILER_TYPE=
|
||||
.endif
|
||||
.if !defined(WANT_COMPILER_FREEBSD_VERSION)
|
||||
.if ${WANT_COMPILER_TYPE} == "clang"
|
||||
WANT_COMPILER_FREEBSD_VERSION_FILE= lib/clang/freebsd_cc_version.h
|
||||
WANT_COMPILER_FREEBSD_VERSION!= \
|
||||
awk '$$2 == "FREEBSD_CC_VERSION" {printf("%d\n", $$3)}' \
|
||||
${SRCDIR}/${WANT_COMPILER_FREEBSD_VERSION_FILE} || echo unknown
|
||||
WANT_COMPILER_VERSION_FILE= lib/clang/include/clang/Basic/Version.inc
|
||||
WANT_COMPILER_VERSION!= \
|
||||
awk '$$2 == "CLANG_VERSION" {split($$3, a, "."); print a[1] * 10000 + a[2] * 100 + a[3]}' \
|
||||
${SRCDIR}/${WANT_COMPILER_VERSION_FILE} || echo unknown
|
||||
.elif ${WANT_COMPILER_TYPE} == "gcc"
|
||||
WANT_COMPILER_FREEBSD_VERSION_FILE= gnu/usr.bin/cc/cc_tools/freebsd-native.h
|
||||
WANT_COMPILER_FREEBSD_VERSION!= \
|
||||
awk '$$2 == "FBSD_CC_VER" {printf("%d\n", $$3)}' \
|
||||
${SRCDIR}/${WANT_COMPILER_FREEBSD_VERSION_FILE} || echo unknown
|
||||
WANT_COMPILER_VERSION_FILE= contrib/gcc/BASE-VER
|
||||
WANT_COMPILER_VERSION!= \
|
||||
awk -F. '{print $$1 * 10000 + $$2 * 100 + $$3}' \
|
||||
${SRCDIR}/${WANT_COMPILER_VERSION_FILE} || echo unknown
|
||||
.endif
|
||||
.export WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_VERSION
|
||||
.endif # !defined(WANT_COMPILER_FREEBSD_VERSION)
|
||||
# It needs to be the same revision as we would build for the bootstrap.
|
||||
# If the expected vs CC is different then we can't skip.
|
||||
# GCC cannot be used for cross-arch yet. For clang we pass -target later if
|
||||
# TARGET_ARCH!=MACHINE_ARCH.
|
||||
.if ${MK_SYSTEM_COMPILER} == "yes" && \
|
||||
(${MK_CLANG_BOOTSTRAP} == "yes" || ${MK_GCC_BOOTSTRAP} == "yes") && \
|
||||
!make(showconfig) && !make(xdev*) && \
|
||||
${X_COMPILER_TYPE} == ${WANT_COMPILER_TYPE} && \
|
||||
(${X_COMPILER_TYPE} == "clang" || ${TARGET_ARCH} == ${MACHINE_ARCH}) && \
|
||||
${X_COMPILER_VERSION} == ${WANT_COMPILER_VERSION} && \
|
||||
${X_COMPILER_FREEBSD_VERSION} == ${WANT_COMPILER_FREEBSD_VERSION}
|
||||
# Everything matches, disable the bootstrap compiler.
|
||||
MK_CLANG_BOOTSTRAP= no
|
||||
MK_GCC_BOOTSTRAP= no
|
||||
USING_SYSTEM_COMPILER= yes
|
||||
.endif # ${WANT_COMPILER_TYPE} == ${COMPILER_TYPE}
|
||||
USING_SYSTEM_COMPILER?= no
|
||||
TEST_SYSTEM_COMPILER_VARS= \
|
||||
USING_SYSTEM_COMPILER MK_SYSTEM_COMPILER \
|
||||
MK_CROSS_COMPILER MK_CLANG_BOOTSTRAP MK_GCC_BOOTSTRAP \
|
||||
WANT_COMPILER_TYPE WANT_COMPILER_VERSION WANT_COMPILER_VERSION_FILE \
|
||||
WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_FREEBSD_VERSION_FILE \
|
||||
CC COMPILER_TYPE COMPILER_FEATURES COMPILER_VERSION \
|
||||
COMPILER_FREEBSD_VERSION \
|
||||
X_COMPILER_TYPE X_COMPILER_FEATURES X_COMPILER_VERSION \
|
||||
X_COMPILER_FREEBSD_VERSION \
|
||||
LINKER_TYPE LINKER_FEATURES LINKER_VERSION \
|
||||
X_LINKER_TYPE X_LINKER_FEATURES X_LINKER_VERSION
|
||||
test-system-compiler: .PHONY
|
||||
.for v in ${TEST_SYSTEM_COMPILER_VARS}
|
||||
${_+_}@printf "%-35s= %s\n" "${v}" "${${v}}"
|
||||
.endfor
|
||||
.if ${USING_SYSTEM_COMPILER} == "yes" && \
|
||||
(make(buildworld) || make(buildkernel) || make(kernel-toolchain) || \
|
||||
make(toolchain) || make(_cross-tools))
|
||||
.info SYSTEM_COMPILER: Determined that CC=${CC} matches the source tree. Not bootstrapping a cross-compiler.
|
||||
.endif
|
||||
|
||||
# Store some compiler metadata for use in installworld where we don't
|
||||
# want to invoke CC at all.
|
||||
_COMPILER_METADATA_VARS= COMPILER_VERSION \
|
||||
COMPILER_TYPE \
|
||||
COMPILER_FEATURES \
|
||||
COMPILER_FREEBSD_VERSION \
|
||||
LINKER_VERSION \
|
||||
LINKER_FEATURES \
|
||||
LINKER_TYPE
|
||||
compiler-metadata.mk: .PHONY .META
|
||||
@: > ${.TARGET}
|
||||
@echo ".info Using cached compiler metadata from build at $$(hostname) on $$(date)" \
|
||||
> ${.TARGET}
|
||||
@echo "_LOADED_COMPILER_METADATA=t" >> ${.TARGET}
|
||||
.for v in ${_COMPILER_METADATA_VARS}
|
||||
@echo "${v}=${${v}}" >> ${.TARGET}
|
||||
@echo "X_${v}=${X_${v}}" >> ${.TARGET}
|
||||
.endfor
|
||||
@echo ".export ${_COMPILER_METADATA_VARS}" >> ${.TARGET}
|
||||
@echo ".export ${_COMPILER_METADATA_VARS:C,^,X_,}" >> ${.TARGET}
|
||||
|
||||
.if ${TARGET} == ${MACHINE}
|
||||
TARGET_CPUTYPE?=${CPUTYPE}
|
||||
.else
|
||||
@ -245,6 +159,171 @@ X${BINUTIL}?= ${${BINUTIL}}
|
||||
MK_LLD_BOOTSTRAP= no
|
||||
.endif
|
||||
|
||||
.include "share/mk/bsd.linker.mk"
|
||||
|
||||
# Begin WITH_SYSTEM_COMPILER / WITH_SYSTEM_LD
|
||||
|
||||
# WITH_SYSTEM_COMPILER - Pull in needed values and make a decision.
|
||||
|
||||
# Check if there is a local compiler that can satisfy as an external compiler.
|
||||
# Which compiler is expected to be used?
|
||||
.if ${MK_CLANG_BOOTSTRAP} == "yes"
|
||||
WANT_COMPILER_TYPE= clang
|
||||
.elif ${MK_GCC_BOOTSTRAP} == "yes"
|
||||
WANT_COMPILER_TYPE= gcc
|
||||
.else
|
||||
WANT_COMPILER_TYPE=
|
||||
.endif
|
||||
|
||||
.if !defined(WANT_COMPILER_FREEBSD_VERSION)
|
||||
.if ${WANT_COMPILER_TYPE} == "clang"
|
||||
WANT_COMPILER_FREEBSD_VERSION_FILE= lib/clang/freebsd_cc_version.h
|
||||
WANT_COMPILER_FREEBSD_VERSION!= \
|
||||
awk '$$2 == "FREEBSD_CC_VERSION" {printf("%d\n", $$3)}' \
|
||||
${SRCDIR}/${WANT_COMPILER_FREEBSD_VERSION_FILE} || echo unknown
|
||||
WANT_COMPILER_VERSION_FILE= lib/clang/include/clang/Basic/Version.inc
|
||||
WANT_COMPILER_VERSION!= \
|
||||
awk '$$2 == "CLANG_VERSION" {split($$3, a, "."); print a[1] * 10000 + a[2] * 100 + a[3]}' \
|
||||
${SRCDIR}/${WANT_COMPILER_VERSION_FILE} || echo unknown
|
||||
.elif ${WANT_COMPILER_TYPE} == "gcc"
|
||||
WANT_COMPILER_FREEBSD_VERSION_FILE= gnu/usr.bin/cc/cc_tools/freebsd-native.h
|
||||
WANT_COMPILER_FREEBSD_VERSION!= \
|
||||
awk '$$2 == "FBSD_CC_VER" {printf("%d\n", $$3)}' \
|
||||
${SRCDIR}/${WANT_COMPILER_FREEBSD_VERSION_FILE} || echo unknown
|
||||
WANT_COMPILER_VERSION_FILE= contrib/gcc/BASE-VER
|
||||
WANT_COMPILER_VERSION!= \
|
||||
awk -F. '{print $$1 * 10000 + $$2 * 100 + $$3}' \
|
||||
${SRCDIR}/${WANT_COMPILER_VERSION_FILE} || echo unknown
|
||||
.endif
|
||||
.export WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_VERSION
|
||||
.endif # !defined(WANT_COMPILER_FREEBSD_VERSION)
|
||||
|
||||
# It needs to be the same revision as we would build for the bootstrap.
|
||||
# If the expected vs CC is different then we can't skip.
|
||||
# GCC cannot be used for cross-arch yet. For clang we pass -target later if
|
||||
# TARGET_ARCH!=MACHINE_ARCH.
|
||||
.if ${MK_SYSTEM_COMPILER} == "yes" && \
|
||||
(${MK_CLANG_BOOTSTRAP} == "yes" || ${MK_GCC_BOOTSTRAP} == "yes") && \
|
||||
!make(showconfig) && !make(xdev*) && \
|
||||
${X_COMPILER_TYPE} == ${WANT_COMPILER_TYPE} && \
|
||||
(${X_COMPILER_TYPE} == "clang" || ${TARGET_ARCH} == ${MACHINE_ARCH}) && \
|
||||
${X_COMPILER_VERSION} == ${WANT_COMPILER_VERSION} && \
|
||||
${X_COMPILER_FREEBSD_VERSION} == ${WANT_COMPILER_FREEBSD_VERSION}
|
||||
# Everything matches, disable the bootstrap compiler.
|
||||
MK_CLANG_BOOTSTRAP= no
|
||||
MK_GCC_BOOTSTRAP= no
|
||||
USING_SYSTEM_COMPILER= yes
|
||||
.endif # ${WANT_COMPILER_TYPE} == ${COMPILER_TYPE}
|
||||
|
||||
# WITH_SYSTEM_LD - Pull in needed values and make a decision.
|
||||
|
||||
# Check if there is a local linker that can satisfy as an external linker.
|
||||
# Which linker is expected to be used?
|
||||
.if ${MK_LLD_BOOTSTRAP} == "yes"
|
||||
WANT_LINKER_TYPE= lld
|
||||
.elif ${MK_BINUTILS_BOOTSTRAP} == "yes"
|
||||
# Note that there's no support for bfd in WITH_SYSTEM_LINKER.
|
||||
WANT_LINKER_TYPE= bfd
|
||||
.else
|
||||
WANT_LINKER_TYPE=
|
||||
.endif
|
||||
|
||||
.if !defined(WANT_LINKER_FREEBSD_VERSION)
|
||||
.if ${WANT_LINKER_TYPE} == "lld"
|
||||
WANT_LINKER_FREEBSD_VERSION_FILE= lib/clang/include/lld/Common/Version.inc
|
||||
WANT_LINKER_FREEBSD_VERSION!= \
|
||||
awk '$$2 == "LLD_REVISION_STRING" {gsub(/"/, "", $$3); print $$3}' \
|
||||
${SRCDIR}/${WANT_LINKER_FREEBSD_VERSION_FILE} || echo unknown
|
||||
WANT_LINKER_VERSION_FILE= lib/clang/include/lld/Common/Version.inc
|
||||
WANT_LINKER_VERSION!= \
|
||||
awk '$$2 == "LLD_VERSION" {split($$3, a, "."); print a[1] * 10000 + a[2] * 100 + a[3]}' \
|
||||
${SRCDIR}/${WANT_LINKER_VERSION_FILE} || echo unknown
|
||||
.else
|
||||
WANT_LINKER_FREEBSD_VERSION_FILE=
|
||||
WANT_LINKER_FREEBSD_VERSION=
|
||||
.endif
|
||||
.export WANT_LINKER_FREEBSD_VERSION WANT_LINKER_VERSION
|
||||
.endif # !defined(WANT_LINKER_FREEBSD_VERSION)
|
||||
|
||||
.if ${MK_SYSTEM_LINKER} == "yes" && \
|
||||
(${MK_LLD_BOOTSTRAP} == "yes") && \
|
||||
!make(showconfig) && !make(xdev*) && \
|
||||
${X_LINKER_TYPE} == ${WANT_LINKER_TYPE} && \
|
||||
${X_LINKER_VERSION} == ${WANT_LINKER_VERSION} && \
|
||||
${X_LINKER_FREEBSD_VERSION} == ${WANT_LINKER_FREEBSD_VERSION}
|
||||
# Everything matches, disable the bootstrap linker.
|
||||
MK_LLD_BOOTSTRAP= no
|
||||
USING_SYSTEM_LINKER= yes
|
||||
.endif # ${WANT_LINKER_TYPE} == ${LINKER_TYPE}
|
||||
|
||||
# WITH_SYSTEM_COMPILER / WITH_SYSTEM_LINKER - Handle defaults and debug.
|
||||
USING_SYSTEM_COMPILER?= no
|
||||
USING_SYSTEM_LINKER?= no
|
||||
|
||||
TEST_SYSTEM_COMPILER_VARS= \
|
||||
USING_SYSTEM_COMPILER MK_SYSTEM_COMPILER \
|
||||
MK_CROSS_COMPILER MK_CLANG_BOOTSTRAP MK_GCC_BOOTSTRAP \
|
||||
WANT_COMPILER_TYPE WANT_COMPILER_VERSION WANT_COMPILER_VERSION_FILE \
|
||||
WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_FREEBSD_VERSION_FILE \
|
||||
CC COMPILER_TYPE COMPILER_FEATURES COMPILER_VERSION \
|
||||
COMPILER_FREEBSD_VERSION \
|
||||
XCC X_COMPILER_TYPE X_COMPILER_FEATURES X_COMPILER_VERSION \
|
||||
X_COMPILER_FREEBSD_VERSION
|
||||
TEST_SYSTEM_LINKER_VARS= \
|
||||
USING_SYSTEM_LINKER MK_SYSTEM_LINKER \
|
||||
MK_LLD_BOOTSTRAP MK_BINUTILS_BOOTSTRAP \
|
||||
WANT_LINKER_TYPE WANT_LINKER_VERSION WANT_LINKER_VERSION_FILE \
|
||||
WANT_LINKER_FREEBSD_VERSION WANT_LINKER_FREEBSD_VERSION_FILE \
|
||||
LD LINKER_TYPE LINKER_FEATURES LINKER_VERSION \
|
||||
LINKER_FREEBSD_VERSION \
|
||||
XLD X_LINKER_TYPE X_LINKER_FEATURES X_LINKER_VERSION \
|
||||
X_LINKER_FREEBSD_VERSION
|
||||
|
||||
.for _t in compiler linker
|
||||
test-system-${_t}: .PHONY
|
||||
.for v in ${TEST_SYSTEM_${_t:tu}_VARS}
|
||||
${_+_}@printf "%-35s= %s\n" "${v}" "${${v}}"
|
||||
.endfor
|
||||
.endfor
|
||||
.if (make(buildworld) || make(buildkernel) || make(kernel-toolchain) || \
|
||||
make(toolchain) || make(_cross-tools))
|
||||
.if ${USING_SYSTEM_COMPILER} == "yes"
|
||||
.info SYSTEM_COMPILER: Determined that CC=${CC} matches the source tree. Not bootstrapping a cross-compiler.
|
||||
.elif ${MK_CLANG_BOOTSTRAP} == "yes"
|
||||
.info SYSTEM_COMPILER: libclang will be built for bootstrapping a cross-compiler.
|
||||
.endif
|
||||
.if ${USING_SYSTEM_LINKER} == "yes"
|
||||
.info SYSTEM_LINKER: Determined that LD=${LD} matches the source tree. Not bootstrapping a cross-linker.
|
||||
.elif ${MK_LLD_BOOTSTRAP} == "yes"
|
||||
.info SYSTEM_LINKER: libclang will be built for bootstrapping a cross-linker.
|
||||
.endif
|
||||
.endif
|
||||
|
||||
# End WITH_SYSTEM_COMPILER / WITH_SYSTEM_LD
|
||||
|
||||
# Store some compiler metadata for use in installworld where we don't
|
||||
# want to invoke CC at all.
|
||||
_COMPILER_METADATA_VARS= COMPILER_VERSION \
|
||||
COMPILER_TYPE \
|
||||
COMPILER_FEATURES \
|
||||
COMPILER_FREEBSD_VERSION \
|
||||
LINKER_VERSION \
|
||||
LINKER_FEATURES \
|
||||
LINKER_TYPE \
|
||||
LINKER_FREEBSD_VERSION
|
||||
compiler-metadata.mk: .PHONY .META
|
||||
@: > ${.TARGET}
|
||||
@echo ".info Using cached compiler metadata from build at $$(hostname) on $$(date)" \
|
||||
> ${.TARGET}
|
||||
@echo "_LOADED_COMPILER_METADATA=t" >> ${.TARGET}
|
||||
.for v in ${_COMPILER_METADATA_VARS}
|
||||
@echo "${v}=${${v}}" >> ${.TARGET}
|
||||
@echo "X_${v}=${X_${v}}" >> ${.TARGET}
|
||||
.endfor
|
||||
@echo ".export ${_COMPILER_METADATA_VARS}" >> ${.TARGET}
|
||||
@echo ".export ${_COMPILER_METADATA_VARS:C,^,X_,}" >> ${.TARGET}
|
||||
|
||||
|
||||
# We must do lib/ and libexec/ before bin/ in case of a mid-install error to
|
||||
# keep the users system reasonably usable. For static->dynamic root upgrades,
|
||||
# we don't want to install a dynamic binary without rtld and the needed
|
||||
@ -857,6 +936,9 @@ _worldtmp: .PHONY
|
||||
fi
|
||||
.endfor
|
||||
.endif # ${USING_SYSTEM_COMPILER} == "yes"
|
||||
.if ${USING_SYSTEM_LINKER} == "yes"
|
||||
@rm -f ${WORLDTMP}/usr/bin/ld ${WORLDTMP}/usr/bin/ld.lld
|
||||
.endif # ${USING_SYSTEM_LINKER} == "yes"
|
||||
.endif # !defined(NO_CLEAN)
|
||||
@mkdir -p ${WORLDTMP}
|
||||
@touch ${WORLDTMP}/${.TARGET}
|
||||
|
@ -208,5 +208,7 @@ ${var}.${${X_}_cc_hash}:= ${${var}}
|
||||
.endif # ${cc} == "CC" || !empty(XCC)
|
||||
.endfor # .for cc in CC XCC
|
||||
|
||||
.if !defined(_NO_INCLUDE_LINKERMK)
|
||||
.include <bsd.linker.mk>
|
||||
.endif
|
||||
.endif # !target(__<bsd.compiler.mk>__)
|
||||
|
@ -16,6 +16,8 @@
|
||||
# - retpoline: support for generating PLT with retpoline speculative
|
||||
# execution vulnerability mitigation
|
||||
#
|
||||
# LINKER_FREEBSD_VERSION is the linker's internal source version.
|
||||
#
|
||||
# These variables with an X_ prefix will also be provided if XLD is set.
|
||||
#
|
||||
# This file may be included multiple times, but only has effect the first time.
|
||||
@ -29,7 +31,8 @@ __<bsd.linker.mk>__:
|
||||
# Try to import LINKER_TYPE and LINKER_VERSION from parent make.
|
||||
# The value is only used/exported for the same environment that impacts
|
||||
# LD and LINKER_* settings here.
|
||||
_exported_vars= ${X_}LINKER_TYPE ${X_}LINKER_VERSION ${X_}LINKER_FEATURES
|
||||
_exported_vars= ${X_}LINKER_TYPE ${X_}LINKER_VERSION ${X_}LINKER_FEATURES \
|
||||
${X_}LINKER_FREEBSD_VERSION
|
||||
${X_}_ld_hash= ${${ld}}${MACHINE}${PATH}
|
||||
${X_}_ld_hash:= ${${X_}_ld_hash:hash}
|
||||
# Only import if none of the vars are set somehow else.
|
||||
@ -55,10 +58,14 @@ _ld_version!= (${${ld}} --version || echo none) | sed -n 1p
|
||||
.endif
|
||||
.if ${_ld_version:[1..2]} == "GNU ld"
|
||||
${X_}LINKER_TYPE= bfd
|
||||
${X_}LINKER_FREEBSD_VERSION= 0
|
||||
_v= ${_ld_version:M[1-9].[0-9]*:[1]}
|
||||
.elif ${_ld_version:[1]} == "LLD"
|
||||
${X_}LINKER_TYPE= lld
|
||||
_v= ${_ld_version:[2]}
|
||||
${X_}LINKER_FREEBSD_VERSION!= \
|
||||
${${ld}} --version | \
|
||||
awk '$$3 ~ /FreeBSD/ {print substr($$4, 1, length($$4)-1)}'
|
||||
.else
|
||||
.warning Unknown linker from ${ld}=${${ld}}: ${_ld_version}, defaulting to bfd
|
||||
${X_}LINKER_TYPE= bfd
|
||||
@ -85,6 +92,7 @@ ${X_}LINKER_FEATURES+= retpoline
|
||||
X_LINKER_TYPE= ${LINKER_TYPE}
|
||||
X_LINKER_VERSION= ${LINKER_VERSION}
|
||||
X_LINKER_FEATURES= ${LINKER_FEATURES}
|
||||
X_LINKER_FREEBSD_VERSION= ${LINKER_FREEBSD_VERSION}
|
||||
.endif # ${ld} == "LD" || (${ld} == "XLD" && ${XLD} != ${LD})
|
||||
|
||||
# Export the values so sub-makes don't have to look them up again, using the
|
||||
|
@ -168,6 +168,7 @@ __DEFAULT_YES_OPTIONS = \
|
||||
SVNLITE \
|
||||
SYSCONS \
|
||||
SYSTEM_COMPILER \
|
||||
SYSTEM_LINKER \
|
||||
TALK \
|
||||
TCP_WRAPPERS \
|
||||
TCSH \
|
||||
|
16
tools/build/options/WITHOUT_SYSTEM_LINKER
Normal file
16
tools/build/options/WITHOUT_SYSTEM_LINKER
Normal file
@ -0,0 +1,16 @@
|
||||
.\" $FreeBSD$
|
||||
Set to not opportunistically skip building a cross-linker during the
|
||||
bootstrap phase of the build.
|
||||
Normally, if the currently installed linker matches the planned bootstrap
|
||||
linker type and revision, then it will not be built.
|
||||
This does not prevent a linker from being built for installation though,
|
||||
only for building one for the build itself.
|
||||
The
|
||||
.Va WITHOUT_LLD
|
||||
and
|
||||
.Va WITHOUT_BINUTILS
|
||||
options control those.
|
||||
.Pp
|
||||
This option is only relevant when
|
||||
.Va WITH_LLD_BOOTSTRAP
|
||||
is set.
|
16
tools/build/options/WITH_SYSTEM_LINKER
Normal file
16
tools/build/options/WITH_SYSTEM_LINKER
Normal file
@ -0,0 +1,16 @@
|
||||
.\" $FreeBSD$
|
||||
Set to opportunistically skip building a cross-linker during the
|
||||
bootstrap phase of the build.
|
||||
If the currently installed linker matches the planned bootstrap linker
|
||||
type and revision, then it will not be built.
|
||||
This does not prevent a linker from being built for installation though,
|
||||
only for building one for the build itself.
|
||||
The
|
||||
.Va WITHOUT_LLD
|
||||
and
|
||||
.Va WITHOUT_BINUTILS
|
||||
options control those.
|
||||
.Pp
|
||||
This option is only relevant when
|
||||
.Va WITH_LLD_BOOTSTRAP
|
||||
is set.
|
Loading…
Reference in New Issue
Block a user