mirror of
https://github.com/xcat2/xNBA.git
synced 2024-11-22 09:31:51 +00:00
[build] Inhibit "skipping incompatible" message from ld
On 64-bit systems with both 32-bit and 64-bit libraries installed, ld tends to generate noisy "skipping incompatible /usr/lib/libxxx.so" messages when building elf2efi.c. Fix by passing --no-warn-search-mismatch to ld. Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
parent
ceba975b15
commit
28f73ca54e
@ -873,7 +873,7 @@ CLEANUP += $(ZBIN)
|
||||
#
|
||||
ELF2EFI_CFLAGS := -I$(BINUTILS_DIR)/include -I$(BFD_DIR)/include \
|
||||
-idirafter include -L$(BINUTILS_DIR)/lib -L$(BFD_DIR)/lib \
|
||||
-lbfd -liberty -lz
|
||||
-lbfd -liberty -lz -Wl,--no-warn-search-mismatch
|
||||
|
||||
$(ELF2EFI32) : util/elf2efi.c $(MAKEDEPS)
|
||||
$(QM)$(ECHO) " [HOSTCC] $@"
|
||||
|
Loading…
Reference in New Issue
Block a user