Source-Changes-HG archive

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

[src/trunk]: src/sys/arch Use OBJCOPY_STRIPFLAGS instead of STRIPFLAGS.



details:   https://anonhg.NetBSD.org/src/rev/4c1daa2e6a9c
branches:  trunk
changeset: 378196:4c1daa2e6a9c
user:      rin <rin%NetBSD.org@localhost>
date:      Wed Jul 26 03:41:57 2023 +0000

description:
Use OBJCOPY_STRIPFLAGS instead of STRIPFLAGS.

diffstat:

 sys/arch/alpha/conf/Makefile.alpha |  4 ++--
 sys/arch/mips/conf/Makefile.mips   |  4 ++--
 sys/arch/riscv/conf/Makefile.riscv |  4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diffs (54 lines):

diff -r 7b413f2d1bec -r 4c1daa2e6a9c sys/arch/alpha/conf/Makefile.alpha
--- a/sys/arch/alpha/conf/Makefile.alpha        Wed Jul 26 03:39:55 2023 +0000
+++ b/sys/arch/alpha/conf/Makefile.alpha        Wed Jul 26 03:41:57 2023 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.alpha,v 1.87 2021/05/05 15:39:39 thorpej Exp $
+#      $NetBSD: Makefile.alpha,v 1.88 2023/07/26 03:41:57 rin Exp $
 
 # Makefile for NetBSD
 #
@@ -65,7 +65,7 @@ TEXTADDR?=    fffffc0000a00000
 ENTRYPOINT=    __transfer
 KERNLDSCRIPT?= ${ALPHA}/conf/kern.ldscript
 EXTRA_LINKFLAGS=       -G 4
-STRIPFLAGS=    -g -X
+OBJCOPY_STRIPFLAGS=    -g -X
 
 ##
 ## (6) port specific target dependencies
diff -r 7b413f2d1bec -r 4c1daa2e6a9c sys/arch/mips/conf/Makefile.mips
--- a/sys/arch/mips/conf/Makefile.mips  Wed Jul 26 03:39:55 2023 +0000
+++ b/sys/arch/mips/conf/Makefile.mips  Wed Jul 26 03:41:57 2023 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.mips,v 1.72 2021/04/26 00:28:01 christos Exp $
+#      $NetBSD: Makefile.mips,v 1.73 2023/07/26 03:41:57 rin Exp $
 
 # Makefile for NetBSD
 #
@@ -105,7 +105,7 @@ KERNLDSCRIPT?=              ${MIPS}/conf/kern.ldscri
 # some mips ports specify a "magic" format
 EXTRA_LINKFLAGS=       ${GP} ${LDOPTS}
 LINKFLAGS_NORMAL=      -X
-STRIPFLAGS=            -g -X
+OBJCOPY_STRIPFLAGS=    -g -X
 
 ##
 ## (6) port specific target dependencies
diff -r 7b413f2d1bec -r 4c1daa2e6a9c sys/arch/riscv/conf/Makefile.riscv
--- a/sys/arch/riscv/conf/Makefile.riscv        Wed Jul 26 03:39:55 2023 +0000
+++ b/sys/arch/riscv/conf/Makefile.riscv        Wed Jul 26 03:41:57 2023 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.riscv,v 1.9 2023/05/07 12:41:48 skrll Exp $
+#      $NetBSD: Makefile.riscv,v 1.10 2023/07/26 03:41:57 rin Exp $
 
 # Makefile for NetBSD
 #
@@ -67,7 +67,7 @@ TEXTADDR?=            0x80200000
 KERNLDSCRIPT?=         ${RISCV}/conf/kern.ldscript
 EXTRA_LINKFLAGS=       ${LDOPTS} --relax
 LINKFLAGS_NORMAL=      -X
-STRIPFLAGS=            -g -X
+OBJCOPY_STRIPFLAGS=    -g -X
 
 # Set the physical load address (aka LMA) to the address that OpenSBI's
 # fw_jump jumps to.  This allows us to load the kernel with the -kernel flag



Home | Main Index | Thread Index | Old Index