Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/zaurus/stand/zbsdmod Misc cleanup to avoid future c...



details:   https://anonhg.NetBSD.org/src/rev/f2de94ca29fa
branches:  trunk
changeset: 460510:f2de94ca29fa
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Sat Oct 26 10:10:14 2019 +0000

description:
Misc cleanup to avoid future confusion.

- Remove more unnecessary debug sections
- Use DBG instead of COPTS to specify -Os as defined in bsd.prog.mk
- Use CFLAGS and CPPFLAGS correctly
- Explicitly set -ffreestanding

diffstat:

 sys/arch/zaurus/stand/zbsdmod/Makefile |  23 +++++++++++++++++------
 1 files changed, 17 insertions(+), 6 deletions(-)

diffs (46 lines):

diff -r acc234b30d48 -r f2de94ca29fa sys/arch/zaurus/stand/zbsdmod/Makefile
--- a/sys/arch/zaurus/stand/zbsdmod/Makefile    Sat Oct 26 09:58:40 2019 +0000
+++ b/sys/arch/zaurus/stand/zbsdmod/Makefile    Sat Oct 26 10:10:14 2019 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.11 2019/09/23 13:42:37 christos Exp $
+#      $NetBSD: Makefile,v 1.12 2019/10/26 10:10:14 tsutsui Exp $
 
 WARNS?=        4
 
@@ -10,8 +10,18 @@
 SRCS=  zbsdmod.c
 NOMAN= # defined
 
+OBJCOPY_FLAGS=                 \
+       -R .debug_abbrev        \
+       -R .debug_aranges       \
+       -R .debug_info          \
+       -R .debug_line          \
+       -R .debug_loc           \
+       -R .debug_ranges        \
+       -R .debug_str           \
+       -R .eh_frame
+
 realall: ${OBJS}
-       ${OBJCOPY} -R .eh_frame ${.OBJDIR}/zbsdmod.o
+       ${OBJCOPY} ${OBJCOPY_FLAGS} ${.OBJDIR}/zbsdmod.o
 
 .include <bsd.klinks.mk>
 .include <bsd.prog.mk>
@@ -21,11 +31,12 @@
                ${OBJS} ${DESTDIR}/${BINDIR}
 
 CPUFLAGS=
-COPTS=         -Os
+DBG=           -Os
 CFLAGS+=       -fno-strict-aliasing
-CFLAGS+=       -DMACHINE=\"${MACHINE}\" -DUTS_RELEASE=\"2.4.20\"
-CPPFLAGS+=     ${ARM_APCS_FLAGS} -mcpu=xscale
-CPPFLAGS+=      -nostdinc -D_STANDALONE
+CFLAGS+=       -ffreestanding -nostdinc
+CFLAGS+=       ${ARM_APCS_FLAGS} -mcpu=xscale
+CPPFLAGS+=     -DMACHINE=\"${MACHINE}\" -DUTS_RELEASE=\"2.4.20\"
+CPPFLAGS+=     -D_STANDALONE
 CPPFLAGS+=     -I${.OBJDIR} -I${S}
 
 release: check_RELEASEDIR



Home | Main Index | Thread Index | Old Index