Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Oct 2019 03:27:52 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r353994 - in stable/12/stand: . i386/loader
Message-ID:  <201910240327.x9O3RqQk019155@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans
Date: Thu Oct 24 03:27:52 2019
New Revision: 353994
URL: https://svnweb.freebsd.org/changeset/base/353994

Log:
  MFC r352032: loader: --gc-sections needs sections to work with
  
  --gc-sections is not really useful unless we generate sections with
  -ffunction-sections -fdata-sections
  
  While there, i386/loader would win from --gc-sections too.

Modified:
  stable/12/stand/defs.mk
  stable/12/stand/i386/loader/Makefile
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/stand/defs.mk
==============================================================================
--- stable/12/stand/defs.mk	Thu Oct 24 03:26:45 2019	(r353993)
+++ stable/12/stand/defs.mk	Thu Oct 24 03:27:52 2019	(r353994)
@@ -65,6 +65,7 @@ CFLAGS+=	-Ddouble=jagged-little-pill -Dfloat=floaty-mc
 # Experience has shown that problems arise between ~520k to ~530k.
 CFLAGS.clang+=	-Oz
 CFLAGS.gcc+=	-Os
+CFLAGS+=	-ffunction-sections -fdata-sections
 .endif
 
 # GELI Support, with backward compat hooks (mostly)

Modified: stable/12/stand/i386/loader/Makefile
==============================================================================
--- stable/12/stand/i386/loader/Makefile	Thu Oct 24 03:26:45 2019	(r353993)
+++ stable/12/stand/i386/loader/Makefile	Thu Oct 24 03:27:52 2019	(r353994)
@@ -47,7 +47,7 @@ HELP_FILES=	${.CURDIR}/help.i386
 CLEANFILES+=	${LOADER} ${LOADER}.bin
 
 CFLAGS+=	-Wall
-LDFLAGS+=	-static -Ttext 0x0
+LDFLAGS+=	-static -Ttext 0x0 -Wl,--gc-sections
 
 # i386 standalone support library
 LIBI386=	${BOOTOBJ}/i386/libi386/libi386.a



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