Author: bdragon
Date: Fri Mar 27 18:20:36 2020
New Revision: 359373
URL: https://svnweb.freebsd.org/changeset/base/359373
Log:
[PowerPC] Fix LIB32WMAKEFLAGS definition
When I modified the LIB32WMAKEFLAGS= definition, I trimmed too much off.
-m is meant to be a parameter to LD.
Reported by: arichardson
Modified:
head/share/mk/bsd.compat.mk
Modified: head/share/mk/bsd.compat.mk
==============================================================================
--- head/share/mk/bsd.compat.mk Fri Mar 27 18:01:01 2020 (r359372)
+++ head/share/mk/bsd.compat.mk Fri Mar 27 18:20:36 2020 (r359373)
@@ -56,7 +56,8 @@ LIB32CPUFLAGS+= -target powerpc-unknown-freebsd13.0
LIB32_MACHINE= powerpc
LIB32_MACHINE_ARCH= powerpc
-LIB32WMAKEFLAGS= -m elf32ppc_fbsd
+LIB32WMAKEFLAGS= \
+ LD="${XLD} -m elf32ppc_fbsd"
.elif ${COMPAT_ARCH:Mmips64*} != ""
HAS_COMPAT=32
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"