Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 15 Oct 2019 17:14:30 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r353573 - head/sys/mips/nlm/dev/net/ucore
Message-ID:  <201910151714.x9FHEUwj009508@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910151714.x9FHEUwj009508>