Source-Changes-HG archive

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

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



details:   https://anonhg.NetBSD.org/src/rev/672582d2e49e
branches:  trunk
changeset: 366750:672582d2e49e
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Sun Jun 12 06:54:32 2022 +0000

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

diffstat:

 sys/arch/atari/conf/GENERIC.in |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (24 lines):

diff -r 7885f09c8de5 -r 672582d2e49e sys/arch/atari/conf/GENERIC.in
--- a/sys/arch/atari/conf/GENERIC.in    Sun Jun 12 03:51:13 2022 +0000
+++ b/sys/arch/atari/conf/GENERIC.in    Sun Jun 12 06:54:32 2022 +0000
@@ -1,5 +1,5 @@
 #
-#      $NetBSD: GENERIC.in,v 1.121 2021/01/21 06:51:54 nia Exp $
+#      $NetBSD: GENERIC.in,v 1.122 2022/06/12 06:54:32 tsutsui Exp $
 #
 # Generic atari
 #
@@ -20,11 +20,11 @@
 #endif /* !SMALL030_KERNEL */
 
 #if !defined(SMALL030_KERNEL)
-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.
 #else
-makeoptions    COPTS="-Os"                     # optimize for space
+makeoptions    COPTS="-Os -fno-unwind-tables"  # optimize for space
 #endif /* !SMALL030_KERNEL */
 
 #if defined(SMALL030_KERNEL) || \



Home | Main Index | Thread Index | Old Index