Source-Changes-HG archive

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

[src/trunk]: src/sys/arch Add empty LIBCRTI= as LIBCRT0 to build sa programs ...



details:   https://anonhg.NetBSD.org/src/rev/cb4ab111f658
branches:  trunk
changeset: 325935:cb4ab111f658
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Sun Jan 12 15:26:28 2014 +0000

description:
Add empty LIBCRTI= as LIBCRT0 to build sa programs without installed DESTDIR.

XXX: probabry we should have bsd.saprog.mk or something.

diffstat:

 sys/arch/acorn26/stand/Makefile.buildboot               |  3 ++-
 sys/arch/acorn32/stand/Makefile.buildboot               |  3 ++-
 sys/arch/alpha/stand/Makefile.bootprogs                 |  3 ++-
 sys/arch/arc/stand/boot/Makefile                        |  3 ++-
 sys/arch/atari/stand/bootxx/Makefile.bootxx             |  3 ++-
 sys/arch/atari/stand/bootxxx/Makefile.bootxxx           |  3 ++-
 sys/arch/atari/stand/xxboot/Makefile.xxboot             |  3 ++-
 sys/arch/atari/stand/xxboot/ahdi-sdb00t/Makefile.sdb00t |  3 ++-
 sys/arch/atari/stand/xxboot/ahdi-wdb00t/Makefile        |  3 ++-
 sys/arch/atari/stand/xxboot/ahdi-xxboot/Makefile.xxb    |  3 ++-
 sys/arch/atari/stand/xxboot/fdboot/Makefile.fdboot      |  3 ++-
 sys/arch/atari/stand/xxboot/sdboot/Makefile.sdboot      |  3 ++-
 sys/arch/atari/stand/xxboot/wdboot/Makefile             |  3 ++-
 sys/arch/bebox/stand/boot/Makefile                      |  3 ++-
 sys/arch/cobalt/stand/boot/Makefile                     |  3 ++-
 sys/arch/emips/stand/Makefile.booters                   |  3 ++-
 sys/arch/evbarm/stand/boot2440/Makefile                 |  3 ++-
 sys/arch/evbarm/stand/bootimx23/Makefile                |  3 ++-
 sys/arch/evbarm/stand/gzboot/Makefile.gzboot            |  3 ++-
 sys/arch/ews4800mips/stand/Makefile.bootxx              |  3 ++-
 sys/arch/ews4800mips/stand/boot/Makefile                |  3 ++-
 sys/arch/hp300/stand/Makefile.buildboot                 |  3 ++-
 sys/arch/hp700/stand/Makefile.buildboot                 |  3 ++-
 sys/arch/hp700/stand/xxboot/Makefile                    |  3 ++-
 sys/arch/i386/stand/Makefile.booters                    |  3 ++-
 sys/arch/i386/stand/boot/Makefile.boot                  |  3 ++-
 sys/arch/i386/stand/bootxx/Makefile.bootxx              |  3 ++-
 sys/arch/i386/stand/cdboot/Makefile                     |  3 ++-
 sys/arch/i386/stand/fatboot/Makefile.fat                |  3 ++-
 sys/arch/i386/stand/mbr/Makefile.mbr                    |  3 ++-
 sys/arch/ia64/stand/ia64/Makefile.booters               |  3 ++-
 sys/arch/landisk/stand/Makefile.bootprogs               |  3 ++-
 sys/arch/landisk/stand/mbr/Makefile.mbr                 |  3 ++-
 sys/arch/luna68k/stand/Makefile.inc                     |  3 ++-
 sys/arch/macppc/stand/bootxx/Makefile                   |  3 ++-
 sys/arch/macppc/stand/ofwboot/Makefile                  |  3 ++-
 sys/arch/mipsco/stand/Makefile.booters                  |  3 ++-
 sys/arch/mmeye/stand/boot/Makefile                      |  3 ++-
 sys/arch/mvme68k/stand/Makefile.booters                 |  3 ++-
 sys/arch/mvmeppc/stand/Makefile.booters                 |  3 ++-
 sys/arch/news68k/stand/Makefile.inc                     |  3 ++-
 sys/arch/newsmips/stand/Makefile.inc                    |  3 ++-
 sys/arch/next68k/stand/boot/Makefile                    |  3 ++-
 sys/arch/ofppc/stand/ofwboot/Makefile                   |  3 ++-
 sys/arch/pmax/stand/Makefile.booters                    |  3 ++-
 sys/arch/prep/stand/boot/Makefile                       |  3 ++-
 sys/arch/rs6000/stand/boot/Makefile                     |  3 ++-
 sys/arch/sandpoint/stand/altboot/Makefile               |  3 ++-
 sys/arch/sbmips/stand/Makefile.bootprogs                |  3 ++-
 sys/arch/sgimips/stand/Makefile.booters                 |  3 ++-
 sys/arch/shark/stand/ofwboot/Makefile                   |  3 ++-
 sys/arch/sparc/stand/bootxx/Makefile                    |  3 ++-
 sys/arch/sparc/stand/ofwboot/Makefile                   |  3 ++-
 sys/arch/sun68k/stand/Makefile.inc                      |  3 ++-
 sys/arch/x68k/stand/Makefile.booters                    |  3 ++-
 sys/arch/zaurus/stand/zboot/Makefile                    |  3 ++-
 56 files changed, 112 insertions(+), 56 deletions(-)

diffs (truncated from 936 to 300 lines):

diff -r 304a46710919 -r cb4ab111f658 sys/arch/acorn26/stand/Makefile.buildboot
--- a/sys/arch/acorn26/stand/Makefile.buildboot Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/acorn26/stand/Makefile.buildboot Sun Jan 12 15:26:28 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.buildboot,v 1.20 2013/12/15 18:08:37 joerg Exp $
+#      $NetBSD: Makefile.buildboot,v 1.21 2014/01/12 15:26:28 tsutsui Exp $
 
 S?=    ${.CURDIR}/../../../..
 
@@ -13,6 +13,7 @@
 
 # XXX SHOULD NOT NEED TO DEFINE THESE!
 LIBCRT0=
+LIBCRTI=
 LIBC=
 LIBCRTBEGIN=
 LIBCRTEND=
diff -r 304a46710919 -r cb4ab111f658 sys/arch/acorn32/stand/Makefile.buildboot
--- a/sys/arch/acorn32/stand/Makefile.buildboot Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/acorn32/stand/Makefile.buildboot Sun Jan 12 15:26:28 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.buildboot,v 1.20 2013/12/15 18:08:37 joerg Exp $
+#      $NetBSD: Makefile.buildboot,v 1.21 2014/01/12 15:26:28 tsutsui Exp $
 
 S?=    ${.CURDIR}/../../../..
 
@@ -14,6 +14,7 @@
 
 # XXX SHOULD NOT NEED TO DEFINE THESE!
 LIBCRT0=
+LIBCRTI=
 LIBC=
 LIBCRTBEGIN=
 LIBCRTEND=
diff -r 304a46710919 -r cb4ab111f658 sys/arch/alpha/stand/Makefile.bootprogs
--- a/sys/arch/alpha/stand/Makefile.bootprogs   Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/alpha/stand/Makefile.bootprogs   Sun Jan 12 15:26:28 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.bootprogs,v 1.32 2011/01/23 13:24:05 joerg Exp $
+# $NetBSD: Makefile.bootprogs,v 1.33 2014/01/12 15:26:28 tsutsui Exp $
 
 NOMAN=                 # defined
 
@@ -15,6 +15,7 @@
 
 # XXX SHOULD NOT NEED TO DEFINE THESE!
 LIBCRT0=
+LIBCRTI=
 LIBC=
 LIBCRTBEGIN=
 LIBCRTEND=
diff -r 304a46710919 -r cb4ab111f658 sys/arch/arc/stand/boot/Makefile
--- a/sys/arch/arc/stand/boot/Makefile  Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/arc/stand/boot/Makefile  Sun Jan 12 15:26:28 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2011/07/13 14:09:36 mrg Exp $
+# $NetBSD: Makefile,v 1.14 2014/01/12 15:26:28 tsutsui Exp $
 
 .include <bsd.own.mk>
 .include <bsd.sys.mk>  # for ${HOST_SH}
@@ -21,6 +21,7 @@
 
 # XXX SHOULD NOT NEED TO DEFINE THESE!
 LIBCRT0=
+LIBCRTI=
 LIBC=
 LIBCRTBEGIN=
 LIBCRTEND=
diff -r 304a46710919 -r cb4ab111f658 sys/arch/atari/stand/bootxx/Makefile.bootxx
--- a/sys/arch/atari/stand/bootxx/Makefile.bootxx       Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/atari/stand/bootxx/Makefile.bootxx       Sun Jan 12 15:26:28 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.bootxx,v 1.10 2010/07/06 05:59:57 mrg Exp $
+#      $NetBSD: Makefile.bootxx,v 1.11 2014/01/12 15:26:28 tsutsui Exp $
 
 NOMAN= # defined
 
@@ -11,6 +11,7 @@
 
 # XXX SHOULD NOT NEED TO DEFINE THESE!
 LIBCRT0=
+LIBCRTI=
 LIBC=
 LIBCRTBEGIN=
 LIBCRTEND=
diff -r 304a46710919 -r cb4ab111f658 sys/arch/atari/stand/bootxxx/Makefile.bootxxx
--- a/sys/arch/atari/stand/bootxxx/Makefile.bootxxx     Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/atari/stand/bootxxx/Makefile.bootxxx     Sun Jan 12 15:26:28 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.bootxxx,v 1.7 2010/07/06 05:59:58 mrg Exp $
+#      $NetBSD: Makefile.bootxxx,v 1.8 2014/01/12 15:26:28 tsutsui Exp $
 
 NOMAN= # defined
 
@@ -11,6 +11,7 @@
 
 # XXX SHOULD NOT NEED TO DEFINE THESE!
 LIBCRT0=
+LIBCRTI=
 LIBC=
 LIBCRTBEGIN=
 LIBCRTEND=
diff -r 304a46710919 -r cb4ab111f658 sys/arch/atari/stand/xxboot/Makefile.xxboot
--- a/sys/arch/atari/stand/xxboot/Makefile.xxboot       Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/atari/stand/xxboot/Makefile.xxboot       Sun Jan 12 15:26:28 2014 +0000
@@ -1,9 +1,10 @@
-#      $NetBSD: Makefile.xxboot,v 1.5 2009/01/06 13:35:30 tsutsui Exp $
+#      $NetBSD: Makefile.xxboot,v 1.6 2014/01/12 15:26:28 tsutsui Exp $
 
 BINMODE=       ${NONBINMODE}
 
 # XXX SHOULD NOT NEED TO DEFINE THESE!
 LIBCRT0=
+LIBCRTI=
 LIBC=
 LIBCRTBEGIN=
 LIBCRTEND=
diff -r 304a46710919 -r cb4ab111f658 sys/arch/atari/stand/xxboot/ahdi-sdb00t/Makefile.sdb00t
--- a/sys/arch/atari/stand/xxboot/ahdi-sdb00t/Makefile.sdb00t   Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/atari/stand/xxboot/ahdi-sdb00t/Makefile.sdb00t   Sun Jan 12 15:26:28 2014 +0000
@@ -1,9 +1,10 @@
-#      $NetBSD: Makefile.sdb00t,v 1.3 2005/12/11 12:17:02 christos Exp $
+#      $NetBSD: Makefile.sdb00t,v 1.4 2014/01/12 15:26:28 tsutsui Exp $
 
 PROG=  sdb00t.ahdi
 SRCS=  sdb00t.ahdi.S
 NOMAN= # defined
 LIBCRT0=
+LIBCRTI=
 
 .PATH: ${.CURDIR}/..
 
diff -r 304a46710919 -r cb4ab111f658 sys/arch/atari/stand/xxboot/ahdi-wdb00t/Makefile
--- a/sys/arch/atari/stand/xxboot/ahdi-wdb00t/Makefile  Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/atari/stand/xxboot/ahdi-wdb00t/Makefile  Sun Jan 12 15:26:28 2014 +0000
@@ -1,10 +1,11 @@
-#      $NetBSD: Makefile,v 1.9 2005/12/11 12:17:02 christos Exp $
+#      $NetBSD: Makefile,v 1.10 2014/01/12 15:26:28 tsutsui Exp $
 
 BTYPE= STD
 PROG=  wdb00t.ahdi
 SRCS=  wdb00t.ahdi.S
 NOMAN= # defined
 LIBCRT0=
+LIBCRTI=
 
 .include <../Makefile.xxboot>
 .include <bsd.prog.mk>
diff -r 304a46710919 -r cb4ab111f658 sys/arch/atari/stand/xxboot/ahdi-xxboot/Makefile.xxb
--- a/sys/arch/atari/stand/xxboot/ahdi-xxboot/Makefile.xxb      Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/atari/stand/xxboot/ahdi-xxboot/Makefile.xxb      Sun Jan 12 15:26:28 2014 +0000
@@ -1,9 +1,10 @@
-#      $NetBSD: Makefile.xxb,v 1.3 2005/12/11 12:17:02 christos Exp $
+#      $NetBSD: Makefile.xxb,v 1.4 2014/01/12 15:26:28 tsutsui Exp $
 
 PROG=  xxboot.ahdi
 SRCS=  xxboot.ahdi.S
 NOMAN= # defined
 LIBCRT0=
+LIBCRTI=
 .PATH: ${.CURDIR}/..
 
 .include <../../Makefile.xxboot>
diff -r 304a46710919 -r cb4ab111f658 sys/arch/atari/stand/xxboot/fdboot/Makefile.fdboot
--- a/sys/arch/atari/stand/xxboot/fdboot/Makefile.fdboot        Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/atari/stand/xxboot/fdboot/Makefile.fdboot        Sun Jan 12 15:26:28 2014 +0000
@@ -1,9 +1,10 @@
-#      $NetBSD: Makefile.fdboot,v 1.3 2005/12/11 12:17:02 christos Exp $
+#      $NetBSD: Makefile.fdboot,v 1.4 2014/01/12 15:26:28 tsutsui Exp $
 
 PROG=  fdboot
 SRCS=  fdboot.S
 NOMAN= # defined
 LIBCRT0=
+LIBCRTI=
 
 .PATH: ${.CURDIR}/..
 
diff -r 304a46710919 -r cb4ab111f658 sys/arch/atari/stand/xxboot/sdboot/Makefile.sdboot
--- a/sys/arch/atari/stand/xxboot/sdboot/Makefile.sdboot        Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/atari/stand/xxboot/sdboot/Makefile.sdboot        Sun Jan 12 15:26:28 2014 +0000
@@ -1,9 +1,10 @@
-#      $NetBSD: Makefile.sdboot,v 1.3 2005/12/11 12:17:02 christos Exp $
+#      $NetBSD: Makefile.sdboot,v 1.4 2014/01/12 15:26:28 tsutsui Exp $
 
 PROG=  sdboot
 SRCS=  sdboot.S
 NOMAN= # defined
 LIBCRT0=
+LIBCRTI=
 
 .PATH: ${.CURDIR}/..
 
diff -r 304a46710919 -r cb4ab111f658 sys/arch/atari/stand/xxboot/wdboot/Makefile
--- a/sys/arch/atari/stand/xxboot/wdboot/Makefile       Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/atari/stand/xxboot/wdboot/Makefile       Sun Jan 12 15:26:28 2014 +0000
@@ -1,10 +1,11 @@
-#      $NetBSD: Makefile,v 1.9 2005/12/11 12:17:02 christos Exp $
+#      $NetBSD: Makefile,v 1.10 2014/01/12 15:26:28 tsutsui Exp $
 
 BTYPE= STD
 PROG=  wdboot
 SRCS=  wdboot.S
 NOMAN= # defined
 LIBCRT0=
+LIBCRTI=
 
 .include <../Makefile.xxboot>
 .include <bsd.prog.mk>
diff -r 304a46710919 -r cb4ab111f658 sys/arch/bebox/stand/boot/Makefile
--- a/sys/arch/bebox/stand/boot/Makefile        Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/bebox/stand/boot/Makefile        Sun Jan 12 15:26:28 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.33 2013/08/21 06:53:10 matt Exp $
+#      $NetBSD: Makefile,v 1.34 2014/01/12 15:26:28 tsutsui Exp $
 
 NOMAN= # defined
 
@@ -50,6 +50,7 @@
 
 # XXX SHOULD NOT NEED TO DEFINE THESE!
 LIBCRT0=
+LIBCRTI=
 LIBC=
 LIBCRTBEGIN=
 LIBCRTEND=
diff -r 304a46710919 -r cb4ab111f658 sys/arch/cobalt/stand/boot/Makefile
--- a/sys/arch/cobalt/stand/boot/Makefile       Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/cobalt/stand/boot/Makefile       Sun Jan 12 15:26:28 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.25 2011/07/10 08:42:55 mrg Exp $
+#      $NetBSD: Makefile,v 1.26 2014/01/12 15:26:28 tsutsui Exp $
 
 NOMAN= # defined
 
@@ -16,6 +16,7 @@
 
 # XXX SHOULD NOT NEED TO DEFINE THESE!
 LIBCRT0=
+LIBCRTI=
 LIBC=
 LIBCRTBEGIN=
 LIBCRTEND=
diff -r 304a46710919 -r cb4ab111f658 sys/arch/emips/stand/Makefile.booters
--- a/sys/arch/emips/stand/Makefile.booters     Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/emips/stand/Makefile.booters     Sun Jan 12 15:26:28 2014 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.booters,v 1.3 2013/10/04 15:01:52 christos Exp $
+# $NetBSD: Makefile.booters,v 1.4 2014/01/12 15:26:28 tsutsui Exp $
 
 .include <bsd.sys.mk>          # for HOST_SH
 
@@ -9,6 +9,7 @@
 
 # XXX SHOULD NOT NEED TO DEFINE THESE!
 LIBCRT0=
+LIBCRTI=
 LIBC=
 LIBCRTBEGIN=
 LIBCRTEND=
diff -r 304a46710919 -r cb4ab111f658 sys/arch/evbarm/stand/boot2440/Makefile
--- a/sys/arch/evbarm/stand/boot2440/Makefile   Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/evbarm/stand/boot2440/Makefile   Sun Jan 12 15:26:28 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.15 2013/12/15 18:08:37 joerg Exp $
+#      $NetBSD: Makefile,v 1.16 2014/01/12 15:26:28 tsutsui Exp $
 
 S=             ${.CURDIR}/../../../..
 
@@ -27,6 +27,7 @@
 CWARNFLAGS.clang+=     -Wno-asm-operand-widths
 
 LIBCRT0=       # nothing
+LIBCRTI=       # nothing
 LIBCRTBEGIN=   # nothing
 LIBCRTEND=     # nothing
 LIBC=          # nothing
diff -r 304a46710919 -r cb4ab111f658 sys/arch/evbarm/stand/bootimx23/Makefile
--- a/sys/arch/evbarm/stand/bootimx23/Makefile  Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/evbarm/stand/bootimx23/Makefile  Sun Jan 12 15:26:28 2014 +0000
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.12 2013/12/15 18:08:37 joerg Exp $
+# $Id: Makefile,v 1.13 2014/01/12 15:26:29 tsutsui Exp $
 
 S=             ${.CURDIR}/../../../../
 PROG=          bootimx23
@@ -23,6 +23,7 @@
 DBG=           -g
 
 LIBCRT0=       # nothing
+LIBCRTI=       # nothing
 LIBCRTBEGIN=   # nothing
 LIBCRTEND=     # nothing
 LIBC=          # nothing
diff -r 304a46710919 -r cb4ab111f658 sys/arch/evbarm/stand/gzboot/Makefile.gzboot
--- a/sys/arch/evbarm/stand/gzboot/Makefile.gzboot      Sun Jan 12 15:19:57 2014 +0000
+++ b/sys/arch/evbarm/stand/gzboot/Makefile.gzboot      Sun Jan 12 15:26:28 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.gzboot,v 1.29 2013/12/15 18:08:37 joerg Exp $
+#      $NetBSD: Makefile.gzboot,v 1.30 2014/01/12 15:26:29 tsutsui Exp $



Home | Main Index | Thread Index | Old Index