Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/x68k/conf Specify -fno-unwind-tables to shrink bina...



details:   https://anonhg.NetBSD.org/src/rev/c916df5cafe6
branches:  trunk
changeset: 366722:c916df5cafe6
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Sat Jun 11 04:57:57 2022 +0000

description:
Specify -fno-unwind-tables to shrink binaries.

diffstat:

 sys/arch/x68k/conf/GENERIC |  6 +++---
 sys/arch/x68k/conf/INSTALL |  6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (42 lines):

diff -r 076df09e4815 -r c916df5cafe6 sys/arch/x68k/conf/GENERIC
--- a/sys/arch/x68k/conf/GENERIC        Fri Jun 10 22:42:47 2022 +0000
+++ b/sys/arch/x68k/conf/GENERIC        Sat Jun 11 04:57:57 2022 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.204 2021/06/29 10:22:37 nia Exp $
+# $NetBSD: GENERIC,v 1.205 2022/06/11 04:57:57 tsutsui Exp $
 #
 # GENERIC machine description file
 # 
@@ -22,9 +22,9 @@
 
 options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-#ident                 "GENERIC-$Revision: 1.204 $"
+#ident                 "GENERIC-$Revision: 1.205 $"
 
-makeoptions    COPTS="-O2 -fno-reorder-blocks -fno-omit-frame-pointer"
+makeoptions    COPTS="-O2 -fno-reorder-blocks -fno-unwind-tables -fno-omit-frame-pointer"
        # See share/mk/sys.mk. -fno-omit-frame-pointer is necessary for
        # backtraces in DDB.
 
diff -r 076df09e4815 -r c916df5cafe6 sys/arch/x68k/conf/INSTALL
--- a/sys/arch/x68k/conf/INSTALL        Fri Jun 10 22:42:47 2022 +0000
+++ b/sys/arch/x68k/conf/INSTALL        Sat Jun 11 04:57:57 2022 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: INSTALL,v 1.120 2021/01/21 06:51:56 nia Exp $
+#      $NetBSD: INSTALL,v 1.121 2022/06/11 04:57:57 tsutsui Exp $
 
 #
 #      INSTALL -- installation kernel.
@@ -8,9 +8,9 @@
 
 #options       INCLUDE_CONFIG_FILE     # embed config file in kernel binary
 
-#ident                 "INSTALL-$Revision: 1.120 $"
+#ident                 "INSTALL-$Revision: 1.121 $"
 
-makeoptions    COPTS="-Os"             # Optimise for space. Implies -O2
+makeoptions    COPTS="-Os -fno-unwind-tables" # Optimise for space. Implies -O2
 
 maxusers       4
 



Home | Main Index | Thread Index | Old Index