svn commit: r353573 - head/sys/mips/nlm/dev/net/ucore

John Baldwin jhb at FreeBSD.org
Tue Oct 15 17:14:31 UTC 2019


Author: jhb
Date: Tue Oct 15 17:14:30 2019
New Revision: 353573
URL: https://svnweb.freebsd.org/changeset/base/353573

Log:
  Don't set the OUTPUT_FORMAT explicitly but let ld derive it.
  
  This fixes an error with modern ld.bfd and is inline with the changes in
  r215251 and r217612.
  
  Reviewed by:	imp
  Differential Revision:	https://reviews.freebsd.org/D22031

Modified:
  head/sys/mips/nlm/dev/net/ucore/ld.ucore.S

Modified: head/sys/mips/nlm/dev/net/ucore/ld.ucore.S
==============================================================================
--- head/sys/mips/nlm/dev/net/ucore/ld.ucore.S	Tue Oct 15 17:11:42 2019	(r353572)
+++ head/sys/mips/nlm/dev/net/ucore/ld.ucore.S	Tue Oct 15 17:14:30 2019	(r353573)
@@ -28,8 +28,8 @@
  * $FreeBSD$
  */
 
+OUTPUT_ARCH(mips)
 ENTRY(_start)
-OUTPUT_FORMAT(elf32-tradbigmips)
 __DYNAMIC  =  0;
 
 SECTIONS


More information about the svn-src-head mailing list