mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Enable LLD_IS_LD by default on armv7
lld should now be a usable linker for armv7, and is already used as the bootstrap linker (for linking the kernel and userland). Also enable as the system linker now (/usr/bin/ld) for further testing and evaluation. (This change will be reverted in case of unexpected fallout.) Approved by: manu Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
ea8946ebdc
commit
113025767e
1 changed files with 2 additions and 2 deletions
|
|
@ -311,9 +311,9 @@ __DEFAULT_YES_OPTIONS+=LLVM_LIBUNWIND
|
|||
.else
|
||||
__DEFAULT_NO_OPTIONS+=LLVM_LIBUNWIND
|
||||
.endif
|
||||
.if ${__T} == "aarch64" || ${__T} == "amd64"
|
||||
.if ${__T} == "aarch64" || ${__T} == "amd64" || ${__T} == "armv7"
|
||||
__DEFAULT_YES_OPTIONS+=LLD_BOOTSTRAP LLD_IS_LD
|
||||
.elif ${__T} == "armv7" || ${__T} == "i386"
|
||||
.elif ${__T} == "i386"
|
||||
__DEFAULT_YES_OPTIONS+=LLD_BOOTSTRAP
|
||||
__DEFAULT_NO_OPTIONS+=LLD_IS_LD
|
||||
.else
|
||||
|
|
|
|||
Loading…
Reference in a new issue