Merge b63e576677 into 4db99f4012
This commit is contained in:
commit
7b135e696b
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.39 2010/04/23 19:41:02 joerg Exp $
|
# $NetBSD: Makefile,v 1.41 2019/10/13 07:28:04 mrg Exp $
|
||||||
# @(#)Makefile 8.1 (Berkeley) 5/31/93
|
# @(#)Makefile 8.1 (Berkeley) 5/31/93
|
||||||
|
|
||||||
.include <bsd.own.mk>
|
.include <bsd.own.mk>
|
||||||
|
|
@ -23,7 +23,7 @@ LDADD+= -lutil
|
||||||
.endif
|
.endif
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
MAN= pax.1 tar.1 cpio.1
|
MAN= pax.1
|
||||||
|
|
||||||
.if defined(HOSTPROG)
|
.if defined(HOSTPROG)
|
||||||
CPPFLAGS+= -DHOSTPROG
|
CPPFLAGS+= -DHOSTPROG
|
||||||
|
|
@ -35,12 +35,14 @@ CPPFLAGS+= -DHAVE_SYS_MTIO_H
|
||||||
.if ${MKBSDTAR} == "no"
|
.if ${MKBSDTAR} == "no"
|
||||||
LINKS+= ${BINDIR}/pax ${BINDIR}/tar
|
LINKS+= ${BINDIR}/pax ${BINDIR}/tar
|
||||||
SYMLINKS+=${BINDIR}/tar /usr/bin/tar
|
SYMLINKS+=${BINDIR}/tar /usr/bin/tar
|
||||||
|
MAN+=tar.1
|
||||||
.if defined(__MINIX)
|
.if defined(__MINIX)
|
||||||
SYMLINKS+=${BINDIR}/tar /usr/bin/bsdtar
|
SYMLINKS+=${BINDIR}/tar /usr/bin/bsdtar
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
LINKS+= ${BINDIR}/pax ${BINDIR}/cpio
|
LINKS+= ${BINDIR}/pax ${BINDIR}/cpio
|
||||||
SYMLINKS+=${BINDIR}/cpio /usr/bin/cpio
|
SYMLINKS+=${BINDIR}/cpio /usr/bin/cpio
|
||||||
|
MAN+=cpio.1
|
||||||
.endif
|
.endif
|
||||||
.endif # } ! HOSTPROG
|
.endif # } ! HOSTPROG
|
||||||
|
|
||||||
|
|
@ -57,4 +59,6 @@ CPPFLAGS+= -DHOSTPROG
|
||||||
MLINKS+= pax.1 bsdtar.1
|
MLINKS+= pax.1 bsdtar.1
|
||||||
.endif # defined(__MINIX)
|
.endif # defined(__MINIX)
|
||||||
|
|
||||||
|
COPTS.tar.c+= ${GCC_NO_STRINGOP_TRUNCATION}
|
||||||
|
|
||||||
.include <bsd.prog.mk>
|
.include <bsd.prog.mk>
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: ar_io.c,v 1.56 2015/03/09 23:38:08 sevan Exp $ */
|
/* $NetBSD: ar_io.c,v 1.59 2019/02/04 04:36:41 mrg Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1992 Keith Muller.
|
* Copyright (c) 1992 Keith Muller.
|
||||||
|
|
@ -42,27 +42,27 @@
|
||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)ar_io.c 8.2 (Berkeley) 4/18/94";
|
static char sccsid[] = "@(#)ar_io.c 8.2 (Berkeley) 4/18/94";
|
||||||
#else
|
#else
|
||||||
__RCSID("$NetBSD: ar_io.c,v 1.56 2015/03/09 23:38:08 sevan Exp $");
|
__RCSID("$NetBSD: ar_io.c,v 1.59 2019/02/04 04:36:41 mrg Exp $");
|
||||||
#endif
|
#endif
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
#include <sys/time.h>
|
|
||||||
#include <sys/stat.h>
|
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#ifdef HAVE_SYS_MTIO_H
|
#ifdef HAVE_SYS_MTIO_H
|
||||||
#include <sys/mtio.h>
|
#include <sys/mtio.h>
|
||||||
#endif
|
#endif
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#include <sys/time.h>
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
#include <signal.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <fcntl.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
#include <signal.h>
|
||||||
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <time.h>
|
||||||
|
#include <unistd.h>
|
||||||
#ifdef SUPPORT_RMT
|
#ifdef SUPPORT_RMT
|
||||||
#define __RMTLIB_PRIVATE
|
#define __RMTLIB_PRIVATE
|
||||||
#include <rmt.h>
|
#include <rmt.h>
|
||||||
|
|
@ -1631,8 +1631,7 @@ void
|
||||||
ar_summary(int n)
|
ar_summary(int n)
|
||||||
{
|
{
|
||||||
time_t secs;
|
time_t secs;
|
||||||
int len;
|
char buf[4096];
|
||||||
char buf[BUFSIZ];
|
|
||||||
char tbuf[MAXPATHLEN/4]; /* XXX silly size! */
|
char tbuf[MAXPATHLEN/4]; /* XXX silly size! */
|
||||||
char s1buf[MAXPATHLEN/8]; /* XXX very silly size! */
|
char s1buf[MAXPATHLEN/8]; /* XXX very silly size! */
|
||||||
char s2buf[MAXPATHLEN/8]; /* XXX very silly size! */
|
char s2buf[MAXPATHLEN/8]; /* XXX very silly size! */
|
||||||
|
|
@ -1657,33 +1656,32 @@ ar_summary(int n)
|
||||||
* could have written anything yet.
|
* could have written anything yet.
|
||||||
*/
|
*/
|
||||||
if (frmt == NULL && act != COPY) {
|
if (frmt == NULL && act != COPY) {
|
||||||
len = snprintf(buf, sizeof(buf),
|
snprintf(buf, sizeof(buf),
|
||||||
"unknown format, %s skipped in %s\n",
|
"unknown format, %s skipped in %s\n",
|
||||||
sizefmt(s1buf, sizeof(s1buf), rdcnt),
|
sizefmt(s1buf, sizeof(s1buf), rdcnt),
|
||||||
timefmt(tbuf, sizeof(tbuf), rdcnt, secs, "bytes"));
|
timefmt(tbuf, sizeof(tbuf), rdcnt, secs, "bytes"));
|
||||||
if (n == 0)
|
if (n == 0)
|
||||||
(void)fprintf(outf, "%s: %s", argv0, buf);
|
(void)fprintf(outf, "%s: %s", argv0, buf);
|
||||||
else
|
else
|
||||||
(void)write(STDERR_FILENO, buf, len);
|
(void)write(STDERR_FILENO, buf, strlen(buf));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (n != 0 && *archd.name) {
|
if (n != 0 && *archd.name) {
|
||||||
len = snprintf(buf, sizeof(buf), "Working on `%s' (%s)\n",
|
snprintf(buf, sizeof(buf), "Working on `%s' (%s)\n",
|
||||||
archd.name, sizefmt(s1buf, sizeof(s1buf), archd.sb.st_size));
|
archd.name, sizefmt(s1buf, sizeof(s1buf), archd.sb.st_size));
|
||||||
(void)write(STDERR_FILENO, buf, len);
|
(void)write(STDERR_FILENO, buf, strlen(buf));
|
||||||
len = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (act == COPY) {
|
if (act == COPY) {
|
||||||
len = snprintf(buf, sizeof(buf),
|
snprintf(buf, sizeof(buf),
|
||||||
"%lu files in %s\n",
|
"%lu files in %s\n",
|
||||||
(unsigned long)flcnt,
|
(unsigned long)flcnt,
|
||||||
timefmt(tbuf, sizeof(tbuf), flcnt, secs, "files"));
|
timefmt(tbuf, sizeof(tbuf), flcnt, secs, "files"));
|
||||||
} else {
|
} else {
|
||||||
len = snprintf(buf, sizeof(buf),
|
snprintf(buf, sizeof(buf),
|
||||||
"%s vol %d, %lu files, %s read, %s written in %s\n",
|
"%s vol %d, %lu files, %s read, %s written in %s\n",
|
||||||
frmt->name, arvol-1, (unsigned long)flcnt,
|
frmt->name, arvol-1, (unsigned long)flcnt,
|
||||||
sizefmt(s1buf, sizeof(s1buf), rdcnt),
|
sizefmt(s1buf, sizeof(s1buf), rdcnt),
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: buf_subs.c,v 1.28 2007/04/29 20:23:34 msaitoh Exp $ */
|
/* $NetBSD: buf_subs.c,v 1.29 2018/03/19 03:11:39 msaitoh Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1992 Keith Muller.
|
* Copyright (c) 1992 Keith Muller.
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)buf_subs.c 8.2 (Berkeley) 4/18/94";
|
static char sccsid[] = "@(#)buf_subs.c 8.2 (Berkeley) 4/18/94";
|
||||||
#else
|
#else
|
||||||
__RCSID("$NetBSD: buf_subs.c,v 1.28 2007/04/29 20:23:34 msaitoh Exp $");
|
__RCSID("$NetBSD: buf_subs.c,v 1.29 2018/03/19 03:11:39 msaitoh Exp $");
|
||||||
#endif
|
#endif
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
|
|
@ -493,7 +493,7 @@ wr_rdbuf(char *out, int outcnt)
|
||||||
int cnt;
|
int cnt;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* while there is data to copy copy into the write buffer. when the
|
* while there is data to copy into the write buffer. when the
|
||||||
* write buffer fills, flush it to the archive and continue
|
* write buffer fills, flush it to the archive and continue
|
||||||
*/
|
*/
|
||||||
while (outcnt > 0) {
|
while (outcnt > 0) {
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
.\" $NetBSD: cpio.1,v 1.14 2015/12/19 18:48:33 wiz Exp $
|
.\" $NetBSD: cpio.1,v 1.15 2017/07/03 21:33:23 wiz Exp $
|
||||||
.\"
|
.\"
|
||||||
.\" Copyright (c) 1997 SigmaSoft, Th. Lockert
|
.\" Copyright (c) 1997 SigmaSoft, Th. Lockert
|
||||||
.\" All rights reserved.
|
.\" All rights reserved.
|
||||||
|
|
@ -39,8 +39,8 @@
|
||||||
.Op Fl F Ar archive
|
.Op Fl F Ar archive
|
||||||
.Op Fl H Ar format
|
.Op Fl H Ar format
|
||||||
.Op Fl O Ar archive
|
.Op Fl O Ar archive
|
||||||
.Ar "\*[Lt] name-list"
|
.Ar "< name-list"
|
||||||
.Op Ar "\*[Gt] archive"
|
.Op Ar "> archive"
|
||||||
.Nm cpio
|
.Nm cpio
|
||||||
.Fl i
|
.Fl i
|
||||||
.Op Fl 6BbcdfmrSstuvZz
|
.Op Fl 6BbcdfmrSstuvZz
|
||||||
|
|
@ -50,12 +50,12 @@
|
||||||
.Op Fl H Ar format
|
.Op Fl H Ar format
|
||||||
.Op Fl I Ar archive
|
.Op Fl I Ar archive
|
||||||
.Op Ar "pattern ..."
|
.Op Ar "pattern ..."
|
||||||
.Op Ar "\*[Lt] archive"
|
.Op Ar "< archive"
|
||||||
.Nm cpio
|
.Nm cpio
|
||||||
.Fl p
|
.Fl p
|
||||||
.Op Fl adLlmuv
|
.Op Fl adLlmuv
|
||||||
.Ar destination-directory
|
.Ar destination-directory
|
||||||
.Ar "\*[Lt] name-list"
|
.Ar "< name-list"
|
||||||
.Sh DESCRIPTION
|
.Sh DESCRIPTION
|
||||||
The
|
The
|
||||||
.Nm
|
.Nm
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: dumptar.c,v 1.2 2008/04/28 20:22:51 martin Exp $ */
|
/* $NetBSD: dumptar.c,v 1.3 2016/05/30 17:34:35 dholland Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 2004 The NetBSD Foundation, Inc.
|
* Copyright (c) 2004 The NetBSD Foundation, Inc.
|
||||||
|
|
@ -30,8 +30,12 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <err.h>
|
#include <string.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <unistd.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
#include <err.h>
|
||||||
|
#include <assert.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
|
|
||||||
|
|
@ -39,20 +43,25 @@
|
||||||
|
|
||||||
#define ussum(a) 1
|
#define ussum(a) 1
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Ensure null termination.
|
||||||
|
*/
|
||||||
static char *
|
static char *
|
||||||
buf(const char *p, size_t s)
|
buf(const char *p, size_t s)
|
||||||
{
|
{
|
||||||
static char buf[1024];
|
static char buf[1024];
|
||||||
(void)snprintf(buf, sizeof(buf), "%s", p);
|
|
||||||
|
assert(s < sizeof(buf));
|
||||||
|
memcpy(buf, p, s);
|
||||||
buf[s] = '\0';
|
buf[s] = '\0';
|
||||||
return buf;
|
return buf;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
static int
|
||||||
intarg(const char *p, size_t s)
|
intarg(const char *p, size_t s)
|
||||||
{
|
{
|
||||||
char *ep, *b = buf(p, s);
|
char *ep, *b = buf(p, s);
|
||||||
int r = (int)strtol(p, &ep, 8);
|
int r = (int)strtol(b, &ep, 8);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: extern.h,v 1.59 2012/08/09 08:09:21 christos Exp $ */
|
/* $NetBSD: extern.h,v 1.60 2020/04/03 16:13:32 joerg Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1992 Keith Muller.
|
* Copyright (c) 1992 Keith Muller.
|
||||||
|
|
@ -204,9 +204,8 @@ void options(int, char **);
|
||||||
OPLIST * opt_next(void);
|
OPLIST * opt_next(void);
|
||||||
int bad_opt(void);
|
int bad_opt(void);
|
||||||
int mkpath(char *);
|
int mkpath(char *);
|
||||||
char *chdname;
|
|
||||||
#if !HAVE_NBTOOL_CONFIG_H
|
#if !HAVE_NBTOOL_CONFIG_H
|
||||||
int do_chroot;
|
extern int do_chroot;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: file_subs.c,v 1.63 2013/07/29 17:46:36 christos Exp $ */
|
/* $NetBSD: file_subs.c,v 1.64 2019/03/20 03:13:39 gutteridge Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1992 Keith Muller.
|
* Copyright (c) 1992 Keith Muller.
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)file_subs.c 8.1 (Berkeley) 5/31/93";
|
static char sccsid[] = "@(#)file_subs.c 8.1 (Berkeley) 5/31/93";
|
||||||
#else
|
#else
|
||||||
__RCSID("$NetBSD: file_subs.c,v 1.63 2013/07/29 17:46:36 christos Exp $");
|
__RCSID("$NetBSD: file_subs.c,v 1.64 2019/03/20 03:13:39 gutteridge Exp $");
|
||||||
#endif
|
#endif
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
|
|
@ -913,7 +913,7 @@ set_chflags(char *fnm, u_int32_t flags)
|
||||||
* actual storage is quite small (the files are sparse). The problem is
|
* actual storage is quite small (the files are sparse). The problem is
|
||||||
* the holes read as all zeros so are probably stored on the archive that
|
* the holes read as all zeros so are probably stored on the archive that
|
||||||
* way (there is no way to determine if the file block is really a hole,
|
* way (there is no way to determine if the file block is really a hole,
|
||||||
* we only know that a file block of all zero's can be a hole).
|
* we only know that a file block of all zeros can be a hole).
|
||||||
* At this writing, no major archive format knows how to archive files
|
* At this writing, no major archive format knows how to archive files
|
||||||
* with holes. However, on extraction (or during copy, -rw) we have to
|
* with holes. However, on extraction (or during copy, -rw) we have to
|
||||||
* deal with these files. Without detecting the holes, the files can
|
* deal with these files. Without detecting the holes, the files can
|
||||||
|
|
@ -986,7 +986,7 @@ file_write(int fd, char *str, int cnt, int *rem, int *isempt, int sz,
|
||||||
if (*isempt) {
|
if (*isempt) {
|
||||||
/*
|
/*
|
||||||
* have not written to this block yet, so we keep
|
* have not written to this block yet, so we keep
|
||||||
* looking for zero's
|
* looking for zeros
|
||||||
*/
|
*/
|
||||||
pt = st;
|
pt = st;
|
||||||
end = st + wcnt;
|
end = st + wcnt;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: gen_subs.c,v 1.36 2012/08/09 08:09:21 christos Exp $ */
|
/* $NetBSD: gen_subs.c,v 1.37 2018/11/30 00:53:11 christos Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1992 Keith Muller.
|
* Copyright (c) 1992 Keith Muller.
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)gen_subs.c 8.1 (Berkeley) 5/31/93";
|
static char sccsid[] = "@(#)gen_subs.c 8.1 (Berkeley) 5/31/93";
|
||||||
#else
|
#else
|
||||||
__RCSID("$NetBSD: gen_subs.c,v 1.36 2012/08/09 08:09:21 christos Exp $");
|
__RCSID("$NetBSD: gen_subs.c,v 1.37 2018/11/30 00:53:11 christos Exp $");
|
||||||
#endif
|
#endif
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
|
|
@ -306,12 +306,10 @@ u32_asc(uintmax_t val, char *str, int len, int base)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* asc_umax()
|
* asc_umax()
|
||||||
* convert hex/octal character string into a uintmax. We do
|
* convert hex/octal/base-256 value into a uintmax.
|
||||||
* not have to to check for overflow! (the headers in all supported
|
|
||||||
* formats are not large enough to create an overflow).
|
|
||||||
* NOTE: strings passed to us are NOT TERMINATED.
|
* NOTE: strings passed to us are NOT TERMINATED.
|
||||||
* Return:
|
* Return:
|
||||||
* uintmax_t value
|
* uintmax_t value; UINTMAX_MAX for overflow/negative
|
||||||
*/
|
*/
|
||||||
|
|
||||||
uintmax_t
|
uintmax_t
|
||||||
|
|
@ -322,6 +320,30 @@ asc_umax(char *str, int len, int base)
|
||||||
|
|
||||||
stop = str + len;
|
stop = str + len;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* if the highest bit of first byte is set, it's base-256 encoded
|
||||||
|
* (base-256 is basically (n-1)-bit big endian signed
|
||||||
|
*/
|
||||||
|
if (str < stop && (*str & 0x80)) {
|
||||||
|
/*
|
||||||
|
* uintmax_t can't be negative, so fail on negative numbers
|
||||||
|
*/
|
||||||
|
if (*str & 0x40)
|
||||||
|
return UINTMAX_MAX;
|
||||||
|
|
||||||
|
tval = *str++ & 0x3f;
|
||||||
|
while (str < stop) {
|
||||||
|
/*
|
||||||
|
* check for overflow
|
||||||
|
*/
|
||||||
|
if (tval > (UINTMAX_MAX/256))
|
||||||
|
return UINTMAX_MAX;
|
||||||
|
tval = (tval << 8) | ((*str++) & 0xFF);
|
||||||
|
}
|
||||||
|
|
||||||
|
return tval;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* skip over leading blanks and zeros
|
* skip over leading blanks and zeros
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: options.c,v 1.116 2015/04/11 15:41:33 christos Exp $ */
|
/* $NetBSD: options.c,v 1.119 2020/04/03 16:13:32 joerg Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1992 Keith Muller.
|
* Copyright (c) 1992 Keith Muller.
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)options.c 8.2 (Berkeley) 4/18/94";
|
static char sccsid[] = "@(#)options.c 8.2 (Berkeley) 4/18/94";
|
||||||
#else
|
#else
|
||||||
__RCSID("$NetBSD: options.c,v 1.116 2015/04/11 15:41:33 christos Exp $");
|
__RCSID("$NetBSD: options.c,v 1.119 2020/04/03 16:13:32 joerg Exp $");
|
||||||
#endif
|
#endif
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
|
|
@ -64,6 +64,7 @@ __RCSID("$NetBSD: options.c,v 1.116 2015/04/11 15:41:33 christos Exp $");
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <paths.h>
|
#include <paths.h>
|
||||||
|
#include <util.h>
|
||||||
#include "pax.h"
|
#include "pax.h"
|
||||||
#include "options.h"
|
#include "options.h"
|
||||||
#include "cpio.h"
|
#include "cpio.h"
|
||||||
|
|
@ -73,9 +74,15 @@ __RCSID("$NetBSD: options.c,v 1.116 2015/04/11 15:41:33 christos Exp $");
|
||||||
#include "mtree.h"
|
#include "mtree.h"
|
||||||
#endif /* SMALL */
|
#endif /* SMALL */
|
||||||
|
|
||||||
|
char *chdname;
|
||||||
|
#if !HAVE_NBTOOL_CONFIG_H
|
||||||
|
int do_chroot;
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Routines which handle command line options
|
* Routines which handle command line options
|
||||||
*/
|
*/
|
||||||
|
struct stat tst; /* Timestamp to set if non-0 */
|
||||||
|
|
||||||
static int nopids; /* tar mode: suppress "pids" for -p option */
|
static int nopids; /* tar mode: suppress "pids" for -p option */
|
||||||
static char flgch[] = FLGCH; /* list of all possible flags (pax) */
|
static char flgch[] = FLGCH; /* list of all possible flags (pax) */
|
||||||
|
|
@ -88,6 +95,9 @@ static void printflg(unsigned int);
|
||||||
static int c_frmt(const void *, const void *);
|
static int c_frmt(const void *, const void *);
|
||||||
static off_t str_offt(char *);
|
static off_t str_offt(char *);
|
||||||
static char *get_line(FILE *fp);
|
static char *get_line(FILE *fp);
|
||||||
|
#ifndef SMALL
|
||||||
|
static int set_tstamp(const char *, struct stat *);
|
||||||
|
#endif
|
||||||
static void pax_options(int, char **);
|
static void pax_options(int, char **);
|
||||||
__dead static void pax_usage(void);
|
__dead static void pax_usage(void);
|
||||||
static void tar_options(int, char **);
|
static void tar_options(int, char **);
|
||||||
|
|
@ -129,8 +139,9 @@ static int get_line_error;
|
||||||
#define OPT_SPARSE 16
|
#define OPT_SPARSE 16
|
||||||
#define OPT_XZ 17
|
#define OPT_XZ 17
|
||||||
#define OPT_GNU 18
|
#define OPT_GNU 18
|
||||||
|
#define OPT_TIMESTAMP 19
|
||||||
#if !HAVE_NBTOOL_CONFIG_H
|
#if !HAVE_NBTOOL_CONFIG_H
|
||||||
#define OPT_CHROOT 19
|
#define OPT_CHROOT 20
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
@ -251,6 +262,8 @@ struct option pax_longopts[] = {
|
||||||
OPT_XZ },
|
OPT_XZ },
|
||||||
{ "gnu", no_argument, 0,
|
{ "gnu", no_argument, 0,
|
||||||
OPT_GNU },
|
OPT_GNU },
|
||||||
|
{ "timestamp", required_argument, 0,
|
||||||
|
OPT_TIMESTAMP },
|
||||||
{ 0, 0, 0,
|
{ 0, 0, 0,
|
||||||
0 },
|
0 },
|
||||||
};
|
};
|
||||||
|
|
@ -661,6 +674,14 @@ pax_options(int argc, char **argv)
|
||||||
case OPT_GNU:
|
case OPT_GNU:
|
||||||
is_gnutar = 1;
|
is_gnutar = 1;
|
||||||
break;
|
break;
|
||||||
|
#ifndef SMALL
|
||||||
|
case OPT_TIMESTAMP:
|
||||||
|
if (set_tstamp(optarg, &tst) == -1) {
|
||||||
|
tty_warn(1, "Invalid timestamp `%s'", optarg);
|
||||||
|
tar_usage();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
case '?':
|
case '?':
|
||||||
default:
|
default:
|
||||||
pax_usage();
|
pax_usage();
|
||||||
|
|
@ -803,6 +824,8 @@ struct option tar_longopts[] = {
|
||||||
{ "chroot", no_argument, 0,
|
{ "chroot", no_argument, 0,
|
||||||
OPT_CHROOT },
|
OPT_CHROOT },
|
||||||
#endif
|
#endif
|
||||||
|
{ "timestamp", required_argument, 0,
|
||||||
|
OPT_TIMESTAMP },
|
||||||
#if 0 /* Not implemented */
|
#if 0 /* Not implemented */
|
||||||
{ "catenate", no_argument, 0, 'A' }, /* F */
|
{ "catenate", no_argument, 0, 'A' }, /* F */
|
||||||
{ "concatenate", no_argument, 0, 'A' }, /* F */
|
{ "concatenate", no_argument, 0, 'A' }, /* F */
|
||||||
|
|
@ -1143,6 +1166,14 @@ tar_options(int argc, char **argv)
|
||||||
case OPT_CHROOT:
|
case OPT_CHROOT:
|
||||||
do_chroot = 1;
|
do_chroot = 1;
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
|
#ifndef SMALL
|
||||||
|
case OPT_TIMESTAMP:
|
||||||
|
if (set_tstamp(optarg, &tst) == -1) {
|
||||||
|
tty_warn(1, "Invalid timestamp `%s'", optarg);
|
||||||
|
tar_usage();
|
||||||
|
}
|
||||||
|
break;
|
||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
tar_usage();
|
tar_usage();
|
||||||
|
|
@ -2083,6 +2114,43 @@ get_line(FILE *f)
|
||||||
return temp;
|
return temp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef SMALL
|
||||||
|
/*
|
||||||
|
* set_tstamp()
|
||||||
|
* Use a specific timestamp for all individual files created in the
|
||||||
|
* archive
|
||||||
|
*/
|
||||||
|
static int
|
||||||
|
set_tstamp(const char *b, struct stat *st)
|
||||||
|
{
|
||||||
|
time_t when;
|
||||||
|
char *eb;
|
||||||
|
long long l;
|
||||||
|
|
||||||
|
if (stat(b, st) != -1)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
#ifndef HAVE_NBTOOL_CONFIG_H
|
||||||
|
errno = 0;
|
||||||
|
if ((when = parsedate(b, NULL, NULL)) == -1 && errno != 0)
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
errno = 0;
|
||||||
|
l = strtoll(b, &eb, 0);
|
||||||
|
if (b == eb || *eb || errno)
|
||||||
|
return -1;
|
||||||
|
when = (time_t)l;
|
||||||
|
}
|
||||||
|
|
||||||
|
st->st_ino = 1;
|
||||||
|
#if HAVE_STRUCT_STAT_BIRTHTIME
|
||||||
|
st->st_birthtime =
|
||||||
|
#endif
|
||||||
|
st->st_mtime = st->st_ctime = st->st_atime = when;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* no_op()
|
* no_op()
|
||||||
* for those option functions where the archive format has nothing to do.
|
* for those option functions where the archive format has nothing to do.
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: pat_rep.c,v 1.29 2009/04/07 19:52:35 perry Exp $ */
|
/* $NetBSD: pat_rep.c,v 1.31 2019/03/20 02:50:50 gutteridge Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1992 Keith Muller.
|
* Copyright (c) 1992 Keith Muller.
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)pat_rep.c 8.2 (Berkeley) 4/18/94";
|
static char sccsid[] = "@(#)pat_rep.c 8.2 (Berkeley) 4/18/94";
|
||||||
#else
|
#else
|
||||||
__RCSID("$NetBSD: pat_rep.c,v 1.29 2009/04/07 19:52:35 perry Exp $");
|
__RCSID("$NetBSD: pat_rep.c,v 1.31 2019/03/20 02:50:50 gutteridge Exp $");
|
||||||
#endif
|
#endif
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
|
|
@ -85,12 +85,13 @@ static int resub(regex_t *, regmatch_t *, char *, char *, char *, char *);
|
||||||
* parses the -s replacement string; compiles the regular expression
|
* parses the -s replacement string; compiles the regular expression
|
||||||
* and stores the compiled value and its replacement string together in
|
* and stores the compiled value and its replacement string together in
|
||||||
* replacement string list. Input to this function is of the form:
|
* replacement string list. Input to this function is of the form:
|
||||||
* /old/new/pg
|
* /old/new/gps
|
||||||
* The first char in the string specifies the delimiter used by this
|
* The first char in the string specifies the delimiter used by this
|
||||||
* replacement string. "Old" is a regular expression in "ed" format which
|
* replacement string. "Old" is a regular expression in "ed" format which
|
||||||
* is compiled by regcomp() and is applied to filenames. "new" is the
|
* is compiled by regcomp() and is applied to filenames. "new" is the
|
||||||
* substitution string; p and g are options flags for printing and global
|
* substitution string; g, p, and s are options flags for global
|
||||||
* replacement (over the single filename)
|
* replacement (over the single filename), printing, and preventing
|
||||||
|
* substitutions on symbolic link destinations.
|
||||||
* Return:
|
* Return:
|
||||||
* 0 if a proper replacement string and regular expression was added to
|
* 0 if a proper replacement string and regular expression was added to
|
||||||
* the list of replacement patterns; -1 otherwise.
|
* the list of replacement patterns; -1 otherwise.
|
||||||
|
|
@ -895,7 +896,7 @@ fix_path( char *or_name, int *or_len, char *dir_name, int dir_len)
|
||||||
* namelen the size of the name buffer.
|
* namelen the size of the name buffer.
|
||||||
* nlen is the length of this name (and is modified to hold the length of
|
* nlen is the length of this name (and is modified to hold the length of
|
||||||
* the final string).
|
* the final string).
|
||||||
* prnt is a flag that says whether to print the final result.
|
* flags contains various options to control behavior.
|
||||||
* Return:
|
* Return:
|
||||||
* 0 if substitution was successful, 1 if we are to skip the file (the name
|
* 0 if substitution was successful, 1 if we are to skip the file (the name
|
||||||
* ended up empty)
|
* ended up empty)
|
||||||
|
|
@ -924,7 +925,7 @@ rep_name(char *name, size_t namelen, int *nlen, int flags)
|
||||||
* (the user already saw that substitution go by)
|
* (the user already saw that substitution go by)
|
||||||
*/
|
*/
|
||||||
pt = rephead;
|
pt = rephead;
|
||||||
(void)strcpy(buf1, name);
|
(void)strlcpy(buf1, name, sizeof(buf1));
|
||||||
inpt = buf1;
|
inpt = buf1;
|
||||||
outpt = nname;
|
outpt = nname;
|
||||||
endpt = outpt + PAXPATHLEN;
|
endpt = outpt + PAXPATHLEN;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
.\" $NetBSD: pax.1,v 1.63 2013/11/14 07:45:05 wiz Exp $
|
.\" $NetBSD: pax.1,v 1.71 2019/03/19 00:36:14 gutteridge Exp $
|
||||||
.\"
|
.\"
|
||||||
.\" Copyright (c) 1992 Keith Muller.
|
.\" Copyright (c) 1992 Keith Muller.
|
||||||
.\" Copyright (c) 1992, 1993
|
.\" Copyright (c) 1992, 1993
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
.\"
|
.\"
|
||||||
.\" @(#)pax.1 8.4 (Berkeley) 4/18/94
|
.\" @(#)pax.1 8.4 (Berkeley) 4/18/94
|
||||||
.\"
|
.\"
|
||||||
.Dd November 13, 2013
|
.Dd March 19, 2019
|
||||||
.Dt PAX 1
|
.Dt PAX 1
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
|
|
@ -572,20 +572,21 @@ using the syntax of the
|
||||||
.Xr ed 1
|
.Xr ed 1
|
||||||
utility regular expressions.
|
utility regular expressions.
|
||||||
The format of these regular expressions are:
|
The format of these regular expressions are:
|
||||||
.Dl /old/new/[gp]
|
.Dl /old/new/[gps]
|
||||||
As in
|
As in
|
||||||
.Xr ed 1 ,
|
.Xr ed 1 ,
|
||||||
.Cm old
|
.Cm old
|
||||||
is a basic regular expression and
|
is a basic regular expression and
|
||||||
.Cm new
|
.Cm new
|
||||||
can contain an ampersand (\*[Am]), \en (where n is a digit) back-references,
|
can contain an ampersand (&), \en (where n is a digit) back-references,
|
||||||
or subexpression matching.
|
or subexpression matching.
|
||||||
The
|
The
|
||||||
.Cm old
|
.Cm old
|
||||||
string may also contain
|
string may also contain
|
||||||
.Aq Dv newline
|
.Aq Dv newline
|
||||||
characters.
|
characters.
|
||||||
Any non-null character can be used as a delimiter (/ is shown here).
|
Any non-null character except a backslash (\\) can be used as a delimiter
|
||||||
|
(/ is shown here).
|
||||||
Multiple
|
Multiple
|
||||||
.Fl s
|
.Fl s
|
||||||
expressions can be specified.
|
expressions can be specified.
|
||||||
|
|
@ -604,9 +605,14 @@ The optional trailing
|
||||||
will cause the final result of a successful substitution to be written to
|
will cause the final result of a successful substitution to be written to
|
||||||
.Dv standard error
|
.Dv standard error
|
||||||
in the following format:
|
in the following format:
|
||||||
.Dl Ao "original pathname" Ac \*[Gt]\*[Gt] Ao "new pathname" Ac
|
.Dl Ao "original pathname" Ac >> Ao "new pathname" Ac
|
||||||
File or archive member names that substitute to the empty string
|
File or archive member names that substitute to the empty string
|
||||||
are not selected and will be skipped.
|
are not selected and will be skipped.
|
||||||
|
The substitutions are applied by default to the destination hard and symbolic
|
||||||
|
links.
|
||||||
|
The optional trailing
|
||||||
|
.Cm s
|
||||||
|
prevents the substitutions from being performed on symbolic link destinations.
|
||||||
.It Fl t
|
.It Fl t
|
||||||
Reset the access times of any file or directory read or accessed by
|
Reset the access times of any file or directory read or accessed by
|
||||||
.Nm
|
.Nm
|
||||||
|
|
@ -742,6 +748,19 @@ Typical archive format restrictions include (but are not limited to):
|
||||||
file pathname length, file size, link pathname length and the type of the file.
|
file pathname length, file size, link pathname length and the type of the file.
|
||||||
.It Fl Fl gnu
|
.It Fl Fl gnu
|
||||||
Recognize GNU tar extensions.
|
Recognize GNU tar extensions.
|
||||||
|
.It Fl Fl timestamp Ar timestamp
|
||||||
|
Store all modification times in the archive with the
|
||||||
|
.Ar timestamp
|
||||||
|
given instead of the actual modification time of the individual archive member
|
||||||
|
so that repeatable builds are possible.
|
||||||
|
The
|
||||||
|
.Ar timestamp
|
||||||
|
can be a
|
||||||
|
.Pa pathname ,
|
||||||
|
where the timestamps are derived from that file, a parseable date for
|
||||||
|
.Xr parsedate 3
|
||||||
|
(this option is not yet available in the tools build), or an integer value
|
||||||
|
interpreted as the number of seconds from the Epoch.
|
||||||
.It Fl Fl xz
|
.It Fl Fl xz
|
||||||
Use
|
Use
|
||||||
.Xr xz 1
|
.Xr xz 1
|
||||||
|
|
@ -958,11 +977,11 @@ Time comparisons using both file times is useful when
|
||||||
is used to create a time based incremental archive (only files that were
|
is used to create a time based incremental archive (only files that were
|
||||||
changed during a specified time range will be archived).
|
changed during a specified time range will be archived).
|
||||||
.Pp
|
.Pp
|
||||||
A time range is made up of six different fields and each field must contain two
|
A time range is made up of seven different fields and each field must contain
|
||||||
digits.
|
two digits.
|
||||||
The format is:
|
The format is:
|
||||||
.Dl [[[[[cc]yy]mm]dd]hh]mm[\&.ss]
|
.Dl [[[[[cc]yy]mm]dd]hh]mm[\&.ss]
|
||||||
Where
|
where
|
||||||
.Cm cc
|
.Cm cc
|
||||||
is the first two digits of the year (the century),
|
is the first two digits of the year (the century),
|
||||||
.Cm yy
|
.Cm yy
|
||||||
|
|
@ -1277,7 +1296,15 @@ and
|
||||||
operations are extensions to the
|
operations are extensions to the
|
||||||
.Tn POSIX
|
.Tn POSIX
|
||||||
standard.
|
standard.
|
||||||
|
.Sh HISTORY
|
||||||
|
A
|
||||||
|
.Nm
|
||||||
|
utility appeared in
|
||||||
|
.Bx 4.4 .
|
||||||
.Sh AUTHORS
|
.Sh AUTHORS
|
||||||
Keith Muller at the University of California, San Diego.
|
.An -nosplit
|
||||||
Luke Mewburn implemented
|
.An Keith Muller
|
||||||
|
at the University of California, San Diego.
|
||||||
|
.An Luke Mewburn
|
||||||
|
implemented
|
||||||
.Fl M .
|
.Fl M .
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: pax.c,v 1.47 2011/08/29 14:47:48 joerg Exp $ */
|
/* $NetBSD: pax.c,v 1.49 2019/04/24 17:27:08 cheusov Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1992 Keith Muller.
|
* Copyright (c) 1992 Keith Muller.
|
||||||
|
|
@ -44,23 +44,23 @@ __COPYRIGHT("@(#) Copyright (c) 1992, 1993\
|
||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)pax.c 8.2 (Berkeley) 4/18/94";
|
static char sccsid[] = "@(#)pax.c 8.2 (Berkeley) 4/18/94";
|
||||||
#else
|
#else
|
||||||
__RCSID("$NetBSD: pax.c,v 1.47 2011/08/29 14:47:48 joerg Exp $");
|
__RCSID("$NetBSD: pax.c,v 1.49 2019/04/24 17:27:08 cheusov Exp $");
|
||||||
#endif
|
#endif
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
|
#include <sys/resource.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
#include <sys/resource.h>
|
#include <errno.h>
|
||||||
#include <stdio.h>
|
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
#include <paths.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <unistd.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <errno.h>
|
#include <time.h>
|
||||||
#include <paths.h>
|
#include <unistd.h>
|
||||||
#include <util.h>
|
#include <util.h>
|
||||||
#include "pax.h"
|
#include "pax.h"
|
||||||
#include "extern.h"
|
#include "extern.h"
|
||||||
|
|
@ -453,28 +453,28 @@ gen_init(void)
|
||||||
|
|
||||||
if ((sigaction(SIGHUP, &n_hand, &o_hand) < 0) &&
|
if ((sigaction(SIGHUP, &n_hand, &o_hand) < 0) &&
|
||||||
(o_hand.sa_handler == SIG_IGN) &&
|
(o_hand.sa_handler == SIG_IGN) &&
|
||||||
(sigaction(SIGHUP, &o_hand, &o_hand) < 0))
|
(sigaction(SIGHUP, &o_hand, NULL) < 0))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
if ((sigaction(SIGTERM, &n_hand, &o_hand) < 0) &&
|
if ((sigaction(SIGTERM, &n_hand, &o_hand) < 0) &&
|
||||||
(o_hand.sa_handler == SIG_IGN) &&
|
(o_hand.sa_handler == SIG_IGN) &&
|
||||||
(sigaction(SIGTERM, &o_hand, &o_hand) < 0))
|
(sigaction(SIGTERM, &o_hand, NULL) < 0))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
if ((sigaction(SIGINT, &n_hand, &o_hand) < 0) &&
|
if ((sigaction(SIGINT, &n_hand, &o_hand) < 0) &&
|
||||||
(o_hand.sa_handler == SIG_IGN) &&
|
(o_hand.sa_handler == SIG_IGN) &&
|
||||||
(sigaction(SIGINT, &o_hand, &o_hand) < 0))
|
(sigaction(SIGINT, &o_hand, NULL) < 0))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
if ((sigaction(SIGQUIT, &n_hand, &o_hand) < 0) &&
|
if ((sigaction(SIGQUIT, &n_hand, &o_hand) < 0) &&
|
||||||
(o_hand.sa_handler == SIG_IGN) &&
|
(o_hand.sa_handler == SIG_IGN) &&
|
||||||
(sigaction(SIGQUIT, &o_hand, &o_hand) < 0))
|
(sigaction(SIGQUIT, &o_hand, NULL) < 0))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
#ifdef SIGXCPU
|
#ifdef SIGXCPU
|
||||||
if ((sigaction(SIGXCPU, &n_hand, &o_hand) < 0) &&
|
if ((sigaction(SIGXCPU, &n_hand, &o_hand) < 0) &&
|
||||||
(o_hand.sa_handler == SIG_IGN) &&
|
(o_hand.sa_handler == SIG_IGN) &&
|
||||||
(sigaction(SIGXCPU, &o_hand, &o_hand) < 0))
|
(sigaction(SIGXCPU, &o_hand, NULL) < 0))
|
||||||
goto out;
|
goto out;
|
||||||
#endif
|
#endif
|
||||||
n_hand.sa_handler = SIG_IGN;
|
n_hand.sa_handler = SIG_IGN;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
.\" $NetBSD: tar.1,v 1.35 2015/04/11 16:22:07 wiz Exp $
|
.\" $NetBSD: tar.1,v 1.39 2019/03/19 10:14:46 wiz Exp $
|
||||||
.\"
|
.\"
|
||||||
.\" Copyright (c) 1996 SigmaSoft, Th. Lockert
|
.\" Copyright (c) 1996 SigmaSoft, Th. Lockert
|
||||||
.\" All rights reserved.
|
.\" All rights reserved.
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
.\"
|
.\"
|
||||||
.\" OpenBSD: tar.1,v 1.28 2000/11/09 23:58:56 aaron Exp
|
.\" OpenBSD: tar.1,v 1.28 2000/11/09 23:58:56 aaron Exp
|
||||||
.\"
|
.\"
|
||||||
.Dd April 11, 2015
|
.Dd March 19, 2019
|
||||||
.Dt TAR 1
|
.Dt TAR 1
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
|
|
@ -107,10 +107,10 @@ then the archive will be processed using
|
||||||
.It Fl h , Fl Fl dereference
|
.It Fl h , Fl Fl dereference
|
||||||
Follow symbolic links as if they were normal files
|
Follow symbolic links as if they were normal files
|
||||||
or directories.
|
or directories.
|
||||||
.It Fl J, Fl Fl xz
|
.It Fl J , Fl Fl xz
|
||||||
Compress/decompress archive using
|
Compress/decompress archive using
|
||||||
.Xr xz 1 .
|
.Xr xz 1 .
|
||||||
.It Fl j, Fl Fl bzip2, Fl Fl bunzip2
|
.It Fl j , Fl Fl bzip2 , Fl Fl bunzip2
|
||||||
Use
|
Use
|
||||||
.Xr bzip2 1
|
.Xr bzip2 1
|
||||||
for compression of the archive.
|
for compression of the archive.
|
||||||
|
|
@ -170,14 +170,15 @@ As in
|
||||||
.Cm old
|
.Cm old
|
||||||
is a basic regular expression and
|
is a basic regular expression and
|
||||||
.Cm new
|
.Cm new
|
||||||
can contain an ampersand (\*[Am]), \en (where n is a digit) back-references,
|
can contain an ampersand (&), \en (where n is a digit) back-references,
|
||||||
or subexpression matching.
|
or subexpression matching.
|
||||||
The
|
The
|
||||||
.Cm old
|
.Cm old
|
||||||
string may also contain
|
string may also contain
|
||||||
.Aq Dv newline
|
.Aq Dv newline
|
||||||
characters.
|
characters.
|
||||||
Any non-null character can be used as a delimiter (/ is shown here).
|
Any non-null character except a backslash (\\) can be used as a delimiter
|
||||||
|
(/ is shown here).
|
||||||
Multiple
|
Multiple
|
||||||
.Fl s
|
.Fl s
|
||||||
expressions can be specified.
|
expressions can be specified.
|
||||||
|
|
@ -196,7 +197,7 @@ The optional trailing
|
||||||
will cause the final result of a successful substitution to be written to
|
will cause the final result of a successful substitution to be written to
|
||||||
.Dv standard error
|
.Dv standard error
|
||||||
in the following format:
|
in the following format:
|
||||||
.Dl \*[Lt]original pathname\*[Gt] \*[Gt]\*[Gt] \*[Lt]new pathname\*[Gt]
|
.Dl Ao "original pathname" Ac >> Ao "new pathname" Ac
|
||||||
File or archive member names that substitute to the empty string
|
File or archive member names that substitute to the empty string
|
||||||
are not selected and will be skipped.
|
are not selected and will be skipped.
|
||||||
The substitutions are applied by default to the destination hard and symbolic
|
The substitutions are applied by default to the destination hard and symbolic
|
||||||
|
|
@ -297,6 +298,19 @@ can be processed.
|
||||||
Cause files of type directory being copied or archived, or archive members of
|
Cause files of type directory being copied or archived, or archive members of
|
||||||
type directory being extracted, to match only the directory file or archive
|
type directory being extracted, to match only the directory file or archive
|
||||||
member and not the file hierarchy rooted at the directory.
|
member and not the file hierarchy rooted at the directory.
|
||||||
|
.It Fl Fl timestamp Ar timestamp
|
||||||
|
Store all modification times in the archive with the
|
||||||
|
.Ar timestamp
|
||||||
|
given instead of the actual modification time of the individual archive member
|
||||||
|
so that repeatable builds are possible.
|
||||||
|
The
|
||||||
|
.Ar timestamp
|
||||||
|
can be a
|
||||||
|
.Pa pathname ,
|
||||||
|
where the timestamps are derived from that file, a parseable date for
|
||||||
|
.Xr parsedate 3
|
||||||
|
(this option is not yet available in the tools build), or an integer value
|
||||||
|
interpreted as the number of seconds from the Epoch.
|
||||||
.El
|
.El
|
||||||
.Pp
|
.Pp
|
||||||
The options
|
The options
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: tar.c,v 1.72 2015/06/16 22:31:08 christos Exp $ */
|
/* $NetBSD: tar.c,v 1.75 2019/03/20 03:13:39 gutteridge Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1992 Keith Muller.
|
* Copyright (c) 1992 Keith Muller.
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)tar.c 8.2 (Berkeley) 4/18/94";
|
static char sccsid[] = "@(#)tar.c 8.2 (Berkeley) 4/18/94";
|
||||||
#else
|
#else
|
||||||
__RCSID("$NetBSD: tar.c,v 1.72 2015/06/16 22:31:08 christos Exp $");
|
__RCSID("$NetBSD: tar.c,v 1.75 2019/03/20 03:13:39 gutteridge Exp $");
|
||||||
#endif
|
#endif
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
|
|
@ -64,6 +64,8 @@ __RCSID("$NetBSD: tar.c,v 1.72 2015/06/16 22:31:08 christos Exp $");
|
||||||
#include "extern.h"
|
#include "extern.h"
|
||||||
#include "tar.h"
|
#include "tar.h"
|
||||||
|
|
||||||
|
extern struct stat tst;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Routines for reading, writing and header identify of various versions of tar
|
* Routines for reading, writing and header identify of various versions of tar
|
||||||
*/
|
*/
|
||||||
|
|
@ -349,7 +351,7 @@ tar_chksm(char *blk, int len)
|
||||||
* checksum field as the sum of 8 blanks (which is pre-computed as
|
* checksum field as the sum of 8 blanks (which is pre-computed as
|
||||||
* BLNKSUM).
|
* BLNKSUM).
|
||||||
* ASSUMED: len is greater than CHK_OFFSET. (len is where our 0 padding
|
* ASSUMED: len is greater than CHK_OFFSET. (len is where our 0 padding
|
||||||
* starts, no point in summing zero's)
|
* starts, no point in summing zeros)
|
||||||
*/
|
*/
|
||||||
pt += CHK_LEN;
|
pt += CHK_LEN;
|
||||||
stop = blk + len;
|
stop = blk + len;
|
||||||
|
|
@ -366,7 +368,7 @@ tar_chksm(char *blk, int len)
|
||||||
* tar_id()
|
* tar_id()
|
||||||
* determine if a block given to us is a valid tar header (and not a USTAR
|
* determine if a block given to us is a valid tar header (and not a USTAR
|
||||||
* header). We have to be on the lookout for those pesky blocks of all
|
* header). We have to be on the lookout for those pesky blocks of all
|
||||||
* zero's.
|
* zeros.
|
||||||
* Return:
|
* Return:
|
||||||
* 0 if a tar header, -1 otherwise
|
* 0 if a tar header, -1 otherwise
|
||||||
*/
|
*/
|
||||||
|
|
@ -384,7 +386,7 @@ tar_id(char *blk, int size)
|
||||||
uhd = (HD_USTAR *)blk;
|
uhd = (HD_USTAR *)blk;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* check for block of zero's first, a simple and fast test, then make
|
* check for block of zeros first, a simple and fast test, then make
|
||||||
* sure this is not a ustar header by looking for the ustar magic
|
* sure this is not a ustar header by looking for the ustar magic
|
||||||
* cookie. We should use TMAGLEN, but some USTAR archive programs are
|
* cookie. We should use TMAGLEN, but some USTAR archive programs are
|
||||||
* wrong and create archives missing the \0. Last we check the
|
* wrong and create archives missing the \0. Last we check the
|
||||||
|
|
@ -484,6 +486,8 @@ tar_rd(ARCHD *arcn, char *buf)
|
||||||
arcn->sb.st_uid = (uid_t)asc_u32(hd->uid, sizeof(hd->uid), OCT);
|
arcn->sb.st_uid = (uid_t)asc_u32(hd->uid, sizeof(hd->uid), OCT);
|
||||||
arcn->sb.st_gid = (gid_t)asc_u32(hd->gid, sizeof(hd->gid), OCT);
|
arcn->sb.st_gid = (gid_t)asc_u32(hd->gid, sizeof(hd->gid), OCT);
|
||||||
arcn->sb.st_size = (off_t)ASC_OFFT(hd->size, sizeof(hd->size), OCT);
|
arcn->sb.st_size = (off_t)ASC_OFFT(hd->size, sizeof(hd->size), OCT);
|
||||||
|
if (arcn->sb.st_size == -1)
|
||||||
|
return -1;
|
||||||
arcn->sb.st_mtime = (time_t)(int32_t)asc_u32(hd->mtime, sizeof(hd->mtime), OCT);
|
arcn->sb.st_mtime = (time_t)(int32_t)asc_u32(hd->mtime, sizeof(hd->mtime), OCT);
|
||||||
arcn->sb.st_ctime = arcn->sb.st_atime = arcn->sb.st_mtime;
|
arcn->sb.st_ctime = arcn->sb.st_atime = arcn->sb.st_mtime;
|
||||||
|
|
||||||
|
|
@ -587,6 +591,7 @@ tar_wr(ARCHD *arcn)
|
||||||
{
|
{
|
||||||
HD_TAR *hd;
|
HD_TAR *hd;
|
||||||
int len;
|
int len;
|
||||||
|
uintmax_t mtime;
|
||||||
char hdblk[sizeof(HD_TAR)];
|
char hdblk[sizeof(HD_TAR)];
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
@ -695,10 +700,11 @@ tar_wr(ARCHD *arcn)
|
||||||
/*
|
/*
|
||||||
* copy those fields that are independent of the type
|
* copy those fields that are independent of the type
|
||||||
*/
|
*/
|
||||||
|
mtime = tst.st_ino ? tst.st_mtime : arcn->sb.st_mtime;
|
||||||
if (u32_oct((uintmax_t)arcn->sb.st_mode, hd->mode, sizeof(hd->mode), 0) ||
|
if (u32_oct((uintmax_t)arcn->sb.st_mode, hd->mode, sizeof(hd->mode), 0) ||
|
||||||
u32_oct((uintmax_t)arcn->sb.st_uid, hd->uid, sizeof(hd->uid), 0) ||
|
u32_oct((uintmax_t)arcn->sb.st_uid, hd->uid, sizeof(hd->uid), 0) ||
|
||||||
u32_oct((uintmax_t)arcn->sb.st_gid, hd->gid, sizeof(hd->gid), 0) ||
|
u32_oct((uintmax_t)arcn->sb.st_gid, hd->gid, sizeof(hd->gid), 0) ||
|
||||||
u32_oct((uintmax_t)arcn->sb.st_mtime, hd->mtime, sizeof(hd->mtime), 1))
|
u32_oct(mtime, hd->mtime, sizeof(hd->mtime), 1))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
@ -763,7 +769,7 @@ ustar_stwr(void)
|
||||||
/*
|
/*
|
||||||
* ustar_id()
|
* ustar_id()
|
||||||
* determine if a block given to us is a valid ustar header. We have to
|
* determine if a block given to us is a valid ustar header. We have to
|
||||||
* be on the lookout for those pesky blocks of all zero's
|
* be on the lookout for those pesky blocks of all zeros
|
||||||
* Return:
|
* Return:
|
||||||
* 0 if a ustar header, -1 otherwise
|
* 0 if a ustar header, -1 otherwise
|
||||||
*/
|
*/
|
||||||
|
|
@ -778,7 +784,7 @@ ustar_id(char *blk, int size)
|
||||||
hd = (HD_USTAR *)blk;
|
hd = (HD_USTAR *)blk;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* check for block of zero's first, a simple and fast test then check
|
* check for block of zeros first, a simple and fast test then check
|
||||||
* ustar magic cookie. We should use TMAGLEN, but some USTAR archive
|
* ustar magic cookie. We should use TMAGLEN, but some USTAR archive
|
||||||
* programs are fouled up and create archives missing the \0. Last we
|
* programs are fouled up and create archives missing the \0. Last we
|
||||||
* check the checksum. If ok we have to assume it is a valid header.
|
* check the checksum. If ok we have to assume it is a valid header.
|
||||||
|
|
@ -856,6 +862,8 @@ ustar_rd(ARCHD *arcn, char *buf)
|
||||||
arcn->sb.st_mode = (mode_t)(asc_u32(hd->mode, sizeof(hd->mode), OCT) &
|
arcn->sb.st_mode = (mode_t)(asc_u32(hd->mode, sizeof(hd->mode), OCT) &
|
||||||
0xfff);
|
0xfff);
|
||||||
arcn->sb.st_size = (off_t)ASC_OFFT(hd->size, sizeof(hd->size), OCT);
|
arcn->sb.st_size = (off_t)ASC_OFFT(hd->size, sizeof(hd->size), OCT);
|
||||||
|
if (arcn->sb.st_size == -1)
|
||||||
|
return -1;
|
||||||
arcn->sb.st_mtime = (time_t)(int32_t)asc_u32(hd->mtime, sizeof(hd->mtime), OCT);
|
arcn->sb.st_mtime = (time_t)(int32_t)asc_u32(hd->mtime, sizeof(hd->mtime), OCT);
|
||||||
arcn->sb.st_ctime = arcn->sb.st_atime = arcn->sb.st_mtime;
|
arcn->sb.st_ctime = arcn->sb.st_atime = arcn->sb.st_mtime;
|
||||||
|
|
||||||
|
|
@ -1046,6 +1054,7 @@ ustar_wr(ARCHD *arcn)
|
||||||
{
|
{
|
||||||
HD_USTAR *hd;
|
HD_USTAR *hd;
|
||||||
char *pt;
|
char *pt;
|
||||||
|
uintmax_t mtime;
|
||||||
char hdblk[sizeof(HD_USTAR)];
|
char hdblk[sizeof(HD_USTAR)];
|
||||||
const char *user, *group;
|
const char *user, *group;
|
||||||
|
|
||||||
|
|
@ -1210,7 +1219,8 @@ ustar_wr(ARCHD *arcn)
|
||||||
return size_err("UID", arcn);
|
return size_err("UID", arcn);
|
||||||
if (u32_oct((uintmax_t)arcn->sb.st_gid, hd->gid, sizeof(hd->gid), 3))
|
if (u32_oct((uintmax_t)arcn->sb.st_gid, hd->gid, sizeof(hd->gid), 3))
|
||||||
return size_err("GID", arcn);
|
return size_err("GID", arcn);
|
||||||
if (u32_oct((uintmax_t)arcn->sb.st_mtime,hd->mtime,sizeof(hd->mtime),3))
|
mtime = tst.st_ino ? tst.st_mtime : arcn->sb.st_mtime;
|
||||||
|
if (u32_oct(mtime, hd->mtime, sizeof(hd->mtime), 3))
|
||||||
return size_err("MTIME", arcn);
|
return size_err("MTIME", arcn);
|
||||||
user = user_from_uid(arcn->sb.st_uid, 1);
|
user = user_from_uid(arcn->sb.st_uid, 1);
|
||||||
group = group_from_gid(arcn->sb.st_gid, 1);
|
group = group_from_gid(arcn->sb.st_gid, 1);
|
||||||
|
|
@ -1369,7 +1379,7 @@ tar_gnutar_exclude_one(const char *line, size_t len)
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* deal with GNU tar -X/--exclude-from & --exclude switchs. basically,
|
* deal with GNU tar -X/--exclude-from & --exclude switches. basically,
|
||||||
* we go through each line of the file, building a string from the "glob"
|
* we go through each line of the file, building a string from the "glob"
|
||||||
* lines in the file into RE lines, of the form `/^RE$//', which we pass
|
* lines in the file into RE lines, of the form `/^RE$//', which we pass
|
||||||
* to rep_add(), which will add a empty replacement (exclusion), for the
|
* to rep_add(), which will add a empty replacement (exclusion), for the
|
||||||
|
|
|
||||||
|
|
@ -2956,6 +2956,11 @@
|
||||||
./usr/share/i18n/iconv base-sysutil-share
|
./usr/share/i18n/iconv base-sysutil-share
|
||||||
./usr/share/i18n/iconv/iconv.dir base-sysutil-share nls
|
./usr/share/i18n/iconv/iconv.dir base-sysutil-share nls
|
||||||
./usr/share/info base-texinfo-share
|
./usr/share/info base-texinfo-share
|
||||||
|
./usr/share/installboot base-sysutil-share
|
||||||
|
./usr/share/installboot/evbarm base-sysutil-share
|
||||||
|
./usr/share/installboot/evbarm/boards.plist base-sysutil-share
|
||||||
|
./usr/share/installboot/evbmips base-sysutil-share
|
||||||
|
./usr/share/installboot/evbmips/boards.plist base-sysutil-share
|
||||||
./usr/share/keymaps base-sys-share
|
./usr/share/keymaps base-sys-share
|
||||||
./usr/share/keymaps/amiga base-sys-share
|
./usr/share/keymaps/amiga base-sys-share
|
||||||
./usr/share/keymaps/atari base-sys-share
|
./usr/share/keymaps/atari base-sys-share
|
||||||
|
|
|
||||||
|
|
@ -187,8 +187,8 @@
|
||||||
./usr/lib/libavl.so base-zfs-shlib compatfile,zfs
|
./usr/lib/libavl.so base-zfs-shlib compatfile,zfs
|
||||||
./usr/lib/libavl.so.0 base-zfs-shlib compatfile,zfs
|
./usr/lib/libavl.so.0 base-zfs-shlib compatfile,zfs
|
||||||
./usr/lib/libavl.so.0.0 base-zfs-shlib compatfile,zfs
|
./usr/lib/libavl.so.0.0 base-zfs-shlib compatfile,zfs
|
||||||
./usr/lib/libbfd.so.13 base-sys-shlib compatfile,binutils
|
./usr/lib/libbfd.so.17 base-sys-shlib compatfile,binutils
|
||||||
./usr/lib/libbfd.so.13.0 base-sys-shlib compatfile,binutils
|
./usr/lib/libbfd.so.17.0 base-sys-shlib compatfile,binutils
|
||||||
./usr/lib/libbind9.so base-bind-shlib compatfile
|
./usr/lib/libbind9.so base-bind-shlib compatfile
|
||||||
./usr/lib/libbind9.so.8 base-bind-shlib compatfile
|
./usr/lib/libbind9.so.8 base-bind-shlib compatfile
|
||||||
./usr/lib/libbind9.so.8.2 base-bind-shlib compatfile
|
./usr/lib/libbind9.so.8.2 base-bind-shlib compatfile
|
||||||
|
|
|
||||||
|
|
@ -663,6 +663,32 @@
|
||||||
./usr/lib/oabi/libc_vfp.a comp-c-lib compat
|
./usr/lib/oabi/libc_vfp.a comp-c-lib compat
|
||||||
./usr/lib/oabi/libc_vfp.so base-sys-shlib compat,pic
|
./usr/lib/oabi/libc_vfp.so base-sys-shlib compat,pic
|
||||||
./usr/lib/oabi/libc_vfp_p.a comp-c-proflib compat,profile
|
./usr/lib/oabi/libc_vfp_p.a comp-c-proflib compat,profile
|
||||||
|
./usr/libdata/ldscripts/armelf.x comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xbn comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xc comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xd comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xdc comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xdw comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xn comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xr comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xs comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xsc comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xsw comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xu comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xw comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.x comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xbn comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xc comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xd comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xdc comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xdw comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xn comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xr comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xs comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xsc comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xsw comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xu comp-util-bin binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xw comp-util-bin binutils
|
||||||
./usr/libdata/lint/llib-larm.ln comp-c-lintlib lint
|
./usr/libdata/lint/llib-larm.ln comp-c-lintlib lint
|
||||||
./usr/libdata/lint/llib-larm32.ln comp-obsolete obsolete
|
./usr/libdata/lint/llib-larm32.ln comp-obsolete obsolete
|
||||||
./usr/libdata/lint/llib-lpmc.ln comp-c-lintlib lint
|
./usr/libdata/lint/llib-lpmc.ln comp-c-lintlib lint
|
||||||
|
|
|
||||||
|
|
@ -804,8 +804,8 @@
|
||||||
./usr/lib/libatf-c.so.0 minix-base atf
|
./usr/lib/libatf-c.so.0 minix-base atf
|
||||||
./usr/lib/libatf-c.so minix-base atf
|
./usr/lib/libatf-c.so minix-base atf
|
||||||
./usr/lib/libatf-c_pic.a minix-base atf
|
./usr/lib/libatf-c_pic.a minix-base atf
|
||||||
./usr/lib/libbfd.so.13.0 minix-base binutils
|
./usr/lib/libbfd.so.17.0 minix-base binutils
|
||||||
./usr/lib/libbfd.so.13 minix-base binutils
|
./usr/lib/libbfd.so.17 minix-base binutils
|
||||||
./usr/lib/libbind9.so minix-base
|
./usr/lib/libbind9.so minix-base
|
||||||
./usr/lib/libbind9.so.8 minix-base
|
./usr/lib/libbind9.so.8 minix-base
|
||||||
./usr/lib/libbind9.so.8.2 minix-base
|
./usr/lib/libbind9.so.8.2 minix-base
|
||||||
|
|
@ -882,6 +882,8 @@
|
||||||
./usr/lib/libgcc_s.so minix-base
|
./usr/lib/libgcc_s.so minix-base
|
||||||
./usr/lib/libgcc_s.so.1 minix-base
|
./usr/lib/libgcc_s.so.1 minix-base
|
||||||
./usr/lib/libgcc_s.so.1.0 minix-base
|
./usr/lib/libgcc_s.so.1.0 minix-base
|
||||||
|
./usr/lib/libgnuctf.so.0 minix-base binutils
|
||||||
|
./usr/lib/libgnuctf.so.0.0 minix-base binutils
|
||||||
./usr/lib/libintl.so minix-base
|
./usr/lib/libintl.so minix-base
|
||||||
./usr/lib/libintl.so.1 minix-base
|
./usr/lib/libintl.so.1 minix-base
|
||||||
./usr/lib/libintl.so.1.1 minix-base
|
./usr/lib/libintl.so.1.1 minix-base
|
||||||
|
|
@ -957,8 +959,8 @@
|
||||||
./usr/lib/libobjc.so.4 minix-base gcc=5
|
./usr/lib/libobjc.so.4 minix-base gcc=5
|
||||||
./usr/lib/libobjc.so minix-base gcc
|
./usr/lib/libobjc.so minix-base gcc
|
||||||
./usr/lib/libobjc_pic.a minix-base gcc=5
|
./usr/lib/libobjc_pic.a minix-base gcc=5
|
||||||
./usr/lib/libopcodes.so.6.0 minix-base binutils
|
./usr/lib/libopcodes.so.10.0 minix-base binutils
|
||||||
./usr/lib/libopcodes.so.6 minix-base binutils
|
./usr/lib/libopcodes.so.10 minix-base binutils
|
||||||
./usr/lib/libpcap.so minix-base
|
./usr/lib/libpcap.so minix-base
|
||||||
./usr/lib/libpcap.so.5 minix-base
|
./usr/lib/libpcap.so.5 minix-base
|
||||||
./usr/lib/libpcap.so.5.1 minix-base
|
./usr/lib/libpcap.so.5.1 minix-base
|
||||||
|
|
@ -1058,6 +1060,7 @@
|
||||||
./usr/libdata/debug/usr/tests/minix-posix/blocktest minix-base
|
./usr/libdata/debug/usr/tests/minix-posix/blocktest minix-base
|
||||||
./usr/libdata/debug/usr/tests/minix-posix/ddekit minix-base
|
./usr/libdata/debug/usr/tests/minix-posix/ddekit minix-base
|
||||||
./usr/libdata/debug/usr/tests/minix-posix/rmibtest minix-base
|
./usr/libdata/debug/usr/tests/minix-posix/rmibtest minix-base
|
||||||
|
./usr/libdata/ldscripts minix-base binutils
|
||||||
./usr/libexec minix-base
|
./usr/libexec minix-base
|
||||||
./usr/libexec/atf-check minix-base atf
|
./usr/libexec/atf-check minix-base atf
|
||||||
./usr/libexec/blacklistd-helper minix-base
|
./usr/libexec/blacklistd-helper minix-base
|
||||||
|
|
@ -1112,7 +1115,7 @@
|
||||||
./usr/sbin/groupmod minix-base
|
./usr/sbin/groupmod minix-base
|
||||||
./usr/sbin/i2cscan minix-base
|
./usr/sbin/i2cscan minix-base
|
||||||
./usr/sbin/inetd minix-base
|
./usr/sbin/inetd minix-base
|
||||||
./usr/sbin/installboot_nbsd minix-base
|
./usr/sbin/installboot minix-base
|
||||||
./usr/sbin/kernel minix-base
|
./usr/sbin/kernel minix-base
|
||||||
./usr/sbin/link minix-base
|
./usr/sbin/link minix-base
|
||||||
./usr/sbin/lwresd minix-base
|
./usr/sbin/lwresd minix-base
|
||||||
|
|
@ -2008,6 +2011,11 @@
|
||||||
./usr/share/info/ld.info minix-base binutils
|
./usr/share/info/ld.info minix-base binutils
|
||||||
./usr/share/info/texinfo.info minix-base
|
./usr/share/info/texinfo.info minix-base
|
||||||
./usr/share/info/vi.info minix-base
|
./usr/share/info/vi.info minix-base
|
||||||
|
./usr/share/installboot minix-base
|
||||||
|
./usr/share/installboot/evbarm minix-base
|
||||||
|
./usr/share/installboot/evbarm/boards.plist minix-base
|
||||||
|
./usr/share/installboot/evbmips minix-base
|
||||||
|
./usr/share/installboot/evbmips/boards.plist minix-base
|
||||||
./usr/share/keymaps minix-base
|
./usr/share/keymaps minix-base
|
||||||
./usr/share/legal minix-base
|
./usr/share/legal minix-base
|
||||||
./usr/share/legal/COPYRIGHT minix-base
|
./usr/share/legal/COPYRIGHT minix-base
|
||||||
|
|
|
||||||
|
|
@ -88,3 +88,29 @@
|
||||||
./usr/include/gcc-4.5/arm_neon.h minix-comp gcc=45,gcccmds,obsolete
|
./usr/include/gcc-4.5/arm_neon.h minix-comp gcc=45,gcccmds,obsolete
|
||||||
./usr/include/gcc-4.8/arm_neon.h minix-comp gcc=5,gcccmds
|
./usr/include/gcc-4.8/arm_neon.h minix-comp gcc=5,gcccmds
|
||||||
./usr/include/gcc-4.8/unwind-arm-common.h minix-comp gcc=5,gcccmds
|
./usr/include/gcc-4.8/unwind-arm-common.h minix-comp gcc=5,gcccmds
|
||||||
|
./usr/libdata/ldscripts/armelf.x minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xbn minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xc minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xd minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xdc minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xdw minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xn minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xr minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xs minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xsc minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xsw minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xu minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf.xw minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.x minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xbn minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xc minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xd minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xdc minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xdw minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xn minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xr minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xs minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xsc minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xsw minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xu minix-comp binutils
|
||||||
|
./usr/libdata/ldscripts/armelf_minix.xw minix-comp binutils
|
||||||
|
|
|
||||||
|
|
@ -637,7 +637,7 @@
|
||||||
./usr/libdata/debug/usr/sbin/fbdctl.debug minix-debug debug
|
./usr/libdata/debug/usr/sbin/fbdctl.debug minix-debug debug
|
||||||
./usr/libdata/debug/usr/sbin/i2cscan.debug minix-debug debug
|
./usr/libdata/debug/usr/sbin/i2cscan.debug minix-debug debug
|
||||||
./usr/libdata/debug/usr/sbin/inetd.debug minix-debug debug
|
./usr/libdata/debug/usr/sbin/inetd.debug minix-debug debug
|
||||||
./usr/libdata/debug/usr/sbin/installboot_nbsd.debug minix-debug debug
|
./usr/libdata/debug/usr/sbin/installboot.debug minix-debug debug
|
||||||
./usr/libdata/debug/usr/sbin/kernel.debug minix-debug debug
|
./usr/libdata/debug/usr/sbin/kernel.debug minix-debug debug
|
||||||
./usr/libdata/debug/usr/sbin/link.debug minix-debug debug
|
./usr/libdata/debug/usr/sbin/link.debug minix-debug debug
|
||||||
./usr/libdata/debug/usr/sbin/makefs.debug minix-debug debug
|
./usr/libdata/debug/usr/sbin/makefs.debug minix-debug debug
|
||||||
|
|
|
||||||
|
|
@ -3514,7 +3514,7 @@
|
||||||
./usr/man/man8/inet.8 minix-man obsolete
|
./usr/man/man8/inet.8 minix-man obsolete
|
||||||
./usr/man/man8/inetd.8 minix-man
|
./usr/man/man8/inetd.8 minix-man
|
||||||
./usr/man/man8/init.8 minix-man
|
./usr/man/man8/init.8 minix-man
|
||||||
./usr/man/man8/installboot_nbsd.8 minix-man
|
./usr/man/man8/installboot.8 minix-man
|
||||||
./usr/man/man8/intr.8 minix-man
|
./usr/man/man8/intr.8 minix-man
|
||||||
./usr/man/man8/irdpd.8 minix-man obsolete
|
./usr/man/man8/irdpd.8 minix-man obsolete
|
||||||
./usr/man/man8/link.8 minix-man
|
./usr/man/man8/link.8 minix-man
|
||||||
|
|
|
||||||
|
|
@ -3544,114 +3544,828 @@
|
||||||
./usr/tests/usr.bin/m4/d_m4wrap.m4 tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/m4/d_m4wrap.m4 tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/m4/d_m4wrap.out tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/m4/d_m4wrap.out tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/m4/t_m4 tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/m4/t_m4 tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/Atffile tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/Atffile tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/Kyuafile tests-usr.bin-tests compattestfile,atf,kyua
|
./usr/tests/usr.bin/make/Kyuafile tests-usr.bin-tests compattestfile,atf,kyua
|
||||||
./usr/tests/usr.bin/make/d_comment.mk tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_comment.mk tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_comment.out tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_comment.out tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_cond1.mk tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_cond1.mk tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_cond1.out tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_cond1.out tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_dotwait.mk tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_dotwait.mk tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_dotwait.out tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_dotwait.out tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_export.mk tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_export.mk tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_export.out tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_export.out tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_export_all.mk tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_export_all.mk tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_export_all.out tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_export_all.out tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_moderrs.mk tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_moderrs.mk tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_moderrs.out tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_moderrs.out tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_modmatch.mk tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_modmatch.mk tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_modmatch.out tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_modmatch.out tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_modmisc.mk tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_modmisc.mk tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_modmisc.out tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_modmisc.out tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_modorder.mk tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_modorder.mk tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_modorder.out tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_modorder.out tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_modts.mk tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_modts.mk tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_modts.out tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_modts.out tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_modword.mk tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_modword.mk tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_modword.out tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_modword.out tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_posix.mk tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_posix.mk tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_posix.out tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_posix.out tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_qequals.mk tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_qequals.mk tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_qequals.out tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_qequals.out tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_ternary.mk tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_ternary.mk tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_ternary.out tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_ternary.out tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_unmatchedvarparen.mk tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_unmatchedvarparen.mk tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_unmatchedvarparen.out tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_unmatchedvarparen.out tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_varcmd.mk tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_varcmd.mk tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/d_varcmd.out tests-obsolete obsolete,atf
|
./usr/tests/usr.bin/make/d_varcmd.out tests-obsolete obsolete,atf
|
||||||
./usr/tests/usr.bin/make/t_make tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/t_make tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/Makefile tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/Makefile tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/comment.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/archive-suffix.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/comment.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/archive-suffix.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/cond1.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/archive.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/cond1.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/archive.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/cond2.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cmd-errors-jobs.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/cond2.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cmd-errors-jobs.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/doterror.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cmd-errors-lint.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/doterror.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cmd-errors-lint.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/dotwait.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cmd-errors.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/dotwait.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cmd-errors.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/error.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cmd-interrupt.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/error.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cmd-interrupt.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/escape.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cmdline-redirect-stdin.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/escape.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cmdline-redirect-stdin.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/export-all.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cmdline-undefined.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/export-all.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cmdline-undefined.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/export-env.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cmdline.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/export-env.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cmdline.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/export.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/comment.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/export.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/comment.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/forloop.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/compat-error.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/forloop.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/compat-error.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/forsubst.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-numeric-eq.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/forsubst.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-numeric-eq.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/hash.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-numeric-ge.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/hash.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-numeric-ge.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/impsrc.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-numeric-gt.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/impsrc.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-numeric-gt.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/misc.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-numeric-le.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/misc.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-numeric-le.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/moderrs.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-numeric-lt.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/moderrs.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-numeric-lt.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/modmatch.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-numeric-ne.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/modmatch.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-numeric-ne.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/modmisc.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-numeric.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/modmisc.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-numeric.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/modorder.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-string.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/modorder.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-string.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/modts.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-unary.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/modts.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-cmp-unary.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/modword.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-eof.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/modword.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-eof.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/order.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-func-commands.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/order.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-func-commands.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/phony-end.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-func-defined.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/phony-end.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-func-defined.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/posix.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-func-empty.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/posix.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-func-empty.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/posix1.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-func-exists.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/posix1.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-func-exists.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/qequals.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-func-make-main.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/qequals.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-func-make-main.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/suffixes.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-func-make.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/suffixes.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-func-make.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/sunshcmd.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-func-target.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/sunshcmd.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-func-target.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/sysv.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-func.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/sysv.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-func.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/ternary.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-late.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/ternary.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-late.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/unexport-env.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-op-and-lint.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/unexport-env.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-op-and-lint.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/unexport.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-op-and.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/unexport.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-op-and.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/varcmd.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-op-not.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/varcmd.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-op-not.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/varmisc.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-op-or-lint.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/varmisc.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-op-or-lint.mk tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/varshell.exp tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-op-or.exp tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/make/unit-tests/varshell.mk tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/make/unit-tests/cond-op-or.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond-op-parentheses.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond-op-parentheses.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond-op.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond-op.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond-short.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond-short.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond-token-number.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond-token-number.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond-token-plain.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond-token-plain.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond-token-string.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond-token-string.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond-token-var.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond-token-var.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond-undef-lint.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond-undef-lint.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond1.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond1.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond2.exp obsolete-tests obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/cond2.mk obsolete-tests obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/counter-append.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/counter-append.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/counter.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/counter.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-colon-bug-cross-file.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-colon-bug-cross-file.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-colon.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-colon.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-double-colon-indep.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-double-colon-indep.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-double-colon.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-double-colon.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-exclam.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-exclam.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-none.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-none.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-percent.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-percent.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-var.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-var.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-wildcards.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep-wildcards.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dep.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-end.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-end.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-exec.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-exec.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-ignore.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-ignore.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-made.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-made.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-make.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-make.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-meta.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-meta.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-nometa.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-nometa.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-nometa_cmp.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-nometa_cmp.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-nopath.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-nopath.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-notmain.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-notmain.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-optional.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-optional.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-phony.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-phony.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-precious.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-precious.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-recursive.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-recursive.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-silent.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-silent.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-use.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-use.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-usebefore-double-colon.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-usebefore-double-colon.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-usebefore.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-usebefore.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-wait.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc-wait.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/depsrc.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-begin-fail-indirect.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-begin-fail-indirect.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-begin-fail.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-begin-fail.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-begin.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-begin.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-default.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-default.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-delete_on_error.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-delete_on_error.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-end-fail-all.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-end-fail-all.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-end-fail-indirect.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-end-fail-indirect.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-end-fail.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-end-fail.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-end-jobs.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-end-jobs.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-end.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-end.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-error.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-error.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-ignore.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-ignore.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-interrupt.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-interrupt.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-main.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-main.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-makeflags.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-makeflags.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-no_parallel.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-no_parallel.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-nopath.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-nopath.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-notparallel.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-notparallel.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-objdir.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-objdir.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-order.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-order.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-path-suffix.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-path-suffix.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-path.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-path.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-phony.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-phony.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-precious.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-precious.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-shell.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-shell.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-silent.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-silent.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-stale.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-stale.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-suffixes.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt-suffixes.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/deptgt.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dir-expand-path.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dir-expand-path.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dir.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dir.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-dinclude.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-dinclude.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-elif.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-elif.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-elifdef.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-elifdef.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-elifmake.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-elifmake.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-elifndef.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-elifndef.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-elifnmake.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-elifnmake.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-else.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-else.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-endfor.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-endfor.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-endif.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-endif.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-error.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-error.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-export-env.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-export-env.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-export-gmake.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-export-gmake.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-export-impl.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-export-impl.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-export-literal.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-export-literal.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-export.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-export.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-for-errors.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-for-errors.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-for-escape.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-for-escape.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-for-generating-endif.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-for-generating-endif.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-for-lines.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-for-lines.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-for-null.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-for-null.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-for.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-for.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-hyphen-include.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-hyphen-include.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-if-nested.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-if-nested.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-if.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-if.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-ifdef.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-ifdef.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-ifmake.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-ifmake.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-ifndef.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-ifndef.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-ifnmake.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-ifnmake.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-include-fatal.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-include-fatal.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-include.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-include.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-info.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-info.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-misspellings.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-misspellings.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-sinclude.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-sinclude.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-undef.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-undef.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-unexport-env.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-unexport-env.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-unexport.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-unexport.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-warning.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive-warning.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directive.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directives.exp tests-obsolete obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/directives.mk tests-obsolete obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dollar.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dollar.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/doterror.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/doterror.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dotwait.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/dotwait.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/envfirst.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/envfirst.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/error.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/error.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/escape.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/escape.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/export-all.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/export-all.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/export-env.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/export-env.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/export-variants.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/export-variants.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/export.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/export.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/forloop.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/forloop.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/forsubst.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/forsubst.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/gnode-submake.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/gnode-submake.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/hanoi-include.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/hanoi-include.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/hash.exp tests-obsolete obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/hash.mk tests-obsolete obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/impsrc.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/impsrc.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/include-main.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/include-main.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/include-sub.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/include-subsub.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/job-flags.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/job-flags.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/job-output-long-lines.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/job-output-long-lines.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/jobs-empty-commands.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/jobs-empty-commands.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/jobs-error-indirect.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/jobs-error-indirect.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/jobs-error-nested-make.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/jobs-error-nested-make.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/jobs-error-nested.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/jobs-error-nested.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/lint.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/lint.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/make-exported.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/make-exported.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/meta-cmd-cmp.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/meta-cmd-cmp.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/misc.exp tests-obsolete obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/misc.mk tests-obsolete obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/moderrs.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/moderrs.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/modmatch.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/modmatch.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/modmisc.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/modmisc.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/modorder.exp tests-obsolete obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/modorder.mk tests-obsolete obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/modts.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/modts.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/modword.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/modword.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/objdir-writable.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/objdir-writable.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-backwards.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-backwards.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-chdir.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-chdir.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-all.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-all.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-archive.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-archive.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-cond.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-cond.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-curdir.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-curdir.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-dir.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-dir.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-errors.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-errors.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-file.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-file.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-for.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-for.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-g1.exp tests-obsolete obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-g1.mk tests-obsolete obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-graph1.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-graph1.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-graph2.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-graph2.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-graph3.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-graph3.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-hash.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-hash.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-jobs.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-jobs.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-lint.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-lint.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-loud.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-loud.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-making.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-making.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-meta.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-meta.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-no-rm.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-no-rm.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-parse.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-parse.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-suff.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-suff.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-targets.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-targets.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-var.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-var.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-varraw.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-varraw.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-x-trace.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug-x-trace.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-debug.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-define.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-define.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-env.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-env.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-file.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-file.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-ignore.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-ignore.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-include-dir.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-include-dir.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-jobs-internal.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-jobs-internal.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-jobs-no-action.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-jobs-no-action.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-jobs.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-jobs.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-keep-going-multiple.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-keep-going-multiple.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-keep-going.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-keep-going.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-m-include-dir.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-m-include-dir.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-no-action-at-all.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-no-action-at-all.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-no-action-runflags.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-no-action-runflags.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-no-action-touch.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-no-action-touch.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-no-action.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-no-action.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-query.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-query.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-raw.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-raw.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-silent.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-silent.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-touch-jobs.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-touch-jobs.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-touch.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-touch.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-tracefile.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-tracefile.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-var-expanded.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-var-expanded.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-var-literal.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-var-literal.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-warnings-as-errors.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-warnings-as-errors.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-where-am-i.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-where-am-i.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-x-reduce-exported.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt-x-reduce-exported.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/opt.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/order.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/order.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/parse-var.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/parse-var.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/phony-end.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/phony-end.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/posix.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/posix.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/posix1.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/posix1.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/qequals.exp tests-obsolete obsolete,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/qequals.mk tests-obsolete obsolete,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/recursive.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/recursive.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-dots.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-dots.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-errctl.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-errctl.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-flags.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-flags.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-jobs-error.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-jobs-error.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-jobs.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-jobs.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-leading-at.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-leading-at.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-leading-hyphen.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-leading-hyphen.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-leading-plus.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-leading-plus.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-meta-chars.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-meta-chars.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-multi-line.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-multi-line.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-single-line.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh-single-line.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sh.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/shell-csh.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/shell-csh.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/shell-custom.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/shell-custom.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/shell-ksh.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/shell-ksh.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/shell-sh.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/shell-sh.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-add-later.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-add-later.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-clear-regular.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-clear-regular.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-clear-single.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-clear-single.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-incomplete.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-incomplete.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-lookup.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-lookup.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-main-several.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-main-several.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-main.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-main.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-phony.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-phony.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-rebuild.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-rebuild.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-self.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-self.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-transform-debug.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-transform-debug.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-transform-endless.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-transform-endless.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-transform-expand.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-transform-expand.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-transform-select.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suff-transform-select.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suffixes.exp tests-obsolete obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/suffixes.mk tests-obsolete obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sunshcmd.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sunshcmd.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sysv.exp tests-obsolete obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/sysv.mk tests-obsolete obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/ternary.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/ternary.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/unexport-env.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/unexport-env.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/unexport.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/unexport.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/use-inference.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/use-inference.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-class-cmdline.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-class-cmdline.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-class-env.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-class-env.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-class-global.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-class-global.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-class-local-legacy.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-class-local-legacy.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-class-local.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-class-local.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-class.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-class.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-eval-short.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-eval-short.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-op-append.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-op-append.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-op-assign.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-op-assign.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-op-default.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-op-default.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-op-expand.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-op-expand.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-op-shell.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-op-shell.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-op-sunsh.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-op-sunsh.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-op.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-op.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-recursive.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/var-recursive.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varcmd.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varcmd.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/vardebug.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/vardebug.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varfind.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varfind.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmisc.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmisc.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-assign.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-assign.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-defined.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-defined.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-edge.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-edge.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-exclam-shell.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-exclam-shell.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-extension.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-extension.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-gmtime.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-gmtime.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-hash.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-hash.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-head.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-head.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-ifelse.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-ifelse.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-indirect.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-indirect.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-l-name-to-value.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-l-name-to-value.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-localtime.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-localtime.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-loop.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-loop.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-match-escape.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-match-escape.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-match.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-match.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-no-match.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-no-match.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-order-reverse.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-order-reverse.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-order-shuffle.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-order-shuffle.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-order.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-order.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-path.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-path.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-quote-dollar.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-quote-dollar.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-quote.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-quote.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-range.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-range.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-remember.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-remember.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-root.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-root.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-select-words.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-select-words.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-shell.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-shell.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-subst-regex.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-subst-regex.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-subst.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-subst.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-sun-shell.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-sun-shell.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-sysv.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-sysv.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-tail.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-tail.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-to-abs.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-to-abs.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-to-lower.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-to-lower.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-to-many-words.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-to-many-words.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-to-one-word.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-to-one-word.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-to-separator.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-to-separator.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-to-upper.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-to-upper.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-undefined.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-undefined.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-unique.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod-unique.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varmod.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dollar.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dollar.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-alltargets.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-alltargets.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-curdir.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-curdir.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-includedfromdir.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-includedfromdir.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-includedfromfile.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-includedfromfile.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-includes.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-includes.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-libs.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-libs.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-dependfile.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-dependfile.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-expand_variables.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-expand_variables.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-exported.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-exported.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-jobs-prefix.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-jobs-prefix.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-jobs.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-jobs.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-level.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-level.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-makefile_preference.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-makefile_preference.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-makefiles.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-makefiles.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-meta-bailiwick.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-meta-bailiwick.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-meta-created.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-meta-created.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-meta-files.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-meta-files.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-meta-ignore_filter.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-meta-ignore_filter.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-meta-ignore_paths.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-meta-ignore_paths.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-meta-ignore_patterns.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-meta-ignore_patterns.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-meta-prefix.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-meta-prefix.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-mode.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-mode.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-path_filemon.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-path_filemon.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-pid.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-pid.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-ppid.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-ppid.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-save_dollars.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-make-save_dollars.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-makeflags.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-makeflags.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-makeoverrides.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-makeoverrides.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-newline.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-newline.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-objdir.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-objdir.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-parsedir.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-parsedir.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-parsefile.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-parsefile.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-path.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-path.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-shell.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-shell.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-targets.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-dot-targets.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-empty.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-empty.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-make.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-make.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-make_print_var_on_error-jobs.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-make_print_var_on_error-jobs.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-make_print_var_on_error.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-make_print_var_on_error.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-makefile.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-makefile.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-makeflags.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-makeflags.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-pwd.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-pwd.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-vpath.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname-vpath.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varname.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varparse-dynamic.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varparse-dynamic.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varparse-errors.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varparse-errors.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varparse-mod.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varparse-mod.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varparse-undef-partial.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varparse-undef-partial.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varquote.exp tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varquote.mk tests-usr.bin-tests compattestfile,atf
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varshell.exp tests-obsolete obsolete
|
||||||
|
./usr/tests/usr.bin/make/unit-tests/varshell.mk tests-obsolete obsolete
|
||||||
./usr/tests/usr.bin/mkdep tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/mkdep tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/mkdep/Atffile tests-usr.bin-tests compattestfile,atf
|
./usr/tests/usr.bin/mkdep/Atffile tests-usr.bin-tests compattestfile,atf
|
||||||
./usr/tests/usr.bin/mkdep/Kyuafile tests-usr.bin-tests compattestfile,atf,kyua
|
./usr/tests/usr.bin/mkdep/Kyuafile tests-usr.bin-tests compattestfile,atf,kyua
|
||||||
|
|
|
||||||
|
|
@ -153,6 +153,7 @@
|
||||||
./usr/libdata/debug/usr/tests/minix-posix/blocktest
|
./usr/libdata/debug/usr/tests/minix-posix/blocktest
|
||||||
./usr/libdata/debug/usr/tests/minix-posix/ddekit
|
./usr/libdata/debug/usr/tests/minix-posix/ddekit
|
||||||
./usr/libdata/debug/usr/tests/minix-posix/rmibtest
|
./usr/libdata/debug/usr/tests/minix-posix/rmibtest
|
||||||
|
./usr/libdata/ldscripts
|
||||||
./usr/libexec
|
./usr/libexec
|
||||||
./usr/log
|
./usr/log
|
||||||
./usr/man
|
./usr/man
|
||||||
|
|
@ -249,6 +250,9 @@
|
||||||
./usr/share/i18n/esdb/UTF
|
./usr/share/i18n/esdb/UTF
|
||||||
./usr/share/i18n/iconv
|
./usr/share/i18n/iconv
|
||||||
./usr/share/info
|
./usr/share/info
|
||||||
|
./usr/share/installboot
|
||||||
|
./usr/share/installboot/evbarm
|
||||||
|
./usr/share/installboot/evbmips
|
||||||
./usr/share/keymaps
|
./usr/share/keymaps
|
||||||
./usr/share/kyua-atf-compat
|
./usr/share/kyua-atf-compat
|
||||||
./usr/share/kyua-cli
|
./usr/share/kyua-cli
|
||||||
|
|
|
||||||
4
external/gpl3/binutils/Makefile.inc
vendored
Normal file
4
external/gpl3/binutils/Makefile.inc
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
# $NetBSD: Makefile.inc,v 1.2 2016/10/26 18:00:46 christos Exp $
|
||||||
|
.include <bsd.own.mk>
|
||||||
|
TOP:= ${.PARSEDIR}
|
||||||
|
DIST:= ${TOP}/dist
|
||||||
15
external/gpl3/binutils/fetch.sh
vendored
15
external/gpl3/binutils/fetch.sh
vendored
|
|
@ -5,8 +5,8 @@ echo $0
|
||||||
cd `dirname $0`
|
cd `dirname $0`
|
||||||
|
|
||||||
# Configure fetch method
|
# Configure fetch method
|
||||||
URL="http://www.minix3.org/pkgsrc/distfiles/minix/3.4.0/binutils-2.23.2.tar.bz2"
|
URL="http://www.minix3.org/pkgsrc/distfiles/minix/3.4.0/binutils-2.34.tar.bz2"
|
||||||
BACKUP_URL="http://ftp.gnu.org/gnu/binutils/binutils-2.23.2.tar.bz2"
|
BACKUP_URL="http://ftp.gnu.org/gnu/binutils/binutils-2.34.tar.bz2"
|
||||||
FETCH=ftp
|
FETCH=ftp
|
||||||
which curl >/dev/null
|
which curl >/dev/null
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
|
|
@ -16,19 +16,18 @@ fi
|
||||||
# Fetch sources if not available
|
# Fetch sources if not available
|
||||||
if [ ! -d dist ];
|
if [ ! -d dist ];
|
||||||
then
|
then
|
||||||
if [ ! -f binutils-2.23.2.tar.bz2 ]; then
|
if [ ! -f binutils-2.34.tar.bz2 ]; then
|
||||||
$FETCH $URL
|
$FETCH $URL
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
$FETCH $BACKUP_URL
|
$FETCH $BACKUP_URL
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
tar -oxjf binutils-2.23.2.tar.bz2 && \
|
tar -oxjf binutils-2.34.tar.bz2 && \
|
||||||
mv binutils-2.23.2 dist && \
|
mv binutils-2.34 dist && \
|
||||||
cd dist && \
|
cd dist && \
|
||||||
|
find . -name testsuite -exec rm -fr {} + && \
|
||||||
|
find . -name .gitignore -delete && \
|
||||||
cat ../patches/* | patch -p1
|
cat ../patches/* | patch -p1
|
||||||
cp ../files/yyscript.h gold && \
|
|
||||||
cp ../files/yyscript.c gold && \
|
|
||||||
rm -f ld/configdoc.texi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
3540
external/gpl3/binutils/files/yyscript.c
vendored
3540
external/gpl3/binutils/files/yyscript.c
vendored
File diff suppressed because it is too large
Load Diff
295
external/gpl3/binutils/files/yyscript.h
vendored
295
external/gpl3/binutils/files/yyscript.h
vendored
|
|
@ -1,295 +0,0 @@
|
||||||
/* A Bison parser, made by GNU Bison 3.0.2. */
|
|
||||||
|
|
||||||
/* Bison interface for Yacc-like parsers in C
|
|
||||||
|
|
||||||
Copyright (C) 1984, 1989-1990, 2000-2013 Free Software Foundation, Inc.
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
GNU General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
||||||
|
|
||||||
/* As a special exception, you may create a larger work that contains
|
|
||||||
part or all of the Bison parser skeleton and distribute that work
|
|
||||||
under terms of your choice, so long as that work isn't itself a
|
|
||||||
parser generator using the skeleton or a modified version thereof
|
|
||||||
as a parser skeleton. Alternatively, if you modify or redistribute
|
|
||||||
the parser skeleton itself, you may (at your option) remove this
|
|
||||||
special exception, which will cause the skeleton and the resulting
|
|
||||||
Bison output files to be licensed under the GNU General Public
|
|
||||||
License without this special exception.
|
|
||||||
|
|
||||||
This special exception was added by the Free Software Foundation in
|
|
||||||
version 2.2 of Bison. */
|
|
||||||
|
|
||||||
#ifndef YY_YY_YYSCRIPT_H_INCLUDED
|
|
||||||
# define YY_YY_YYSCRIPT_H_INCLUDED
|
|
||||||
/* Debug traces. */
|
|
||||||
#ifndef YYDEBUG
|
|
||||||
# define YYDEBUG 0
|
|
||||||
#endif
|
|
||||||
#if YYDEBUG
|
|
||||||
extern int yydebug;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Token type. */
|
|
||||||
#ifndef YYTOKENTYPE
|
|
||||||
# define YYTOKENTYPE
|
|
||||||
enum yytokentype
|
|
||||||
{
|
|
||||||
PLUSEQ = 258,
|
|
||||||
MINUSEQ = 259,
|
|
||||||
MULTEQ = 260,
|
|
||||||
DIVEQ = 261,
|
|
||||||
LSHIFTEQ = 262,
|
|
||||||
RSHIFTEQ = 263,
|
|
||||||
ANDEQ = 264,
|
|
||||||
OREQ = 265,
|
|
||||||
OROR = 266,
|
|
||||||
ANDAND = 267,
|
|
||||||
EQ = 268,
|
|
||||||
NE = 269,
|
|
||||||
LE = 270,
|
|
||||||
GE = 271,
|
|
||||||
LSHIFT = 272,
|
|
||||||
RSHIFT = 273,
|
|
||||||
UNARY = 274,
|
|
||||||
STRING = 275,
|
|
||||||
QUOTED_STRING = 276,
|
|
||||||
INTEGER = 277,
|
|
||||||
ABSOLUTE = 278,
|
|
||||||
ADDR = 279,
|
|
||||||
ALIGN_K = 280,
|
|
||||||
ALIGNOF = 281,
|
|
||||||
ASSERT_K = 282,
|
|
||||||
AS_NEEDED = 283,
|
|
||||||
AT = 284,
|
|
||||||
BIND = 285,
|
|
||||||
BLOCK = 286,
|
|
||||||
BYTE = 287,
|
|
||||||
CONSTANT = 288,
|
|
||||||
CONSTRUCTORS = 289,
|
|
||||||
COPY = 290,
|
|
||||||
CREATE_OBJECT_SYMBOLS = 291,
|
|
||||||
DATA_SEGMENT_ALIGN = 292,
|
|
||||||
DATA_SEGMENT_END = 293,
|
|
||||||
DATA_SEGMENT_RELRO_END = 294,
|
|
||||||
DEFINED = 295,
|
|
||||||
DSECT = 296,
|
|
||||||
ENTRY = 297,
|
|
||||||
EXCLUDE_FILE = 298,
|
|
||||||
EXTERN = 299,
|
|
||||||
FILL = 300,
|
|
||||||
FLOAT = 301,
|
|
||||||
FORCE_COMMON_ALLOCATION = 302,
|
|
||||||
GLOBAL = 303,
|
|
||||||
GROUP = 304,
|
|
||||||
HLL = 305,
|
|
||||||
INCLUDE = 306,
|
|
||||||
INHIBIT_COMMON_ALLOCATION = 307,
|
|
||||||
INFO = 308,
|
|
||||||
INPUT = 309,
|
|
||||||
KEEP = 310,
|
|
||||||
LEN = 311,
|
|
||||||
LENGTH = 312,
|
|
||||||
LOADADDR = 313,
|
|
||||||
LOCAL = 314,
|
|
||||||
LONG = 315,
|
|
||||||
MAP = 316,
|
|
||||||
MAX_K = 317,
|
|
||||||
MEMORY = 318,
|
|
||||||
MIN_K = 319,
|
|
||||||
NEXT = 320,
|
|
||||||
NOCROSSREFS = 321,
|
|
||||||
NOFLOAT = 322,
|
|
||||||
NOLOAD = 323,
|
|
||||||
ONLY_IF_RO = 324,
|
|
||||||
ONLY_IF_RW = 325,
|
|
||||||
ORG = 326,
|
|
||||||
ORIGIN = 327,
|
|
||||||
OUTPUT = 328,
|
|
||||||
OUTPUT_ARCH = 329,
|
|
||||||
OUTPUT_FORMAT = 330,
|
|
||||||
OVERLAY = 331,
|
|
||||||
PHDRS = 332,
|
|
||||||
PROVIDE = 333,
|
|
||||||
PROVIDE_HIDDEN = 334,
|
|
||||||
QUAD = 335,
|
|
||||||
SEARCH_DIR = 336,
|
|
||||||
SECTIONS = 337,
|
|
||||||
SEGMENT_START = 338,
|
|
||||||
SHORT = 339,
|
|
||||||
SIZEOF = 340,
|
|
||||||
SIZEOF_HEADERS = 341,
|
|
||||||
SORT_BY_ALIGNMENT = 342,
|
|
||||||
SORT_BY_NAME = 343,
|
|
||||||
SPECIAL = 344,
|
|
||||||
SQUAD = 345,
|
|
||||||
STARTUP = 346,
|
|
||||||
SUBALIGN = 347,
|
|
||||||
SYSLIB = 348,
|
|
||||||
TARGET_K = 349,
|
|
||||||
TRUNCATE = 350,
|
|
||||||
VERSIONK = 351,
|
|
||||||
OPTION = 352,
|
|
||||||
PARSING_LINKER_SCRIPT = 353,
|
|
||||||
PARSING_VERSION_SCRIPT = 354,
|
|
||||||
PARSING_DEFSYM = 355,
|
|
||||||
PARSING_DYNAMIC_LIST = 356
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
/* Tokens. */
|
|
||||||
#define PLUSEQ 258
|
|
||||||
#define MINUSEQ 259
|
|
||||||
#define MULTEQ 260
|
|
||||||
#define DIVEQ 261
|
|
||||||
#define LSHIFTEQ 262
|
|
||||||
#define RSHIFTEQ 263
|
|
||||||
#define ANDEQ 264
|
|
||||||
#define OREQ 265
|
|
||||||
#define OROR 266
|
|
||||||
#define ANDAND 267
|
|
||||||
#define EQ 268
|
|
||||||
#define NE 269
|
|
||||||
#define LE 270
|
|
||||||
#define GE 271
|
|
||||||
#define LSHIFT 272
|
|
||||||
#define RSHIFT 273
|
|
||||||
#define UNARY 274
|
|
||||||
#define STRING 275
|
|
||||||
#define QUOTED_STRING 276
|
|
||||||
#define INTEGER 277
|
|
||||||
#define ABSOLUTE 278
|
|
||||||
#define ADDR 279
|
|
||||||
#define ALIGN_K 280
|
|
||||||
#define ALIGNOF 281
|
|
||||||
#define ASSERT_K 282
|
|
||||||
#define AS_NEEDED 283
|
|
||||||
#define AT 284
|
|
||||||
#define BIND 285
|
|
||||||
#define BLOCK 286
|
|
||||||
#define BYTE 287
|
|
||||||
#define CONSTANT 288
|
|
||||||
#define CONSTRUCTORS 289
|
|
||||||
#define COPY 290
|
|
||||||
#define CREATE_OBJECT_SYMBOLS 291
|
|
||||||
#define DATA_SEGMENT_ALIGN 292
|
|
||||||
#define DATA_SEGMENT_END 293
|
|
||||||
#define DATA_SEGMENT_RELRO_END 294
|
|
||||||
#define DEFINED 295
|
|
||||||
#define DSECT 296
|
|
||||||
#define ENTRY 297
|
|
||||||
#define EXCLUDE_FILE 298
|
|
||||||
#define EXTERN 299
|
|
||||||
#define FILL 300
|
|
||||||
#define FLOAT 301
|
|
||||||
#define FORCE_COMMON_ALLOCATION 302
|
|
||||||
#define GLOBAL 303
|
|
||||||
#define GROUP 304
|
|
||||||
#define HLL 305
|
|
||||||
#define INCLUDE 306
|
|
||||||
#define INHIBIT_COMMON_ALLOCATION 307
|
|
||||||
#define INFO 308
|
|
||||||
#define INPUT 309
|
|
||||||
#define KEEP 310
|
|
||||||
#define LEN 311
|
|
||||||
#define LENGTH 312
|
|
||||||
#define LOADADDR 313
|
|
||||||
#define LOCAL 314
|
|
||||||
#define LONG 315
|
|
||||||
#define MAP 316
|
|
||||||
#define MAX_K 317
|
|
||||||
#define MEMORY 318
|
|
||||||
#define MIN_K 319
|
|
||||||
#define NEXT 320
|
|
||||||
#define NOCROSSREFS 321
|
|
||||||
#define NOFLOAT 322
|
|
||||||
#define NOLOAD 323
|
|
||||||
#define ONLY_IF_RO 324
|
|
||||||
#define ONLY_IF_RW 325
|
|
||||||
#define ORG 326
|
|
||||||
#define ORIGIN 327
|
|
||||||
#define OUTPUT 328
|
|
||||||
#define OUTPUT_ARCH 329
|
|
||||||
#define OUTPUT_FORMAT 330
|
|
||||||
#define OVERLAY 331
|
|
||||||
#define PHDRS 332
|
|
||||||
#define PROVIDE 333
|
|
||||||
#define PROVIDE_HIDDEN 334
|
|
||||||
#define QUAD 335
|
|
||||||
#define SEARCH_DIR 336
|
|
||||||
#define SECTIONS 337
|
|
||||||
#define SEGMENT_START 338
|
|
||||||
#define SHORT 339
|
|
||||||
#define SIZEOF 340
|
|
||||||
#define SIZEOF_HEADERS 341
|
|
||||||
#define SORT_BY_ALIGNMENT 342
|
|
||||||
#define SORT_BY_NAME 343
|
|
||||||
#define SPECIAL 344
|
|
||||||
#define SQUAD 345
|
|
||||||
#define STARTUP 346
|
|
||||||
#define SUBALIGN 347
|
|
||||||
#define SYSLIB 348
|
|
||||||
#define TARGET_K 349
|
|
||||||
#define TRUNCATE 350
|
|
||||||
#define VERSIONK 351
|
|
||||||
#define OPTION 352
|
|
||||||
#define PARSING_LINKER_SCRIPT 353
|
|
||||||
#define PARSING_VERSION_SCRIPT 354
|
|
||||||
#define PARSING_DEFSYM 355
|
|
||||||
#define PARSING_DYNAMIC_LIST 356
|
|
||||||
|
|
||||||
/* Value type. */
|
|
||||||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
|
||||||
typedef union YYSTYPE YYSTYPE;
|
|
||||||
union YYSTYPE
|
|
||||||
{
|
|
||||||
#line 53 "yyscript.y" /* yacc.c:1909 */
|
|
||||||
|
|
||||||
/* A string. */
|
|
||||||
struct Parser_string string;
|
|
||||||
/* A number. */
|
|
||||||
uint64_t integer;
|
|
||||||
/* An expression. */
|
|
||||||
Expression_ptr expr;
|
|
||||||
/* An output section header. */
|
|
||||||
struct Parser_output_section_header output_section_header;
|
|
||||||
/* An output section trailer. */
|
|
||||||
struct Parser_output_section_trailer output_section_trailer;
|
|
||||||
/* A section constraint. */
|
|
||||||
enum Section_constraint constraint;
|
|
||||||
/* A complete input section specification. */
|
|
||||||
struct Input_section_spec input_section_spec;
|
|
||||||
/* A list of wildcard specifications, with exclusions. */
|
|
||||||
struct Wildcard_sections wildcard_sections;
|
|
||||||
/* A single wildcard specification. */
|
|
||||||
struct Wildcard_section wildcard_section;
|
|
||||||
/* A list of strings. */
|
|
||||||
String_list_ptr string_list;
|
|
||||||
/* Information for a program header. */
|
|
||||||
struct Phdr_info phdr_info;
|
|
||||||
/* Used for version scripts and within VERSION {}. */
|
|
||||||
struct Version_dependency_list* deplist;
|
|
||||||
struct Version_expression_list* versyms;
|
|
||||||
struct Version_tree* versnode;
|
|
||||||
enum Script_section_type section_type;
|
|
||||||
|
|
||||||
#line 286 "yyscript.h" /* yacc.c:1909 */
|
|
||||||
};
|
|
||||||
# define YYSTYPE_IS_TRIVIAL 1
|
|
||||||
# define YYSTYPE_IS_DECLARED 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
int yyparse (void* closure);
|
|
||||||
|
|
||||||
#endif /* !YY_YY_YYSCRIPT_H_INCLUDED */
|
|
||||||
4
external/gpl3/binutils/lib/Makefile
vendored
4
external/gpl3/binutils/lib/Makefile
vendored
|
|
@ -1,5 +1,5 @@
|
||||||
# $NetBSD: Makefile,v 1.1 2009/08/18 20:21:59 skrll Exp $
|
# $NetBSD: Makefile,v 1.3 2020/04/04 01:34:28 christos Exp $
|
||||||
|
|
||||||
SUBDIR+= libopcodes libbfd libiberty
|
SUBDIR+= libgnuctf libopcodes libbfd libiberty
|
||||||
|
|
||||||
.include <bsd.subdir.mk>
|
.include <bsd.subdir.mk>
|
||||||
|
|
|
||||||
2
external/gpl3/binutils/lib/Makefile.inc
vendored
Normal file
2
external/gpl3/binutils/lib/Makefile.inc
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
# $NetBSD: Makefile.inc,v 1.1 2016/01/26 19:37:47 christos Exp $
|
||||||
|
.include "${.PARSEDIR}/../Makefile.inc"
|
||||||
29
external/gpl3/binutils/lib/libbfd/Makefile
vendored
29
external/gpl3/binutils/lib/libbfd/Makefile
vendored
|
|
@ -1,4 +1,4 @@
|
||||||
# $NetBSD: Makefile,v 1.13 2015/03/28 07:03:23 matt Exp $
|
# $NetBSD: Makefile,v 1.22 2020/04/04 00:46:53 christos Exp $
|
||||||
|
|
||||||
NOLINKLIB= # defined
|
NOLINKLIB= # defined
|
||||||
NOLINT= # defined
|
NOLINT= # defined
|
||||||
|
|
@ -6,7 +6,7 @@ NOMAN= # defined
|
||||||
NOPROFILE= # defined
|
NOPROFILE= # defined
|
||||||
NOCLANGERROR= # defined
|
NOCLANGERROR= # defined
|
||||||
|
|
||||||
.include <bsd.own.mk>
|
.include <bsd.init.mk>
|
||||||
|
|
||||||
# If the platform does not support shared libraries, we need to supply
|
# If the platform does not support shared libraries, we need to supply
|
||||||
# *something* for BFD-using programs to link against. Also provide an
|
# *something* for BFD-using programs to link against. Also provide an
|
||||||
|
|
@ -21,41 +21,50 @@ LIB= bfd
|
||||||
BFD_MACHINE_ARCH?= ${MACHINE_ARCH:C/armv[4-7]/arm/}
|
BFD_MACHINE_ARCH?= ${MACHINE_ARCH:C/armv[4-7]/arm/}
|
||||||
|
|
||||||
DEFS_MK=${.CURDIR}/arch/${BFD_MACHINE_ARCH}/defs.mk
|
DEFS_MK=${.CURDIR}/arch/${BFD_MACHINE_ARCH}/defs.mk
|
||||||
|
# XXX: Fix me
|
||||||
|
BINDIR=/usr/bin
|
||||||
|
BINDIR=/usr/lib
|
||||||
|
|
||||||
.if exists(${DEFS_MK})
|
.if exists(${DEFS_MK})
|
||||||
.include "${DEFS_MK}"
|
.include "${DEFS_MK}"
|
||||||
|
|
||||||
DIST= ${NETBSDSRCDIR}/external/gpl3/binutils/dist
|
|
||||||
|
|
||||||
.if defined(__MINIX)
|
.if defined(__MINIX)
|
||||||
# MINIX: make sure sources are fetched, even when tools not built earlier
|
# MINIX: make sure sources are fetched, even when tools not built earlier
|
||||||
GNUHOSTDIST= ${DIST}
|
GNUHOSTDIST= ${DIST}
|
||||||
.include "${.CURDIR}/../../../../../minix/Makefile.fetchgnu"
|
.include "${.CURDIR}/../../../../../minix/Makefile.fetchgnu"
|
||||||
.endif # defined(__MINIX)
|
.endif # defined(__MINIX)
|
||||||
|
|
||||||
SHLIB_MAJOR= 13
|
SHLIB_MAJOR= 17
|
||||||
SHLIB_MINOR= 0
|
SHLIB_MINOR= 0
|
||||||
|
|
||||||
LIBDPLIBS+= z ${.CURDIR}/../../../../../lib/libz
|
LIBDPLIBS+= z ${.CURDIR}/../../../../../lib/libz
|
||||||
|
|
||||||
GCPPFLAGS= ${G_archdefs} ${G_DEFS} ${G_INCLUDES} ${G_TDEFAULTS}
|
GCPPFLAGS= ${G_archdefs} ${G_DEFS} ${G_INCLUDES} ${G_TDEFAULTS}
|
||||||
|
GCPPFLAGS+= ${G_HAVEVECS}
|
||||||
|
|
||||||
CPPFLAGS+= -I${.CURDIR}/arch/${BFD_MACHINE_ARCH} -I${DIST}/include -I. \
|
CPPFLAGS+= -I${.CURDIR}/arch/${BFD_MACHINE_ARCH} -I${DIST}/include -I. \
|
||||||
-I${DIST}/bfd ${GCPPFLAGS:M-D*} ${GCPPFLAGS:M-I*:N-I.*} \
|
-I${DIST}/bfd ${GCPPFLAGS:M-D*} ${GCPPFLAGS:M-I*:N-I.*} \
|
||||||
-DDEBUGDIR=\"${DEBUGDIR}\"
|
-DDEBUGDIR=\"${DEBUGDIR}\" -DLIBDIR=\"${LIBDIR}\" \
|
||||||
|
-DBINDIR=\"${BINDIR}\"
|
||||||
|
|
||||||
.if (${BFD_MACHINE_ARCH} == "vax")
|
.if (${BFD_MACHINE_ARCH} == "vax")
|
||||||
CPPFLAGS.elf.c += -O0
|
CPPFLAGS.elf.c += -O0
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
COPTS.pei-x86_64.c += -Wno-stack-protector
|
||||||
|
COPTS.elfxx-mips.c += -Wno-stack-protector
|
||||||
|
|
||||||
GSRCS= ${G_libbfd_la_OBJECTS:libbfd.lo=lib_bfd.lo} \
|
GSRCS= ${G_libbfd_la_OBJECTS:libbfd.lo=lib_bfd.lo} \
|
||||||
${G_libbfd_la_DEPENDENCIES:M*.lo}
|
${G_libbfd_la_DEPENDENCIES:M*.lo}
|
||||||
SRCS= ${GSRCS:.lo=.c}
|
SRCS= ${GSRCS:.lo=.c}
|
||||||
|
|
||||||
DPSRCS+= elf32-target.h elf64-target.h targmatch.h \
|
DPSRCS+= elf32-target.h elf64-target.h targmatch.h \
|
||||||
elf32-ia64.c elf64-ia64.c peigen.c pepigen.c \
|
elf32-ia64.c elf64-ia64.c peigen.c pepigen.c \
|
||||||
|
elf32-riscv.c elf64-riscv.c elf32-aarch64.c elf64-aarch64.c \
|
||||||
pex64igen.c
|
pex64igen.c
|
||||||
CLEANFILES+= elf32-target.h elf64-target.h targmatch.h \
|
CLEANFILES+= elf32-target.h elf64-target.h targmatch.h \
|
||||||
elf32-ia64.c elf64-ia64.c peigen.c pepigen.c \
|
elf32-ia64.c elf64-ia64.c peigen.c pepigen.c \
|
||||||
|
elf32-riscv.c elf64-riscv.c elf32-aarch64.c elf64-aarch64.c \
|
||||||
pex64igen.c
|
pex64igen.c
|
||||||
|
|
||||||
TEXINFO= bfd.texinfo
|
TEXINFO= bfd.texinfo
|
||||||
|
|
@ -100,6 +109,14 @@ elf64-riscv.c: elfnn-riscv.c
|
||||||
${_MKTARGET_CREATE}
|
${_MKTARGET_CREATE}
|
||||||
${TOOL_SED} -e s/NN/64/g < $> > $@
|
${TOOL_SED} -e s/NN/64/g < $> > $@
|
||||||
|
|
||||||
|
elf32-aarch64.c: elfnn-aarch64.c
|
||||||
|
${_MKTARGET_CREATE}
|
||||||
|
${TOOL_SED} -e s/NN/32/g < $> > $@
|
||||||
|
|
||||||
|
elf64-aarch64.c: elfnn-aarch64.c
|
||||||
|
${_MKTARGET_CREATE}
|
||||||
|
${TOOL_SED} -e s/NN/64/g < $> > $@
|
||||||
|
|
||||||
peigen.c: peXXigen.c
|
peigen.c: peXXigen.c
|
||||||
${_MKTARGET_CREATE}
|
${_MKTARGET_CREATE}
|
||||||
${TOOL_SED} -e s/XX/pe/g < $> > $@
|
${TOOL_SED} -e s/XX/pe/g < $> > $@
|
||||||
|
|
|
||||||
4046
external/gpl3/binutils/lib/libbfd/arch/aarch64/bfd.h
vendored
4046
external/gpl3/binutils/lib/libbfd/arch/aarch64/bfd.h
vendored
File diff suppressed because it is too large
Load Diff
|
|
@ -1,8 +1,8 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.9 2013/10/01 15:41:17 skrll Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.10 2013/10/20 16:00:20 skrll Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* generated for clang version 3.5 (trunk 199312) */
|
/* generated for aarch64--netbsd-gcc (NetBSD nb1 20190930) 8.3.0 */
|
||||||
|
|
||||||
#ifndef GCC_GENERATED_STDINT_H
|
#ifndef GCC_GENERATED_STDINT_H
|
||||||
#define GCC_GENERATED_STDINT_H 1
|
#define GCC_GENERATED_STDINT_H 1
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,26 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.9 2013/10/01 15:41:17 skrll Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.10 2013/10/20 16:00:20 skrll Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
#define BFD_VERSION_DATE 20130325
|
/* The date below is automatically updated every day by a bot. During
|
||||||
#define BFD_VERSION 223020000
|
development, we include the date in the tools' version strings
|
||||||
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.23.2"
|
(visible in 'ld -v' etc.) because people build binutils from a
|
||||||
|
variety of sources - git, tarballs, distro sources - and we want
|
||||||
|
something that can easily identify the source they used when they
|
||||||
|
report bugs. The bfd version plus date is usually good enough for
|
||||||
|
that purpose.
|
||||||
|
|
||||||
|
During development, this date ends up in libbfd and libopcodes
|
||||||
|
sonames because people naturally expect shared libraries with the
|
||||||
|
same soname to have compatible ABIs. We could bump the bfd version
|
||||||
|
on every ABI change, but that's just another thing contributors and
|
||||||
|
maintainers would need to remember. Instead, it's much easier for
|
||||||
|
all if the soname contains the date. This is not perfect but is
|
||||||
|
good enough.
|
||||||
|
|
||||||
|
In releases, the date is not included in either version strings or
|
||||||
|
sonames. */
|
||||||
|
#define BFD_VERSION_DATE 20200201
|
||||||
|
#define BFD_VERSION 234000000
|
||||||
|
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.34"
|
||||||
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.9 2013/10/01 15:41:17 skrll Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.10 2013/10/20 16:00:20 skrll Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* config.h. Generated from config.in by configure. */
|
/* config.h. Generated from config.in by configure. */
|
||||||
/* config.in. Generated from configure.in by autoheader. */
|
/* config.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
/* Check that config.h is #included before system headers
|
/* Check that config.h is #included before system headers
|
||||||
(this works only for glibc, but that should be enough). */
|
(this works only for glibc, but that should be enough). */
|
||||||
|
|
@ -15,6 +15,10 @@
|
||||||
/* Name of host specific core header file to include in elf.c. */
|
/* Name of host specific core header file to include in elf.c. */
|
||||||
/* #undef CORE_HEADER */
|
/* #undef CORE_HEADER */
|
||||||
|
|
||||||
|
/* Define to 1 if you want to enable -z separate-code in ELF linker by
|
||||||
|
default. */
|
||||||
|
#define DEFAULT_LD_Z_SEPARATE_CODE 0
|
||||||
|
|
||||||
/* Define to 1 if translation of program messages to the user's native
|
/* Define to 1 if translation of program messages to the user's native
|
||||||
language is requested. */
|
language is requested. */
|
||||||
#define ENABLE_NLS 1
|
#define ENABLE_NLS 1
|
||||||
|
|
@ -22,6 +26,10 @@
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
/* Define to 1 if you have the <alloca.h> header file. */
|
||||||
/* #undef HAVE_ALLOCA_H */
|
/* #undef HAVE_ALLOCA_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_ASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_BASENAME 0
|
#define HAVE_DECL_BASENAME 0
|
||||||
|
|
@ -69,10 +77,18 @@
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STPCPY 1
|
#define HAVE_DECL_STPCPY 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_STRNLEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STRSTR 1
|
#define HAVE_DECL_STRSTR 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_VASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_VSNPRINTF 1
|
#define HAVE_DECL_VSNPRINTF 1
|
||||||
|
|
@ -96,6 +112,9 @@
|
||||||
/* Define to 1 if you have the `fileno' function. */
|
/* Define to 1 if you have the `fileno' function. */
|
||||||
#define HAVE_FILENO 1
|
#define HAVE_FILENO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fls' function. */
|
||||||
|
/* #undef HAVE_FLS */
|
||||||
|
|
||||||
/* Define to 1 if you have the `fopen64' function. */
|
/* Define to 1 if you have the `fopen64' function. */
|
||||||
/* #undef HAVE_FOPEN64 */
|
/* #undef HAVE_FOPEN64 */
|
||||||
|
|
||||||
|
|
@ -117,12 +136,24 @@
|
||||||
/* Define to 1 if you have the `getpagesize' function. */
|
/* Define to 1 if you have the `getpagesize' function. */
|
||||||
#define HAVE_GETPAGESIZE 1
|
#define HAVE_GETPAGESIZE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getrlimit' function. */
|
||||||
|
#define HAVE_GETRLIMIT 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `getuid' function. */
|
/* Define to 1 if you have the `getuid' function. */
|
||||||
#define HAVE_GETUID 1
|
#define HAVE_GETUID 1
|
||||||
|
|
||||||
|
/* Define if your compiler supports hidden visibility. */
|
||||||
|
#define HAVE_HIDDEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
#define HAVE_INTTYPES_H 1
|
#define HAVE_INTTYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long double'. */
|
||||||
|
#define HAVE_LONG_DOUBLE 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long long'. */
|
||||||
|
#define HAVE_LONG_LONG 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
||||||
/* #undef HAVE_LWPSTATUS_T */
|
/* #undef HAVE_LWPSTATUS_T */
|
||||||
|
|
||||||
|
|
@ -236,9 +267,15 @@
|
||||||
*/
|
*/
|
||||||
/* #undef HAVE_SYS_NDIR_H */
|
/* #undef HAVE_SYS_NDIR_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||||
|
#define HAVE_SYS_PARAM_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
||||||
/* #undef HAVE_SYS_PROCFS_H */
|
/* #undef HAVE_SYS_PROCFS_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/resource.h> header file. */
|
||||||
|
#define HAVE_SYS_RESOURCE_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
#define HAVE_SYS_STAT_H 1
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
|
@ -254,15 +291,18 @@
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
#define HAVE_UNISTD_H 1
|
#define HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wchar.h> header file. */
|
||||||
|
#define HAVE_WCHAR_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wctype.h> header file. */
|
||||||
|
#define HAVE_WCTYPE_H 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
||||||
/* #undef HAVE_WIN32_PSTATUS_T */
|
/* #undef HAVE_WIN32_PSTATUS_T */
|
||||||
|
|
||||||
/* Define to 1 if you have the <windows.h> header file. */
|
/* Define to 1 if you have the <windows.h> header file. */
|
||||||
/* #undef HAVE_WINDOWS_H */
|
/* #undef HAVE_WINDOWS_H */
|
||||||
|
|
||||||
/* Define to 1 if you have the <zlib.h> header file. */
|
|
||||||
#define HAVE_ZLIB_H 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||||
*/
|
*/
|
||||||
#define LT_OBJDIR ".libs/"
|
#define LT_OBJDIR ".libs/"
|
||||||
|
|
@ -274,25 +314,25 @@
|
||||||
#define PACKAGE_BUGREPORT ""
|
#define PACKAGE_BUGREPORT ""
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
/* Define to the full name of this package. */
|
||||||
#define PACKAGE_NAME ""
|
#define PACKAGE_NAME "bfd"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING ""
|
#define PACKAGE_STRING "bfd 2.34"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME ""
|
#define PACKAGE_TARNAME "bfd"
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
/* Define to the home page for this package. */
|
||||||
#define PACKAGE_URL ""
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION ""
|
#define PACKAGE_VERSION "2.34"
|
||||||
|
|
||||||
/* The size of `char', as computed by sizeof. */
|
/* The size of `char', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_CHAR */
|
/* #undef SIZEOF_CHAR */
|
||||||
|
|
||||||
/* The size of `int', as computed by sizeof. */
|
/* The size of `int', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_INT */
|
#define SIZEOF_INT 4
|
||||||
|
|
||||||
/* The size of `long', as computed by sizeof. */
|
/* The size of `long', as computed by sizeof. */
|
||||||
#define SIZEOF_LONG 8
|
#define SIZEOF_LONG 8
|
||||||
|
|
@ -321,6 +361,9 @@
|
||||||
/* Name of host specific header file to include in trad-core.c. */
|
/* Name of host specific header file to include in trad-core.c. */
|
||||||
/* #undef TRAD_HEADER */
|
/* #undef TRAD_HEADER */
|
||||||
|
|
||||||
|
/* Define if 64-bit archives should always be used. */
|
||||||
|
/* #undef USE_64_BIT_ARCHIVE */
|
||||||
|
|
||||||
/* Use b modifier when opening binary files? */
|
/* Use b modifier when opening binary files? */
|
||||||
/* #undef USE_BINARY_FOPEN */
|
/* #undef USE_BINARY_FOPEN */
|
||||||
|
|
||||||
|
|
@ -333,9 +376,6 @@
|
||||||
/* Define if we should default to creating read-only plt entries */
|
/* Define if we should default to creating read-only plt entries */
|
||||||
/* #undef USE_SECUREPLT */
|
/* #undef USE_SECUREPLT */
|
||||||
|
|
||||||
/* Define if we may generate symbols with ELF's STT_COMMON type */
|
|
||||||
/* #undef USE_STT_COMMON */
|
|
||||||
|
|
||||||
/* Enable extensions on AIX 3, Interix. */
|
/* Enable extensions on AIX 3, Interix. */
|
||||||
#ifndef _ALL_SOURCE
|
#ifndef _ALL_SOURCE
|
||||||
# define _ALL_SOURCE 1
|
# define _ALL_SOURCE 1
|
||||||
|
|
@ -359,7 +399,12 @@
|
||||||
|
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "2.23.2"
|
#define VERSION "2.34"
|
||||||
|
|
||||||
|
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||||
|
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||||
|
# define _DARWIN_USE_64_BIT_INODE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||||
/* #undef _FILE_OFFSET_BITS */
|
/* #undef _FILE_OFFSET_BITS */
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
# This file is automatically generated. DO NOT EDIT!
|
# This file is automatically generated. DO NOT EDIT!
|
||||||
# Generated from: NetBSD: mknative-binutils,v 1.9 2013/10/01 15:41:17 skrll Exp
|
# Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp
|
||||||
# Generated from: NetBSD: mknative.common,v 1.10 2013/10/20 16:00:20 skrll Exp
|
# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp
|
||||||
#
|
#
|
||||||
G_libbfd_la_DEPENDENCIES=elf64-aarch64.lo elf64.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo elf64-gen.lo elf32-gen.lo cpu-aarch64.lo cpu-arm.lo archive64.lo ofiles
|
G_libbfd_la_DEPENDENCIES=elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo dwarf2.lo elf32-aarch64.lo elf32.lo elf32-arm.lo elf-nacl.lo elf-vxworks.lo elf64-gen.lo elf32-gen.lo plugin.lo cpu-aarch64.lo cpu-arm.lo archive64.lo ofiles
|
||||||
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo
|
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coff-bfd.lo compress.lo corefile.lo elf-properties.lo format.lo hash.lo init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo binary.lo ihex.lo srec.lo tekhex.lo verilog.lo
|
||||||
G_DEFS=-DHAVE_CONFIG_H
|
G_DEFS=-DHAVE_CONFIG_H
|
||||||
G_INCLUDES=-I. -I${GNUHOSTDIST}/bfd -I${GNUHOSTDIST}/bfd/../include -DHAVE_bfd_elf64_littleaarch64_vec -DHAVE_bfd_elf64_bigaarch64_vec -DHAVE_bfd_elf32_littlearm_vec -DHAVE_bfd_elf32_bigarm_vec -DHAVE_bfd_elf64_little_generic_vec -DHAVE_bfd_elf64_big_generic_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -I./../intl
|
G_INCLUDES=
|
||||||
G_TDEFAULTS=-DDEFAULT_VECTOR=bfd_elf64_littleaarch64_vec -DSELECT_VECS='&bfd_elf64_littleaarch64_vec,&bfd_elf64_bigaarch64_vec,&bfd_elf32_littlearm_vec,&bfd_elf32_bigarm_vec,&bfd_elf64_little_generic_vec,&bfd_elf64_big_generic_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_aarch64_arch,&bfd_arm_arch'
|
G_TDEFAULTS=-DDEFAULT_VECTOR=aarch64_elf64_le_vec -DSELECT_VECS='&aarch64_elf64_le_vec,&aarch64_elf64_be_vec,&aarch64_elf32_le_vec,&aarch64_elf32_be_vec,&arm_elf32_le_vec,&arm_elf32_be_vec,&elf64_le_vec,&elf64_be_vec,&elf32_le_vec,&elf32_be_vec' -DSELECT_ARCHITECTURES='&bfd_aarch64_arch,&bfd_arm_arch'
|
||||||
|
G_HAVEVECS=-DHAVE_aarch64_elf64_le_vec -DHAVE_aarch64_elf64_be_vec -DHAVE_aarch64_elf32_le_vec -DHAVE_aarch64_elf32_be_vec -DHAVE_arm_elf32_le_vec -DHAVE_arm_elf32_be_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec
|
||||||
|
|
|
||||||
7862
external/gpl3/binutils/lib/libbfd/arch/aarch64eb/bfd.h
vendored
Normal file
7862
external/gpl3/binutils/lib/libbfd/arch/aarch64eb/bfd.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
51
external/gpl3/binutils/lib/libbfd/arch/aarch64eb/bfd_stdint.h
vendored
Normal file
51
external/gpl3/binutils/lib/libbfd/arch/aarch64eb/bfd_stdint.h
vendored
Normal file
|
|
@ -0,0 +1,51 @@
|
||||||
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
|
/* generated for aarch64_be--netbsd-gcc (NetBSD nb1 20200311) 8.4.0 */
|
||||||
|
|
||||||
|
#ifndef GCC_GENERATED_STDINT_H
|
||||||
|
#define GCC_GENERATED_STDINT_H 1
|
||||||
|
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
/* glibc uses these symbols as guards to prevent redefinitions. */
|
||||||
|
#ifdef __int8_t_defined
|
||||||
|
#define _INT8_T
|
||||||
|
#define _INT16_T
|
||||||
|
#define _INT32_T
|
||||||
|
#endif
|
||||||
|
#ifdef __uint32_t_defined
|
||||||
|
#define _UINT32_T
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Some systems have guard macros to prevent redefinitions, define them. */
|
||||||
|
#ifndef _INT8_T
|
||||||
|
#define _INT8_T
|
||||||
|
#endif
|
||||||
|
#ifndef _INT16_T
|
||||||
|
#define _INT16_T
|
||||||
|
#endif
|
||||||
|
#ifndef _INT32_T
|
||||||
|
#define _INT32_T
|
||||||
|
#endif
|
||||||
|
#ifndef _UINT8_T
|
||||||
|
#define _UINT8_T
|
||||||
|
#endif
|
||||||
|
#ifndef _UINT16_T
|
||||||
|
#define _UINT16_T
|
||||||
|
#endif
|
||||||
|
#ifndef _UINT32_T
|
||||||
|
#define _UINT32_T
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* system headers have good uint64_t and int64_t */
|
||||||
|
#ifndef _INT64_T
|
||||||
|
#define _INT64_T
|
||||||
|
#endif
|
||||||
|
#ifndef _UINT64_T
|
||||||
|
#define _UINT64_T
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* GCC_GENERATED_STDINT_H */
|
||||||
26
external/gpl3/binutils/lib/libbfd/arch/aarch64eb/bfdver.h
vendored
Normal file
26
external/gpl3/binutils/lib/libbfd/arch/aarch64eb/bfdver.h
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
|
/* The date below is automatically updated every day by a bot. During
|
||||||
|
development, we include the date in the tools' version strings
|
||||||
|
(visible in 'ld -v' etc.) because people build binutils from a
|
||||||
|
variety of sources - git, tarballs, distro sources - and we want
|
||||||
|
something that can easily identify the source they used when they
|
||||||
|
report bugs. The bfd version plus date is usually good enough for
|
||||||
|
that purpose.
|
||||||
|
|
||||||
|
During development, this date ends up in libbfd and libopcodes
|
||||||
|
sonames because people naturally expect shared libraries with the
|
||||||
|
same soname to have compatible ABIs. We could bump the bfd version
|
||||||
|
on every ABI change, but that's just another thing contributors and
|
||||||
|
maintainers would need to remember. Instead, it's much easier for
|
||||||
|
all if the soname contains the date. This is not perfect but is
|
||||||
|
good enough.
|
||||||
|
|
||||||
|
In releases, the date is not included in either version strings or
|
||||||
|
sonames. */
|
||||||
|
#define BFD_VERSION_DATE 20200201
|
||||||
|
#define BFD_VERSION 234000000
|
||||||
|
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.34"
|
||||||
|
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
||||||
423
external/gpl3/binutils/lib/libbfd/arch/aarch64eb/config.h
vendored
Normal file
423
external/gpl3/binutils/lib/libbfd/arch/aarch64eb/config.h
vendored
Normal file
|
|
@ -0,0 +1,423 @@
|
||||||
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
|
/* config.h. Generated from config.in by configure. */
|
||||||
|
/* config.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
|
/* Check that config.h is #included before system headers
|
||||||
|
(this works only for glibc, but that should be enough). */
|
||||||
|
#if defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__CONFIG_H__)
|
||||||
|
# error config.h must be #included before system headers
|
||||||
|
#endif
|
||||||
|
#define __CONFIG_H__ 1
|
||||||
|
|
||||||
|
/* Name of host specific core header file to include in elf.c. */
|
||||||
|
/* #undef CORE_HEADER */
|
||||||
|
|
||||||
|
/* Define to 1 if you want to enable -z separate-code in ELF linker by
|
||||||
|
default. */
|
||||||
|
#define DEFAULT_LD_Z_SEPARATE_CODE 0
|
||||||
|
|
||||||
|
/* Define to 1 if translation of program messages to the user's native
|
||||||
|
language is requested. */
|
||||||
|
#define ENABLE_NLS 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <alloca.h> header file. */
|
||||||
|
/* #undef HAVE_ALLOCA_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_ASPRINTF 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_BASENAME 0
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `ffs', and to 0 if you don't. */
|
||||||
|
#define HAVE_DECL_FFS 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `free', and to 0 if you don't.
|
||||||
|
*/
|
||||||
|
#define HAVE_DECL_FREE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `fseeko', and to 0 if you don't.
|
||||||
|
*/
|
||||||
|
#define HAVE_DECL_FSEEKO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `fseeko64', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_FSEEKO64 0
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `ftello', and to 0 if you don't.
|
||||||
|
*/
|
||||||
|
#define HAVE_DECL_FTELLO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `ftello64', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_FTELLO64 0
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `getenv', and to 0 if you don't.
|
||||||
|
*/
|
||||||
|
#define HAVE_DECL_GETENV 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `malloc', and to 0 if you don't.
|
||||||
|
*/
|
||||||
|
#define HAVE_DECL_MALLOC 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `realloc', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_REALLOC 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `snprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_SNPRINTF 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `stpcpy', and to 0 if you don't.
|
||||||
|
*/
|
||||||
|
#define HAVE_DECL_STPCPY 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_STRNLEN 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
||||||
|
*/
|
||||||
|
#define HAVE_DECL_STRSTR 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_VASPRINTF 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_VSNPRINTF 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
|
||||||
|
*/
|
||||||
|
#define HAVE_DIRENT_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||||
|
#define HAVE_DLFCN_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fcntl' function. */
|
||||||
|
#define HAVE_FCNTL 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <fcntl.h> header file. */
|
||||||
|
#define HAVE_FCNTL_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fdopen' function. */
|
||||||
|
#define HAVE_FDOPEN 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fileno' function. */
|
||||||
|
#define HAVE_FILENO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fls' function. */
|
||||||
|
/* #undef HAVE_FLS */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fopen64' function. */
|
||||||
|
/* #undef HAVE_FOPEN64 */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fseeko' function. */
|
||||||
|
#define HAVE_FSEEKO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fseeko64' function. */
|
||||||
|
/* #undef HAVE_FSEEKO64 */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `ftello' function. */
|
||||||
|
#define HAVE_FTELLO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `ftello64' function. */
|
||||||
|
/* #undef HAVE_FTELLO64 */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getgid' function. */
|
||||||
|
#define HAVE_GETGID 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getpagesize' function. */
|
||||||
|
#define HAVE_GETPAGESIZE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getrlimit' function. */
|
||||||
|
#define HAVE_GETRLIMIT 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getuid' function. */
|
||||||
|
#define HAVE_GETUID 1
|
||||||
|
|
||||||
|
/* Define if your compiler supports hidden visibility. */
|
||||||
|
#define HAVE_HIDDEN 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
|
#define HAVE_INTTYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long double'. */
|
||||||
|
#define HAVE_LONG_DOUBLE 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long long'. */
|
||||||
|
#define HAVE_LONG_LONG 1
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
||||||
|
/* #undef HAVE_LWPSTATUS_T */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has lwpstatus_t.pr_context. */
|
||||||
|
/* #undef HAVE_LWPSTATUS_T_PR_CONTEXT */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has lwpstatus_t.pr_fpreg. */
|
||||||
|
/* #undef HAVE_LWPSTATUS_T_PR_FPREG */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has lwpstatus_t.pr_reg. */
|
||||||
|
/* #undef HAVE_LWPSTATUS_T_PR_REG */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has lwpxstatus_t. */
|
||||||
|
/* #undef HAVE_LWPXSTATUS_T */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `madvise' function. */
|
||||||
|
#define HAVE_MADVISE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <memory.h> header file. */
|
||||||
|
#define HAVE_MEMORY_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have a working `mmap' system call. */
|
||||||
|
#define HAVE_MMAP 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `mprotect' function. */
|
||||||
|
#define HAVE_MPROTECT 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
|
||||||
|
/* #undef HAVE_NDIR_H */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has prpsinfo32_t. */
|
||||||
|
/* #undef HAVE_PRPSINFO32_T */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has prpsinfo32_t.pr_pid. */
|
||||||
|
/* #undef HAVE_PRPSINFO32_T_PR_PID */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has prpsinfo_t. */
|
||||||
|
/* #undef HAVE_PRPSINFO_T */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has prpsinfo_t.pr_pid. */
|
||||||
|
/* #undef HAVE_PRPSINFO_T_PR_PID */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has prstatus32_t. */
|
||||||
|
/* #undef HAVE_PRSTATUS32_T */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has prstatus32_t.pr_who. */
|
||||||
|
/* #undef HAVE_PRSTATUS32_T_PR_WHO */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has prstatus_t. */
|
||||||
|
/* #undef HAVE_PRSTATUS_T */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has prstatus_t.pr_who. */
|
||||||
|
/* #undef HAVE_PRSTATUS_T_PR_WHO */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has psinfo32_t. */
|
||||||
|
/* #undef HAVE_PSINFO32_T */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has psinfo32_t.pr_pid. */
|
||||||
|
/* #undef HAVE_PSINFO32_T_PR_PID */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has psinfo_t. */
|
||||||
|
/* #undef HAVE_PSINFO_T */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has psinfo_t.pr_pid. */
|
||||||
|
/* #undef HAVE_PSINFO_T_PR_PID */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has pstatus32_t. */
|
||||||
|
/* #undef HAVE_PSTATUS32_T */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has pstatus_t. */
|
||||||
|
/* #undef HAVE_PSTATUS_T */
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has pxstatus_t. */
|
||||||
|
/* #undef HAVE_PXSTATUS_T */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `setitimer' function. */
|
||||||
|
#define HAVE_SETITIMER 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <stddef.h> header file. */
|
||||||
|
#define HAVE_STDDEF_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <stdint.h> header file. */
|
||||||
|
#define HAVE_STDINT_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||||
|
#define HAVE_STDLIB_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <strings.h> header file. */
|
||||||
|
#define HAVE_STRINGS_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <string.h> header file. */
|
||||||
|
#define HAVE_STRING_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `strtoull' function. */
|
||||||
|
#define HAVE_STRTOULL 1
|
||||||
|
|
||||||
|
/* Define if struct core_dumpx has member c_impl */
|
||||||
|
/* #undef HAVE_ST_C_IMPL */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `sysconf' function. */
|
||||||
|
#define HAVE_SYSCONF 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
|
||||||
|
*/
|
||||||
|
/* #undef HAVE_SYS_DIR_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/file.h> header file. */
|
||||||
|
#define HAVE_SYS_FILE_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
|
||||||
|
*/
|
||||||
|
/* #undef HAVE_SYS_NDIR_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||||
|
#define HAVE_SYS_PARAM_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
||||||
|
/* #undef HAVE_SYS_PROCFS_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/resource.h> header file. */
|
||||||
|
#define HAVE_SYS_RESOURCE_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/time.h> header file. */
|
||||||
|
#define HAVE_SYS_TIME_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||||
|
#define HAVE_SYS_TYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <time.h> header file. */
|
||||||
|
#define HAVE_TIME_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
|
#define HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wchar.h> header file. */
|
||||||
|
#define HAVE_WCHAR_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wctype.h> header file. */
|
||||||
|
#define HAVE_WCTYPE_H 1
|
||||||
|
|
||||||
|
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
||||||
|
/* #undef HAVE_WIN32_PSTATUS_T */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <windows.h> header file. */
|
||||||
|
/* #undef HAVE_WINDOWS_H */
|
||||||
|
|
||||||
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||||
|
*/
|
||||||
|
#define LT_OBJDIR ".libs/"
|
||||||
|
|
||||||
|
/* Name of package */
|
||||||
|
#define PACKAGE "bfd"
|
||||||
|
|
||||||
|
/* Define to the address where bug reports for this package should be sent. */
|
||||||
|
#define PACKAGE_BUGREPORT ""
|
||||||
|
|
||||||
|
/* Define to the full name of this package. */
|
||||||
|
#define PACKAGE_NAME "bfd"
|
||||||
|
|
||||||
|
/* Define to the full name and version of this package. */
|
||||||
|
#define PACKAGE_STRING "bfd 2.34"
|
||||||
|
|
||||||
|
/* Define to the one symbol short name of this package. */
|
||||||
|
#define PACKAGE_TARNAME "bfd"
|
||||||
|
|
||||||
|
/* Define to the home page for this package. */
|
||||||
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
|
/* Define to the version of this package. */
|
||||||
|
#define PACKAGE_VERSION "2.34"
|
||||||
|
|
||||||
|
/* The size of `char', as computed by sizeof. */
|
||||||
|
/* #undef SIZEOF_CHAR */
|
||||||
|
|
||||||
|
/* The size of `int', as computed by sizeof. */
|
||||||
|
#define SIZEOF_INT 4
|
||||||
|
|
||||||
|
/* The size of `long', as computed by sizeof. */
|
||||||
|
#define SIZEOF_LONG 8
|
||||||
|
|
||||||
|
/* The size of `long long', as computed by sizeof. */
|
||||||
|
#define SIZEOF_LONG_LONG 8
|
||||||
|
|
||||||
|
/* The size of `off_t', as computed by sizeof. */
|
||||||
|
#define SIZEOF_OFF_T 8
|
||||||
|
|
||||||
|
/* The size of `short', as computed by sizeof. */
|
||||||
|
/* #undef SIZEOF_SHORT */
|
||||||
|
|
||||||
|
/* The size of `void *', as computed by sizeof. */
|
||||||
|
#define SIZEOF_VOID_P 8
|
||||||
|
|
||||||
|
/* Define to 1 if you have the ANSI C header files. */
|
||||||
|
#define STDC_HEADERS 1
|
||||||
|
|
||||||
|
/* Define if you can safely include both <string.h> and <strings.h>. */
|
||||||
|
#define STRING_WITH_STRINGS 1
|
||||||
|
|
||||||
|
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
|
||||||
|
#define TIME_WITH_SYS_TIME 1
|
||||||
|
|
||||||
|
/* Name of host specific header file to include in trad-core.c. */
|
||||||
|
/* #undef TRAD_HEADER */
|
||||||
|
|
||||||
|
/* Define if 64-bit archives should always be used. */
|
||||||
|
/* #undef USE_64_BIT_ARCHIVE */
|
||||||
|
|
||||||
|
/* Use b modifier when opening binary files? */
|
||||||
|
/* #undef USE_BINARY_FOPEN */
|
||||||
|
|
||||||
|
/* Define if we should use leading underscore on 64 bit mingw targets */
|
||||||
|
/* #undef USE_MINGW64_LEADING_UNDERSCORES */
|
||||||
|
|
||||||
|
/* Use mmap if it's available? */
|
||||||
|
/* #undef USE_MMAP */
|
||||||
|
|
||||||
|
/* Define if we should default to creating read-only plt entries */
|
||||||
|
/* #undef USE_SECUREPLT */
|
||||||
|
|
||||||
|
/* Enable extensions on AIX 3, Interix. */
|
||||||
|
#ifndef _ALL_SOURCE
|
||||||
|
# define _ALL_SOURCE 1
|
||||||
|
#endif
|
||||||
|
/* Enable GNU extensions on systems that have them. */
|
||||||
|
#ifndef _GNU_SOURCE
|
||||||
|
# define _GNU_SOURCE 1
|
||||||
|
#endif
|
||||||
|
/* Enable threading extensions on Solaris. */
|
||||||
|
#ifndef _POSIX_PTHREAD_SEMANTICS
|
||||||
|
# define _POSIX_PTHREAD_SEMANTICS 1
|
||||||
|
#endif
|
||||||
|
/* Enable extensions on HP NonStop. */
|
||||||
|
#ifndef _TANDEM_SOURCE
|
||||||
|
# define _TANDEM_SOURCE 1
|
||||||
|
#endif
|
||||||
|
/* Enable general extensions on Solaris. */
|
||||||
|
#ifndef __EXTENSIONS__
|
||||||
|
# define __EXTENSIONS__ 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Version number of package */
|
||||||
|
#define VERSION "2.34"
|
||||||
|
|
||||||
|
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||||
|
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||||
|
# define _DARWIN_USE_64_BIT_INODE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||||
|
/* #undef _FILE_OFFSET_BITS */
|
||||||
|
|
||||||
|
/* Define for large files, on AIX-style hosts. */
|
||||||
|
/* #undef _LARGE_FILES */
|
||||||
|
|
||||||
|
/* Define to 1 if on MINIX. */
|
||||||
|
/* #undef _MINIX */
|
||||||
|
|
||||||
|
/* Define to 2 if the system does not provide POSIX.1 features except with
|
||||||
|
this defined. */
|
||||||
|
/* #undef _POSIX_1_SOURCE */
|
||||||
|
|
||||||
|
/* Define to 1 if you need to in order for `stat' and other things to work. */
|
||||||
|
/* #undef _POSIX_SOURCE */
|
||||||
10
external/gpl3/binutils/lib/libbfd/arch/aarch64eb/defs.mk
vendored
Normal file
10
external/gpl3/binutils/lib/libbfd/arch/aarch64eb/defs.mk
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
# This file is automatically generated. DO NOT EDIT!
|
||||||
|
# Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp
|
||||||
|
# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp
|
||||||
|
#
|
||||||
|
G_libbfd_la_DEPENDENCIES=elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo dwarf2.lo elf32-aarch64.lo elf32.lo elf32-arm.lo elf-nacl.lo elf-vxworks.lo elf64-gen.lo elf32-gen.lo plugin.lo cpu-aarch64.lo cpu-arm.lo archive64.lo ofiles
|
||||||
|
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coff-bfd.lo compress.lo corefile.lo elf-properties.lo format.lo hash.lo init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo binary.lo ihex.lo srec.lo tekhex.lo verilog.lo
|
||||||
|
G_DEFS=-DHAVE_CONFIG_H
|
||||||
|
G_INCLUDES=
|
||||||
|
G_TDEFAULTS=-DDEFAULT_VECTOR=aarch64_elf64_be_vec -DSELECT_VECS='&aarch64_elf64_be_vec,&aarch64_elf64_le_vec,&aarch64_elf32_le_vec,&aarch64_elf32_be_vec,&arm_elf32_be_vec,&arm_elf32_le_vec,&elf64_le_vec,&elf64_be_vec,&elf32_le_vec,&elf32_be_vec' -DSELECT_ARCHITECTURES='&bfd_aarch64_arch,&bfd_arm_arch'
|
||||||
|
G_HAVEVECS=-DHAVE_aarch64_elf64_be_vec -DHAVE_aarch64_elf64_le_vec -DHAVE_aarch64_elf32_le_vec -DHAVE_aarch64_elf32_be_vec -DHAVE_arm_elf32_be_vec -DHAVE_arm_elf32_le_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec
|
||||||
4046
external/gpl3/binutils/lib/libbfd/arch/alpha/bfd.h
vendored
4046
external/gpl3/binutils/lib/libbfd/arch/alpha/bfd.h
vendored
File diff suppressed because it is too large
Load Diff
|
|
@ -1,8 +1,8 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* generated for alpha--netbsd-gcc (NetBSD nb1 20120916) 4.5.4 */
|
/* generated for alpha--netbsd-gcc (NetBSD nb1 20190930) 8.3.0 */
|
||||||
|
|
||||||
#ifndef GCC_GENERATED_STDINT_H
|
#ifndef GCC_GENERATED_STDINT_H
|
||||||
#define GCC_GENERATED_STDINT_H 1
|
#define GCC_GENERATED_STDINT_H 1
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,26 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
#define BFD_VERSION_DATE 20130325
|
/* The date below is automatically updated every day by a bot. During
|
||||||
#define BFD_VERSION 223020000
|
development, we include the date in the tools' version strings
|
||||||
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.23.2"
|
(visible in 'ld -v' etc.) because people build binutils from a
|
||||||
|
variety of sources - git, tarballs, distro sources - and we want
|
||||||
|
something that can easily identify the source they used when they
|
||||||
|
report bugs. The bfd version plus date is usually good enough for
|
||||||
|
that purpose.
|
||||||
|
|
||||||
|
During development, this date ends up in libbfd and libopcodes
|
||||||
|
sonames because people naturally expect shared libraries with the
|
||||||
|
same soname to have compatible ABIs. We could bump the bfd version
|
||||||
|
on every ABI change, but that's just another thing contributors and
|
||||||
|
maintainers would need to remember. Instead, it's much easier for
|
||||||
|
all if the soname contains the date. This is not perfect but is
|
||||||
|
good enough.
|
||||||
|
|
||||||
|
In releases, the date is not included in either version strings or
|
||||||
|
sonames. */
|
||||||
|
#define BFD_VERSION_DATE 20200201
|
||||||
|
#define BFD_VERSION 234000000
|
||||||
|
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.34"
|
||||||
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* config.h. Generated from config.in by configure. */
|
/* config.h. Generated from config.in by configure. */
|
||||||
/* config.in. Generated from configure.in by autoheader. */
|
/* config.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
/* Check that config.h is #included before system headers
|
/* Check that config.h is #included before system headers
|
||||||
(this works only for glibc, but that should be enough). */
|
(this works only for glibc, but that should be enough). */
|
||||||
|
|
@ -15,6 +15,10 @@
|
||||||
/* Name of host specific core header file to include in elf.c. */
|
/* Name of host specific core header file to include in elf.c. */
|
||||||
/* #undef CORE_HEADER */
|
/* #undef CORE_HEADER */
|
||||||
|
|
||||||
|
/* Define to 1 if you want to enable -z separate-code in ELF linker by
|
||||||
|
default. */
|
||||||
|
#define DEFAULT_LD_Z_SEPARATE_CODE 0
|
||||||
|
|
||||||
/* Define to 1 if translation of program messages to the user's native
|
/* Define to 1 if translation of program messages to the user's native
|
||||||
language is requested. */
|
language is requested. */
|
||||||
#define ENABLE_NLS 1
|
#define ENABLE_NLS 1
|
||||||
|
|
@ -22,6 +26,10 @@
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
/* Define to 1 if you have the <alloca.h> header file. */
|
||||||
/* #undef HAVE_ALLOCA_H */
|
/* #undef HAVE_ALLOCA_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_ASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_BASENAME 0
|
#define HAVE_DECL_BASENAME 0
|
||||||
|
|
@ -69,10 +77,18 @@
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STPCPY 1
|
#define HAVE_DECL_STPCPY 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_STRNLEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STRSTR 1
|
#define HAVE_DECL_STRSTR 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_VASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_VSNPRINTF 1
|
#define HAVE_DECL_VSNPRINTF 1
|
||||||
|
|
@ -96,6 +112,9 @@
|
||||||
/* Define to 1 if you have the `fileno' function. */
|
/* Define to 1 if you have the `fileno' function. */
|
||||||
#define HAVE_FILENO 1
|
#define HAVE_FILENO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fls' function. */
|
||||||
|
/* #undef HAVE_FLS */
|
||||||
|
|
||||||
/* Define to 1 if you have the `fopen64' function. */
|
/* Define to 1 if you have the `fopen64' function. */
|
||||||
/* #undef HAVE_FOPEN64 */
|
/* #undef HAVE_FOPEN64 */
|
||||||
|
|
||||||
|
|
@ -117,12 +136,24 @@
|
||||||
/* Define to 1 if you have the `getpagesize' function. */
|
/* Define to 1 if you have the `getpagesize' function. */
|
||||||
#define HAVE_GETPAGESIZE 1
|
#define HAVE_GETPAGESIZE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getrlimit' function. */
|
||||||
|
#define HAVE_GETRLIMIT 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `getuid' function. */
|
/* Define to 1 if you have the `getuid' function. */
|
||||||
#define HAVE_GETUID 1
|
#define HAVE_GETUID 1
|
||||||
|
|
||||||
|
/* Define if your compiler supports hidden visibility. */
|
||||||
|
#define HAVE_HIDDEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
#define HAVE_INTTYPES_H 1
|
#define HAVE_INTTYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long double'. */
|
||||||
|
#define HAVE_LONG_DOUBLE 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long long'. */
|
||||||
|
#define HAVE_LONG_LONG 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
||||||
/* #undef HAVE_LWPSTATUS_T */
|
/* #undef HAVE_LWPSTATUS_T */
|
||||||
|
|
||||||
|
|
@ -236,9 +267,15 @@
|
||||||
*/
|
*/
|
||||||
/* #undef HAVE_SYS_NDIR_H */
|
/* #undef HAVE_SYS_NDIR_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||||
|
#define HAVE_SYS_PARAM_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
||||||
/* #undef HAVE_SYS_PROCFS_H */
|
/* #undef HAVE_SYS_PROCFS_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/resource.h> header file. */
|
||||||
|
#define HAVE_SYS_RESOURCE_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
#define HAVE_SYS_STAT_H 1
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
|
@ -254,15 +291,18 @@
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
#define HAVE_UNISTD_H 1
|
#define HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wchar.h> header file. */
|
||||||
|
#define HAVE_WCHAR_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wctype.h> header file. */
|
||||||
|
#define HAVE_WCTYPE_H 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
||||||
/* #undef HAVE_WIN32_PSTATUS_T */
|
/* #undef HAVE_WIN32_PSTATUS_T */
|
||||||
|
|
||||||
/* Define to 1 if you have the <windows.h> header file. */
|
/* Define to 1 if you have the <windows.h> header file. */
|
||||||
/* #undef HAVE_WINDOWS_H */
|
/* #undef HAVE_WINDOWS_H */
|
||||||
|
|
||||||
/* Define to 1 if you have the <zlib.h> header file. */
|
|
||||||
#define HAVE_ZLIB_H 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||||
*/
|
*/
|
||||||
#define LT_OBJDIR ".libs/"
|
#define LT_OBJDIR ".libs/"
|
||||||
|
|
@ -274,25 +314,25 @@
|
||||||
#define PACKAGE_BUGREPORT ""
|
#define PACKAGE_BUGREPORT ""
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
/* Define to the full name of this package. */
|
||||||
#define PACKAGE_NAME ""
|
#define PACKAGE_NAME "bfd"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING ""
|
#define PACKAGE_STRING "bfd 2.34"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME ""
|
#define PACKAGE_TARNAME "bfd"
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
/* Define to the home page for this package. */
|
||||||
#define PACKAGE_URL ""
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION ""
|
#define PACKAGE_VERSION "2.34"
|
||||||
|
|
||||||
/* The size of `char', as computed by sizeof. */
|
/* The size of `char', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_CHAR */
|
/* #undef SIZEOF_CHAR */
|
||||||
|
|
||||||
/* The size of `int', as computed by sizeof. */
|
/* The size of `int', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_INT */
|
#define SIZEOF_INT 4
|
||||||
|
|
||||||
/* The size of `long', as computed by sizeof. */
|
/* The size of `long', as computed by sizeof. */
|
||||||
#define SIZEOF_LONG 8
|
#define SIZEOF_LONG 8
|
||||||
|
|
@ -321,6 +361,9 @@
|
||||||
/* Name of host specific header file to include in trad-core.c. */
|
/* Name of host specific header file to include in trad-core.c. */
|
||||||
/* #undef TRAD_HEADER */
|
/* #undef TRAD_HEADER */
|
||||||
|
|
||||||
|
/* Define if 64-bit archives should always be used. */
|
||||||
|
/* #undef USE_64_BIT_ARCHIVE */
|
||||||
|
|
||||||
/* Use b modifier when opening binary files? */
|
/* Use b modifier when opening binary files? */
|
||||||
/* #undef USE_BINARY_FOPEN */
|
/* #undef USE_BINARY_FOPEN */
|
||||||
|
|
||||||
|
|
@ -333,9 +376,6 @@
|
||||||
/* Define if we should default to creating read-only plt entries */
|
/* Define if we should default to creating read-only plt entries */
|
||||||
/* #undef USE_SECUREPLT */
|
/* #undef USE_SECUREPLT */
|
||||||
|
|
||||||
/* Define if we may generate symbols with ELF's STT_COMMON type */
|
|
||||||
/* #undef USE_STT_COMMON */
|
|
||||||
|
|
||||||
/* Enable extensions on AIX 3, Interix. */
|
/* Enable extensions on AIX 3, Interix. */
|
||||||
#ifndef _ALL_SOURCE
|
#ifndef _ALL_SOURCE
|
||||||
# define _ALL_SOURCE 1
|
# define _ALL_SOURCE 1
|
||||||
|
|
@ -359,7 +399,12 @@
|
||||||
|
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "2.23.2"
|
#define VERSION "2.34"
|
||||||
|
|
||||||
|
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||||
|
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||||
|
# define _DARWIN_USE_64_BIT_INODE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||||
/* #undef _FILE_OFFSET_BITS */
|
/* #undef _FILE_OFFSET_BITS */
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
# This file is automatically generated. DO NOT EDIT!
|
# This file is automatically generated. DO NOT EDIT!
|
||||||
# Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp
|
# Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp
|
||||||
# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp
|
# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp
|
||||||
#
|
#
|
||||||
G_libbfd_la_DEPENDENCIES=elf64-alpha.lo elf64.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo coff-alpha.lo ecoff.lo ecofflink.lo elf64-gen.lo elf32-gen.lo elf32.lo cpu-alpha.lo netbsd-core.lo archive64.lo ofiles
|
G_libbfd_la_DEPENDENCIES=elf64-alpha.lo elf64.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo dwarf2.lo coff-alpha.lo ecoff.lo ecofflink.lo coffgen.lo elf64-gen.lo elf32-gen.lo elf32.lo plugin.lo cpu-alpha.lo netbsd-core.lo archive64.lo ofiles
|
||||||
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo
|
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coff-bfd.lo compress.lo corefile.lo elf-properties.lo format.lo hash.lo init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo binary.lo ihex.lo srec.lo tekhex.lo verilog.lo
|
||||||
G_DEFS=-DHAVE_CONFIG_H
|
G_DEFS=-DHAVE_CONFIG_H
|
||||||
G_INCLUDES=-DNETBSD_CORE -I. -I${GNUHOSTDIST}/bfd -I${GNUHOSTDIST}/bfd/../include -DHAVE_bfd_elf64_alpha_vec -DHAVE_ecoffalpha_little_vec -DHAVE_bfd_elf64_little_generic_vec -DHAVE_bfd_elf64_big_generic_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -I./../intl
|
G_INCLUDES=
|
||||||
G_TDEFAULTS=-DDEFAULT_VECTOR=bfd_elf64_alpha_vec -DSELECT_VECS='&bfd_elf64_alpha_vec,&ecoffalpha_little_vec,&bfd_elf64_little_generic_vec,&bfd_elf64_big_generic_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_alpha_arch'
|
G_TDEFAULTS=-DDEFAULT_VECTOR=alpha_elf64_vec -DSELECT_VECS='&alpha_elf64_vec,&alpha_ecoff_le_vec,&elf64_le_vec,&elf64_be_vec,&elf32_le_vec,&elf32_be_vec' -DSELECT_ARCHITECTURES='&bfd_alpha_arch'
|
||||||
|
G_HAVEVECS=-DHAVE_alpha_elf64_vec -DHAVE_alpha_ecoff_le_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec
|
||||||
|
|
|
||||||
4046
external/gpl3/binutils/lib/libbfd/arch/arm/bfd.h
vendored
4046
external/gpl3/binutils/lib/libbfd/arch/arm/bfd.h
vendored
File diff suppressed because it is too large
Load Diff
|
|
@ -1,8 +1,8 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.11 2018/11/08 02:08:35 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* generated for arm--netbsdelf-gcc (NetBSD nb1 20120916) 4.5.4 */
|
/* generated for arm--netbsdelf-gcc (NetBSD nb4 20181109) 6.5.0 */
|
||||||
|
|
||||||
#ifndef GCC_GENERATED_STDINT_H
|
#ifndef GCC_GENERATED_STDINT_H
|
||||||
#define GCC_GENERATED_STDINT_H 1
|
#define GCC_GENERATED_STDINT_H 1
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,26 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
#define BFD_VERSION_DATE 20130325
|
/* The date below is automatically updated every day by a bot. During
|
||||||
#define BFD_VERSION 223020000
|
development, we include the date in the tools' version strings
|
||||||
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.23.2"
|
(visible in 'ld -v' etc.) because people build binutils from a
|
||||||
|
variety of sources - git, tarballs, distro sources - and we want
|
||||||
|
something that can easily identify the source they used when they
|
||||||
|
report bugs. The bfd version plus date is usually good enough for
|
||||||
|
that purpose.
|
||||||
|
|
||||||
|
During development, this date ends up in libbfd and libopcodes
|
||||||
|
sonames because people naturally expect shared libraries with the
|
||||||
|
same soname to have compatible ABIs. We could bump the bfd version
|
||||||
|
on every ABI change, but that's just another thing contributors and
|
||||||
|
maintainers would need to remember. Instead, it's much easier for
|
||||||
|
all if the soname contains the date. This is not perfect but is
|
||||||
|
good enough.
|
||||||
|
|
||||||
|
In releases, the date is not included in either version strings or
|
||||||
|
sonames. */
|
||||||
|
#define BFD_VERSION_DATE 20200201
|
||||||
|
#define BFD_VERSION 234000000
|
||||||
|
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.34"
|
||||||
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* config.h. Generated from config.in by configure. */
|
/* config.h. Generated from config.in by configure. */
|
||||||
/* config.in. Generated from configure.in by autoheader. */
|
/* config.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
/* Check that config.h is #included before system headers
|
/* Check that config.h is #included before system headers
|
||||||
(this works only for glibc, but that should be enough). */
|
(this works only for glibc, but that should be enough). */
|
||||||
|
|
@ -15,6 +15,10 @@
|
||||||
/* Name of host specific core header file to include in elf.c. */
|
/* Name of host specific core header file to include in elf.c. */
|
||||||
/* #undef CORE_HEADER */
|
/* #undef CORE_HEADER */
|
||||||
|
|
||||||
|
/* Define to 1 if you want to enable -z separate-code in ELF linker by
|
||||||
|
default. */
|
||||||
|
#define DEFAULT_LD_Z_SEPARATE_CODE 0
|
||||||
|
|
||||||
/* Define to 1 if translation of program messages to the user's native
|
/* Define to 1 if translation of program messages to the user's native
|
||||||
language is requested. */
|
language is requested. */
|
||||||
#define ENABLE_NLS 1
|
#define ENABLE_NLS 1
|
||||||
|
|
@ -22,6 +26,10 @@
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
/* Define to 1 if you have the <alloca.h> header file. */
|
||||||
/* #undef HAVE_ALLOCA_H */
|
/* #undef HAVE_ALLOCA_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_ASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_BASENAME 0
|
#define HAVE_DECL_BASENAME 0
|
||||||
|
|
@ -69,10 +77,18 @@
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STPCPY 1
|
#define HAVE_DECL_STPCPY 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_STRNLEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STRSTR 1
|
#define HAVE_DECL_STRSTR 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_VASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_VSNPRINTF 1
|
#define HAVE_DECL_VSNPRINTF 1
|
||||||
|
|
@ -96,6 +112,9 @@
|
||||||
/* Define to 1 if you have the `fileno' function. */
|
/* Define to 1 if you have the `fileno' function. */
|
||||||
#define HAVE_FILENO 1
|
#define HAVE_FILENO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fls' function. */
|
||||||
|
/* #undef HAVE_FLS */
|
||||||
|
|
||||||
/* Define to 1 if you have the `fopen64' function. */
|
/* Define to 1 if you have the `fopen64' function. */
|
||||||
/* #undef HAVE_FOPEN64 */
|
/* #undef HAVE_FOPEN64 */
|
||||||
|
|
||||||
|
|
@ -117,12 +136,24 @@
|
||||||
/* Define to 1 if you have the `getpagesize' function. */
|
/* Define to 1 if you have the `getpagesize' function. */
|
||||||
#define HAVE_GETPAGESIZE 1
|
#define HAVE_GETPAGESIZE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getrlimit' function. */
|
||||||
|
#define HAVE_GETRLIMIT 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `getuid' function. */
|
/* Define to 1 if you have the `getuid' function. */
|
||||||
#define HAVE_GETUID 1
|
#define HAVE_GETUID 1
|
||||||
|
|
||||||
|
/* Define if your compiler supports hidden visibility. */
|
||||||
|
#define HAVE_HIDDEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
#define HAVE_INTTYPES_H 1
|
#define HAVE_INTTYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long double'. */
|
||||||
|
#define HAVE_LONG_DOUBLE 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long long'. */
|
||||||
|
#define HAVE_LONG_LONG 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
||||||
/* #undef HAVE_LWPSTATUS_T */
|
/* #undef HAVE_LWPSTATUS_T */
|
||||||
|
|
||||||
|
|
@ -236,9 +267,15 @@
|
||||||
*/
|
*/
|
||||||
/* #undef HAVE_SYS_NDIR_H */
|
/* #undef HAVE_SYS_NDIR_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||||
|
#define HAVE_SYS_PARAM_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
||||||
/* #undef HAVE_SYS_PROCFS_H */
|
/* #undef HAVE_SYS_PROCFS_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/resource.h> header file. */
|
||||||
|
#define HAVE_SYS_RESOURCE_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
#define HAVE_SYS_STAT_H 1
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
|
@ -254,15 +291,18 @@
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
#define HAVE_UNISTD_H 1
|
#define HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wchar.h> header file. */
|
||||||
|
#define HAVE_WCHAR_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wctype.h> header file. */
|
||||||
|
#define HAVE_WCTYPE_H 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
||||||
/* #undef HAVE_WIN32_PSTATUS_T */
|
/* #undef HAVE_WIN32_PSTATUS_T */
|
||||||
|
|
||||||
/* Define to 1 if you have the <windows.h> header file. */
|
/* Define to 1 if you have the <windows.h> header file. */
|
||||||
/* #undef HAVE_WINDOWS_H */
|
/* #undef HAVE_WINDOWS_H */
|
||||||
|
|
||||||
/* Define to 1 if you have the <zlib.h> header file. */
|
|
||||||
#define HAVE_ZLIB_H 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||||
*/
|
*/
|
||||||
#define LT_OBJDIR ".libs/"
|
#define LT_OBJDIR ".libs/"
|
||||||
|
|
@ -274,25 +314,25 @@
|
||||||
#define PACKAGE_BUGREPORT ""
|
#define PACKAGE_BUGREPORT ""
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
/* Define to the full name of this package. */
|
||||||
#define PACKAGE_NAME ""
|
#define PACKAGE_NAME "bfd"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING ""
|
#define PACKAGE_STRING "bfd 2.34"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME ""
|
#define PACKAGE_TARNAME "bfd"
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
/* Define to the home page for this package. */
|
||||||
#define PACKAGE_URL ""
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION ""
|
#define PACKAGE_VERSION "2.34"
|
||||||
|
|
||||||
/* The size of `char', as computed by sizeof. */
|
/* The size of `char', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_CHAR */
|
/* #undef SIZEOF_CHAR */
|
||||||
|
|
||||||
/* The size of `int', as computed by sizeof. */
|
/* The size of `int', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_INT */
|
#define SIZEOF_INT 4
|
||||||
|
|
||||||
/* The size of `long', as computed by sizeof. */
|
/* The size of `long', as computed by sizeof. */
|
||||||
#define SIZEOF_LONG 4
|
#define SIZEOF_LONG 4
|
||||||
|
|
@ -321,6 +361,9 @@
|
||||||
/* Name of host specific header file to include in trad-core.c. */
|
/* Name of host specific header file to include in trad-core.c. */
|
||||||
/* #undef TRAD_HEADER */
|
/* #undef TRAD_HEADER */
|
||||||
|
|
||||||
|
/* Define if 64-bit archives should always be used. */
|
||||||
|
/* #undef USE_64_BIT_ARCHIVE */
|
||||||
|
|
||||||
/* Use b modifier when opening binary files? */
|
/* Use b modifier when opening binary files? */
|
||||||
/* #undef USE_BINARY_FOPEN */
|
/* #undef USE_BINARY_FOPEN */
|
||||||
|
|
||||||
|
|
@ -333,9 +376,6 @@
|
||||||
/* Define if we should default to creating read-only plt entries */
|
/* Define if we should default to creating read-only plt entries */
|
||||||
/* #undef USE_SECUREPLT */
|
/* #undef USE_SECUREPLT */
|
||||||
|
|
||||||
/* Define if we may generate symbols with ELF's STT_COMMON type */
|
|
||||||
/* #undef USE_STT_COMMON */
|
|
||||||
|
|
||||||
/* Enable extensions on AIX 3, Interix. */
|
/* Enable extensions on AIX 3, Interix. */
|
||||||
#ifndef _ALL_SOURCE
|
#ifndef _ALL_SOURCE
|
||||||
# define _ALL_SOURCE 1
|
# define _ALL_SOURCE 1
|
||||||
|
|
@ -359,7 +399,12 @@
|
||||||
|
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "2.23.2"
|
#define VERSION "2.34"
|
||||||
|
|
||||||
|
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||||
|
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||||
|
# define _DARWIN_USE_64_BIT_INODE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||||
/* #undef _FILE_OFFSET_BITS */
|
/* #undef _FILE_OFFSET_BITS */
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
# This file is automatically generated. DO NOT EDIT!
|
# This file is automatically generated. DO NOT EDIT!
|
||||||
# Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp
|
# Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp
|
||||||
# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp
|
# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp
|
||||||
#
|
#
|
||||||
G_libbfd_la_DEPENDENCIES=elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo armnetbsd.lo aout32.lo coff-arm.lo cofflink.lo elf32-gen.lo cpu-arm.lo netbsd-core.lo ofiles
|
G_libbfd_la_DEPENDENCIES=elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo dwarf2.lo elf32-gen.lo plugin.lo cpu-arm.lo netbsd-core.lo ofiles
|
||||||
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo
|
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coff-bfd.lo compress.lo corefile.lo elf-properties.lo format.lo hash.lo init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo binary.lo ihex.lo srec.lo tekhex.lo verilog.lo
|
||||||
G_DEFS=-DHAVE_CONFIG_H
|
G_DEFS=-DHAVE_CONFIG_H
|
||||||
G_INCLUDES=-DNETBSD_CORE -I. -I${GNUHOSTDIST}/bfd -I${GNUHOSTDIST}/bfd/../include -DHAVE_bfd_elf32_littlearm_vec -DHAVE_bfd_elf32_bigarm_vec -DHAVE_armnetbsd_vec -DHAVE_armcoff_little_vec -DHAVE_armcoff_big_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -I./../intl
|
G_INCLUDES=
|
||||||
G_TDEFAULTS=-DDEFAULT_VECTOR=bfd_elf32_littlearm_vec -DSELECT_VECS='&bfd_elf32_littlearm_vec,&bfd_elf32_bigarm_vec,&armnetbsd_vec,&armcoff_little_vec,&armcoff_big_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_arm_arch'
|
G_TDEFAULTS=-DDEFAULT_VECTOR=arm_elf32_le_vec -DSELECT_VECS='&arm_elf32_le_vec,&arm_elf32_be_vec,&elf32_le_vec,&elf32_be_vec' -DSELECT_ARCHITECTURES='&bfd_arm_arch'
|
||||||
|
G_HAVEVECS=-DHAVE_arm_elf32_le_vec -DHAVE_arm_elf32_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec
|
||||||
|
|
|
||||||
4046
external/gpl3/binutils/lib/libbfd/arch/armeb/bfd.h
vendored
4046
external/gpl3/binutils/lib/libbfd/arch/armeb/bfd.h
vendored
File diff suppressed because it is too large
Load Diff
|
|
@ -1,8 +1,8 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* generated for armeb--netbsdelf-gcc (NetBSD nb1 20120916) 4.5.4 */
|
/* generated for armeb--netbsdelf-gcc (NetBSD nb1 20200311) 8.4.0 */
|
||||||
|
|
||||||
#ifndef GCC_GENERATED_STDINT_H
|
#ifndef GCC_GENERATED_STDINT_H
|
||||||
#define GCC_GENERATED_STDINT_H 1
|
#define GCC_GENERATED_STDINT_H 1
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,26 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
#define BFD_VERSION_DATE 20130325
|
/* The date below is automatically updated every day by a bot. During
|
||||||
#define BFD_VERSION 223020000
|
development, we include the date in the tools' version strings
|
||||||
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.23.2"
|
(visible in 'ld -v' etc.) because people build binutils from a
|
||||||
|
variety of sources - git, tarballs, distro sources - and we want
|
||||||
|
something that can easily identify the source they used when they
|
||||||
|
report bugs. The bfd version plus date is usually good enough for
|
||||||
|
that purpose.
|
||||||
|
|
||||||
|
During development, this date ends up in libbfd and libopcodes
|
||||||
|
sonames because people naturally expect shared libraries with the
|
||||||
|
same soname to have compatible ABIs. We could bump the bfd version
|
||||||
|
on every ABI change, but that's just another thing contributors and
|
||||||
|
maintainers would need to remember. Instead, it's much easier for
|
||||||
|
all if the soname contains the date. This is not perfect but is
|
||||||
|
good enough.
|
||||||
|
|
||||||
|
In releases, the date is not included in either version strings or
|
||||||
|
sonames. */
|
||||||
|
#define BFD_VERSION_DATE 20200201
|
||||||
|
#define BFD_VERSION 234000000
|
||||||
|
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.34"
|
||||||
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* config.h. Generated from config.in by configure. */
|
/* config.h. Generated from config.in by configure. */
|
||||||
/* config.in. Generated from configure.in by autoheader. */
|
/* config.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
/* Check that config.h is #included before system headers
|
/* Check that config.h is #included before system headers
|
||||||
(this works only for glibc, but that should be enough). */
|
(this works only for glibc, but that should be enough). */
|
||||||
|
|
@ -15,6 +15,10 @@
|
||||||
/* Name of host specific core header file to include in elf.c. */
|
/* Name of host specific core header file to include in elf.c. */
|
||||||
/* #undef CORE_HEADER */
|
/* #undef CORE_HEADER */
|
||||||
|
|
||||||
|
/* Define to 1 if you want to enable -z separate-code in ELF linker by
|
||||||
|
default. */
|
||||||
|
#define DEFAULT_LD_Z_SEPARATE_CODE 0
|
||||||
|
|
||||||
/* Define to 1 if translation of program messages to the user's native
|
/* Define to 1 if translation of program messages to the user's native
|
||||||
language is requested. */
|
language is requested. */
|
||||||
#define ENABLE_NLS 1
|
#define ENABLE_NLS 1
|
||||||
|
|
@ -22,6 +26,10 @@
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
/* Define to 1 if you have the <alloca.h> header file. */
|
||||||
/* #undef HAVE_ALLOCA_H */
|
/* #undef HAVE_ALLOCA_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_ASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_BASENAME 0
|
#define HAVE_DECL_BASENAME 0
|
||||||
|
|
@ -69,10 +77,18 @@
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STPCPY 1
|
#define HAVE_DECL_STPCPY 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_STRNLEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STRSTR 1
|
#define HAVE_DECL_STRSTR 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_VASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_VSNPRINTF 1
|
#define HAVE_DECL_VSNPRINTF 1
|
||||||
|
|
@ -96,6 +112,9 @@
|
||||||
/* Define to 1 if you have the `fileno' function. */
|
/* Define to 1 if you have the `fileno' function. */
|
||||||
#define HAVE_FILENO 1
|
#define HAVE_FILENO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fls' function. */
|
||||||
|
/* #undef HAVE_FLS */
|
||||||
|
|
||||||
/* Define to 1 if you have the `fopen64' function. */
|
/* Define to 1 if you have the `fopen64' function. */
|
||||||
/* #undef HAVE_FOPEN64 */
|
/* #undef HAVE_FOPEN64 */
|
||||||
|
|
||||||
|
|
@ -117,12 +136,24 @@
|
||||||
/* Define to 1 if you have the `getpagesize' function. */
|
/* Define to 1 if you have the `getpagesize' function. */
|
||||||
#define HAVE_GETPAGESIZE 1
|
#define HAVE_GETPAGESIZE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getrlimit' function. */
|
||||||
|
#define HAVE_GETRLIMIT 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `getuid' function. */
|
/* Define to 1 if you have the `getuid' function. */
|
||||||
#define HAVE_GETUID 1
|
#define HAVE_GETUID 1
|
||||||
|
|
||||||
|
/* Define if your compiler supports hidden visibility. */
|
||||||
|
#define HAVE_HIDDEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
#define HAVE_INTTYPES_H 1
|
#define HAVE_INTTYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long double'. */
|
||||||
|
#define HAVE_LONG_DOUBLE 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long long'. */
|
||||||
|
#define HAVE_LONG_LONG 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
||||||
/* #undef HAVE_LWPSTATUS_T */
|
/* #undef HAVE_LWPSTATUS_T */
|
||||||
|
|
||||||
|
|
@ -236,9 +267,15 @@
|
||||||
*/
|
*/
|
||||||
/* #undef HAVE_SYS_NDIR_H */
|
/* #undef HAVE_SYS_NDIR_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||||
|
#define HAVE_SYS_PARAM_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
||||||
/* #undef HAVE_SYS_PROCFS_H */
|
/* #undef HAVE_SYS_PROCFS_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/resource.h> header file. */
|
||||||
|
#define HAVE_SYS_RESOURCE_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
#define HAVE_SYS_STAT_H 1
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
|
@ -254,15 +291,18 @@
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
#define HAVE_UNISTD_H 1
|
#define HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wchar.h> header file. */
|
||||||
|
#define HAVE_WCHAR_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wctype.h> header file. */
|
||||||
|
#define HAVE_WCTYPE_H 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
||||||
/* #undef HAVE_WIN32_PSTATUS_T */
|
/* #undef HAVE_WIN32_PSTATUS_T */
|
||||||
|
|
||||||
/* Define to 1 if you have the <windows.h> header file. */
|
/* Define to 1 if you have the <windows.h> header file. */
|
||||||
/* #undef HAVE_WINDOWS_H */
|
/* #undef HAVE_WINDOWS_H */
|
||||||
|
|
||||||
/* Define to 1 if you have the <zlib.h> header file. */
|
|
||||||
#define HAVE_ZLIB_H 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||||
*/
|
*/
|
||||||
#define LT_OBJDIR ".libs/"
|
#define LT_OBJDIR ".libs/"
|
||||||
|
|
@ -274,25 +314,25 @@
|
||||||
#define PACKAGE_BUGREPORT ""
|
#define PACKAGE_BUGREPORT ""
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
/* Define to the full name of this package. */
|
||||||
#define PACKAGE_NAME ""
|
#define PACKAGE_NAME "bfd"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING ""
|
#define PACKAGE_STRING "bfd 2.34"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME ""
|
#define PACKAGE_TARNAME "bfd"
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
/* Define to the home page for this package. */
|
||||||
#define PACKAGE_URL ""
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION ""
|
#define PACKAGE_VERSION "2.34"
|
||||||
|
|
||||||
/* The size of `char', as computed by sizeof. */
|
/* The size of `char', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_CHAR */
|
/* #undef SIZEOF_CHAR */
|
||||||
|
|
||||||
/* The size of `int', as computed by sizeof. */
|
/* The size of `int', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_INT */
|
#define SIZEOF_INT 4
|
||||||
|
|
||||||
/* The size of `long', as computed by sizeof. */
|
/* The size of `long', as computed by sizeof. */
|
||||||
#define SIZEOF_LONG 4
|
#define SIZEOF_LONG 4
|
||||||
|
|
@ -321,6 +361,9 @@
|
||||||
/* Name of host specific header file to include in trad-core.c. */
|
/* Name of host specific header file to include in trad-core.c. */
|
||||||
/* #undef TRAD_HEADER */
|
/* #undef TRAD_HEADER */
|
||||||
|
|
||||||
|
/* Define if 64-bit archives should always be used. */
|
||||||
|
/* #undef USE_64_BIT_ARCHIVE */
|
||||||
|
|
||||||
/* Use b modifier when opening binary files? */
|
/* Use b modifier when opening binary files? */
|
||||||
/* #undef USE_BINARY_FOPEN */
|
/* #undef USE_BINARY_FOPEN */
|
||||||
|
|
||||||
|
|
@ -333,9 +376,6 @@
|
||||||
/* Define if we should default to creating read-only plt entries */
|
/* Define if we should default to creating read-only plt entries */
|
||||||
/* #undef USE_SECUREPLT */
|
/* #undef USE_SECUREPLT */
|
||||||
|
|
||||||
/* Define if we may generate symbols with ELF's STT_COMMON type */
|
|
||||||
/* #undef USE_STT_COMMON */
|
|
||||||
|
|
||||||
/* Enable extensions on AIX 3, Interix. */
|
/* Enable extensions on AIX 3, Interix. */
|
||||||
#ifndef _ALL_SOURCE
|
#ifndef _ALL_SOURCE
|
||||||
# define _ALL_SOURCE 1
|
# define _ALL_SOURCE 1
|
||||||
|
|
@ -359,7 +399,12 @@
|
||||||
|
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "2.23.2"
|
#define VERSION "2.34"
|
||||||
|
|
||||||
|
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||||
|
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||||
|
# define _DARWIN_USE_64_BIT_INODE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||||
/* #undef _FILE_OFFSET_BITS */
|
/* #undef _FILE_OFFSET_BITS */
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
# This file is automatically generated. DO NOT EDIT!
|
# This file is automatically generated. DO NOT EDIT!
|
||||||
# Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp
|
# Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp
|
||||||
# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp
|
# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp
|
||||||
#
|
#
|
||||||
G_libbfd_la_DEPENDENCIES=elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo armnetbsd.lo aout32.lo coff-arm.lo cofflink.lo elf32-gen.lo cpu-arm.lo netbsd-core.lo ofiles
|
G_libbfd_la_DEPENDENCIES=elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo dwarf2.lo elf32-gen.lo plugin.lo cpu-arm.lo netbsd-core.lo ofiles
|
||||||
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo
|
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coff-bfd.lo compress.lo corefile.lo elf-properties.lo format.lo hash.lo init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo binary.lo ihex.lo srec.lo tekhex.lo verilog.lo
|
||||||
G_DEFS=-DHAVE_CONFIG_H
|
G_DEFS=-DHAVE_CONFIG_H
|
||||||
G_INCLUDES=-DNETBSD_CORE -I. -I${GNUHOSTDIST}/bfd -I${GNUHOSTDIST}/bfd/../include -DHAVE_bfd_elf32_bigarm_vec -DHAVE_bfd_elf32_littlearm_vec -DHAVE_armnetbsd_vec -DHAVE_armcoff_little_vec -DHAVE_armcoff_big_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -I./../intl
|
G_INCLUDES=
|
||||||
G_TDEFAULTS=-DDEFAULT_VECTOR=bfd_elf32_bigarm_vec -DSELECT_VECS='&bfd_elf32_bigarm_vec,&bfd_elf32_littlearm_vec,&armnetbsd_vec,&armcoff_little_vec,&armcoff_big_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_arm_arch'
|
G_TDEFAULTS=-DDEFAULT_VECTOR=arm_elf32_be_vec -DSELECT_VECS='&arm_elf32_be_vec,&arm_elf32_le_vec,&elf32_le_vec,&elf32_be_vec' -DSELECT_ARCHITECTURES='&bfd_arm_arch'
|
||||||
|
G_HAVEVECS=-DHAVE_arm_elf32_be_vec -DHAVE_arm_elf32_le_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec
|
||||||
|
|
|
||||||
1571
external/gpl3/binutils/lib/libbfd/arch/coldfire/bfd.h
vendored
1571
external/gpl3/binutils/lib/libbfd/arch/coldfire/bfd.h
vendored
File diff suppressed because it is too large
Load Diff
|
|
@ -1,8 +1,8 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.9 2013/10/01 15:41:17 skrll Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp */
|
||||||
|
|
||||||
/* generated for m5407--netbsdelf-gcc (NetBSD nb1 20120916) 4.5.4 */
|
/* generated for m5407--netbsdelf-gcc (NetBSD nb1 20160606) 5.4.0 */
|
||||||
|
|
||||||
#ifndef GCC_GENERATED_STDINT_H
|
#ifndef GCC_GENERATED_STDINT_H
|
||||||
#define GCC_GENERATED_STDINT_H 1
|
#define GCC_GENERATED_STDINT_H 1
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.9 2013/10/01 15:41:17 skrll Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp */
|
||||||
|
|
||||||
#define BFD_VERSION_DATE 20130325
|
#define BFD_VERSION_DATE 20160629
|
||||||
#define BFD_VERSION 223020000
|
#define BFD_VERSION 226010000
|
||||||
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.23.2"
|
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.26.1"
|
||||||
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.9 2013/10/01 15:41:17 skrll Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp */
|
||||||
|
|
||||||
/* config.h. Generated from config.in by configure. */
|
/* config.h. Generated from config.in by configure. */
|
||||||
/* config.in. Generated from configure.in by autoheader. */
|
/* config.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
/* Check that config.h is #included before system headers
|
/* Check that config.h is #included before system headers
|
||||||
(this works only for glibc, but that should be enough). */
|
(this works only for glibc, but that should be enough). */
|
||||||
|
|
@ -22,6 +22,10 @@
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
/* Define to 1 if you have the <alloca.h> header file. */
|
||||||
/* #undef HAVE_ALLOCA_H */
|
/* #undef HAVE_ALLOCA_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_ASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_BASENAME 0
|
#define HAVE_DECL_BASENAME 0
|
||||||
|
|
@ -69,10 +73,18 @@
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STPCPY 1
|
#define HAVE_DECL_STPCPY 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_STRNLEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STRSTR 1
|
#define HAVE_DECL_STRSTR 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_VASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_VSNPRINTF 1
|
#define HAVE_DECL_VSNPRINTF 1
|
||||||
|
|
@ -117,6 +129,9 @@
|
||||||
/* Define to 1 if you have the `getpagesize' function. */
|
/* Define to 1 if you have the `getpagesize' function. */
|
||||||
#define HAVE_GETPAGESIZE 1
|
#define HAVE_GETPAGESIZE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getrlimit' function. */
|
||||||
|
#define HAVE_GETRLIMIT 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `getuid' function. */
|
/* Define to 1 if you have the `getuid' function. */
|
||||||
#define HAVE_GETUID 1
|
#define HAVE_GETUID 1
|
||||||
|
|
||||||
|
|
@ -239,6 +254,9 @@
|
||||||
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
||||||
/* #undef HAVE_SYS_PROCFS_H */
|
/* #undef HAVE_SYS_PROCFS_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/resource.h> header file. */
|
||||||
|
#define HAVE_SYS_RESOURCE_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
#define HAVE_SYS_STAT_H 1
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
|
@ -254,15 +272,18 @@
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
#define HAVE_UNISTD_H 1
|
#define HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wchar.h> header file. */
|
||||||
|
#define HAVE_WCHAR_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wctype.h> header file. */
|
||||||
|
#define HAVE_WCTYPE_H 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
||||||
/* #undef HAVE_WIN32_PSTATUS_T */
|
/* #undef HAVE_WIN32_PSTATUS_T */
|
||||||
|
|
||||||
/* Define to 1 if you have the <windows.h> header file. */
|
/* Define to 1 if you have the <windows.h> header file. */
|
||||||
/* #undef HAVE_WINDOWS_H */
|
/* #undef HAVE_WINDOWS_H */
|
||||||
|
|
||||||
/* Define to 1 if you have the <zlib.h> header file. */
|
|
||||||
#define HAVE_ZLIB_H 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||||
*/
|
*/
|
||||||
#define LT_OBJDIR ".libs/"
|
#define LT_OBJDIR ".libs/"
|
||||||
|
|
@ -274,19 +295,19 @@
|
||||||
#define PACKAGE_BUGREPORT ""
|
#define PACKAGE_BUGREPORT ""
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
/* Define to the full name of this package. */
|
||||||
#define PACKAGE_NAME ""
|
#define PACKAGE_NAME "bfd"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING ""
|
#define PACKAGE_STRING "bfd 2.26.1"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME ""
|
#define PACKAGE_TARNAME "bfd"
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
/* Define to the home page for this package. */
|
||||||
#define PACKAGE_URL ""
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION ""
|
#define PACKAGE_VERSION "2.26.1"
|
||||||
|
|
||||||
/* The size of `char', as computed by sizeof. */
|
/* The size of `char', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_CHAR */
|
/* #undef SIZEOF_CHAR */
|
||||||
|
|
@ -359,7 +380,7 @@
|
||||||
|
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "2.23.2"
|
#define VERSION "2.26.1"
|
||||||
|
|
||||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||||
/* #undef _FILE_OFFSET_BITS */
|
/* #undef _FILE_OFFSET_BITS */
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
# This file is automatically generated. DO NOT EDIT!
|
# This file is automatically generated. DO NOT EDIT!
|
||||||
# Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp
|
# Generated from: NetBSD: mknative-binutils,v 1.9 2013/10/01 15:41:17 skrll Exp
|
||||||
# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp
|
# Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp
|
||||||
#
|
#
|
||||||
G_libbfd_la_DEPENDENCIES=elf32-m68k.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo m68knetbsd.lo aout32.lo m68k4knetbsd.lo hp300bsd.lo sunos.lo elf32-gen.lo cpu-m68k.lo ofiles
|
G_libbfd_la_DEPENDENCIES=elf32-m68k.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo dwarf2.lo m68knetbsd.lo aout32.lo m68k4knetbsd.lo hp300bsd.lo sunos.lo elf32-gen.lo plugin.lo cpu-m68k.lo cpu-plugin.lo ofiles
|
||||||
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo
|
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coff-bfd.lo compress.lo corefile.lo format.lo hash.lo init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo binary.lo ihex.lo srec.lo tekhex.lo verilog.lo
|
||||||
G_DEFS=-DHAVE_CONFIG_H
|
G_DEFS=-DHAVE_CONFIG_H
|
||||||
G_INCLUDES=-I. -I${GNUHOSTDIST}/bfd -I${GNUHOSTDIST}/bfd/../include -DHAVE_bfd_elf32_m68k_vec -DHAVE_m68knetbsd_vec -DHAVE_m68k4knetbsd_vec -DHAVE_hp300bsd_vec -DHAVE_sunos_big_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -I./../intl
|
G_INCLUDES=-I. -I${GNUHOSTDIST}/bfd -I${GNUHOSTDIST}/bfd/../include -DHAVE_m68k_elf32_vec -DHAVE_m68k_aout_nbsd_vec -DHAVE_m68k_aout_4knbsd_vec -DHAVE_m68k_aout_hp300bsd_vec -DHAVE_sparc_aout_sunos_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec -DHAVE_plugin_vec -I./../intl
|
||||||
G_TDEFAULTS=-DDEFAULT_VECTOR=bfd_elf32_m68k_vec -DSELECT_VECS='&bfd_elf32_m68k_vec,&m68knetbsd_vec,&m68k4knetbsd_vec,&hp300bsd_vec,&sunos_big_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_m68k_arch'
|
G_TDEFAULTS=-DDEFAULT_VECTOR=m68k_elf32_vec -DSELECT_VECS='&m68k_elf32_vec,&m68k_aout_nbsd_vec,&m68k_aout_4knbsd_vec,&m68k_aout_hp300bsd_vec,&sparc_aout_sunos_be_vec,&elf32_le_vec,&elf32_be_vec,&plugin_vec' -DSELECT_ARCHITECTURES='&bfd_m68k_arch,&bfd_plugin_arch'
|
||||||
|
|
|
||||||
4046
external/gpl3/binutils/lib/libbfd/arch/earm/bfd.h
vendored
4046
external/gpl3/binutils/lib/libbfd/arch/earm/bfd.h
vendored
File diff suppressed because it is too large
Load Diff
|
|
@ -1,8 +1,8 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* generated for arm-elf32-minix-gcc (NetBSD nb1 20120916) 4.5.4 */
|
/* generated for arm-elf32-minix-gcc (NetBSD nb1 20200311) 8.4.0 */
|
||||||
|
|
||||||
#ifndef GCC_GENERATED_STDINT_H
|
#ifndef GCC_GENERATED_STDINT_H
|
||||||
#define GCC_GENERATED_STDINT_H 1
|
#define GCC_GENERATED_STDINT_H 1
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,26 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
#define BFD_VERSION_DATE 20130325
|
/* The date below is automatically updated every day by a bot. During
|
||||||
#define BFD_VERSION 223020000
|
development, we include the date in the tools' version strings
|
||||||
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.23.2"
|
(visible in 'ld -v' etc.) because people build binutils from a
|
||||||
|
variety of sources - git, tarballs, distro sources - and we want
|
||||||
|
something that can easily identify the source they used when they
|
||||||
|
report bugs. The bfd version plus date is usually good enough for
|
||||||
|
that purpose.
|
||||||
|
|
||||||
|
During development, this date ends up in libbfd and libopcodes
|
||||||
|
sonames because people naturally expect shared libraries with the
|
||||||
|
same soname to have compatible ABIs. We could bump the bfd version
|
||||||
|
on every ABI change, but that's just another thing contributors and
|
||||||
|
maintainers would need to remember. Instead, it's much easier for
|
||||||
|
all if the soname contains the date. This is not perfect but is
|
||||||
|
good enough.
|
||||||
|
|
||||||
|
In releases, the date is not included in either version strings or
|
||||||
|
sonames. */
|
||||||
|
#define BFD_VERSION_DATE 20200201
|
||||||
|
#define BFD_VERSION 234000000
|
||||||
|
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.34"
|
||||||
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* config.h. Generated from config.in by configure. */
|
/* config.h. Generated from config.in by configure. */
|
||||||
/* config.in. Generated from configure.in by autoheader. */
|
/* config.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
/* Check that config.h is #included before system headers
|
/* Check that config.h is #included before system headers
|
||||||
(this works only for glibc, but that should be enough). */
|
(this works only for glibc, but that should be enough). */
|
||||||
|
|
@ -15,6 +15,10 @@
|
||||||
/* Name of host specific core header file to include in elf.c. */
|
/* Name of host specific core header file to include in elf.c. */
|
||||||
/* #undef CORE_HEADER */
|
/* #undef CORE_HEADER */
|
||||||
|
|
||||||
|
/* Define to 1 if you want to enable -z separate-code in ELF linker by
|
||||||
|
default. */
|
||||||
|
#define DEFAULT_LD_Z_SEPARATE_CODE 0
|
||||||
|
|
||||||
#if !defined(__minix)
|
#if !defined(__minix)
|
||||||
/* Define to 1 if translation of program messages to the user's native
|
/* Define to 1 if translation of program messages to the user's native
|
||||||
language is requested. */
|
language is requested. */
|
||||||
|
|
@ -24,6 +28,10 @@
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
/* Define to 1 if you have the <alloca.h> header file. */
|
||||||
/* #undef HAVE_ALLOCA_H */
|
/* #undef HAVE_ALLOCA_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_ASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_BASENAME 0
|
#define HAVE_DECL_BASENAME 0
|
||||||
|
|
@ -71,10 +79,18 @@
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STPCPY 1
|
#define HAVE_DECL_STPCPY 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_STRNLEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STRSTR 1
|
#define HAVE_DECL_STRSTR 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_VASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_VSNPRINTF 1
|
#define HAVE_DECL_VSNPRINTF 1
|
||||||
|
|
@ -98,6 +114,9 @@
|
||||||
/* Define to 1 if you have the `fileno' function. */
|
/* Define to 1 if you have the `fileno' function. */
|
||||||
#define HAVE_FILENO 1
|
#define HAVE_FILENO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fls' function. */
|
||||||
|
/* #undef HAVE_FLS */
|
||||||
|
|
||||||
/* Define to 1 if you have the `fopen64' function. */
|
/* Define to 1 if you have the `fopen64' function. */
|
||||||
/* #undef HAVE_FOPEN64 */
|
/* #undef HAVE_FOPEN64 */
|
||||||
|
|
||||||
|
|
@ -119,12 +138,24 @@
|
||||||
/* Define to 1 if you have the `getpagesize' function. */
|
/* Define to 1 if you have the `getpagesize' function. */
|
||||||
#define HAVE_GETPAGESIZE 1
|
#define HAVE_GETPAGESIZE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getrlimit' function. */
|
||||||
|
#define HAVE_GETRLIMIT 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `getuid' function. */
|
/* Define to 1 if you have the `getuid' function. */
|
||||||
#define HAVE_GETUID 1
|
#define HAVE_GETUID 1
|
||||||
|
|
||||||
|
/* Define if your compiler supports hidden visibility. */
|
||||||
|
#define HAVE_HIDDEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
#define HAVE_INTTYPES_H 1
|
#define HAVE_INTTYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long double'. */
|
||||||
|
#define HAVE_LONG_DOUBLE 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long long'. */
|
||||||
|
#define HAVE_LONG_LONG 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
||||||
/* #undef HAVE_LWPSTATUS_T */
|
/* #undef HAVE_LWPSTATUS_T */
|
||||||
|
|
||||||
|
|
@ -242,9 +273,15 @@
|
||||||
*/
|
*/
|
||||||
/* #undef HAVE_SYS_NDIR_H */
|
/* #undef HAVE_SYS_NDIR_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||||
|
#define HAVE_SYS_PARAM_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
||||||
/* #undef HAVE_SYS_PROCFS_H */
|
/* #undef HAVE_SYS_PROCFS_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/resource.h> header file. */
|
||||||
|
#define HAVE_SYS_RESOURCE_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
#define HAVE_SYS_STAT_H 1
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
|
@ -260,15 +297,18 @@
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
#define HAVE_UNISTD_H 1
|
#define HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wchar.h> header file. */
|
||||||
|
#define HAVE_WCHAR_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wctype.h> header file. */
|
||||||
|
#define HAVE_WCTYPE_H 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
||||||
/* #undef HAVE_WIN32_PSTATUS_T */
|
/* #undef HAVE_WIN32_PSTATUS_T */
|
||||||
|
|
||||||
/* Define to 1 if you have the <windows.h> header file. */
|
/* Define to 1 if you have the <windows.h> header file. */
|
||||||
/* #undef HAVE_WINDOWS_H */
|
/* #undef HAVE_WINDOWS_H */
|
||||||
|
|
||||||
/* Define to 1 if you have the <zlib.h> header file. */
|
|
||||||
#define HAVE_ZLIB_H 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||||
*/
|
*/
|
||||||
#define LT_OBJDIR ".libs/"
|
#define LT_OBJDIR ".libs/"
|
||||||
|
|
@ -280,25 +320,25 @@
|
||||||
#define PACKAGE_BUGREPORT ""
|
#define PACKAGE_BUGREPORT ""
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
/* Define to the full name of this package. */
|
||||||
#define PACKAGE_NAME ""
|
#define PACKAGE_NAME "bfd"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING ""
|
#define PACKAGE_STRING "bfd 2.34"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME ""
|
#define PACKAGE_TARNAME "bfd"
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
/* Define to the home page for this package. */
|
||||||
#define PACKAGE_URL ""
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION ""
|
#define PACKAGE_VERSION "2.34"
|
||||||
|
|
||||||
/* The size of `char', as computed by sizeof. */
|
/* The size of `char', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_CHAR */
|
/* #undef SIZEOF_CHAR */
|
||||||
|
|
||||||
/* The size of `int', as computed by sizeof. */
|
/* The size of `int', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_INT */
|
#define SIZEOF_INT 4
|
||||||
|
|
||||||
/* The size of `long', as computed by sizeof. */
|
/* The size of `long', as computed by sizeof. */
|
||||||
#define SIZEOF_LONG 4
|
#define SIZEOF_LONG 4
|
||||||
|
|
@ -327,6 +367,9 @@
|
||||||
/* Name of host specific header file to include in trad-core.c. */
|
/* Name of host specific header file to include in trad-core.c. */
|
||||||
/* #undef TRAD_HEADER */
|
/* #undef TRAD_HEADER */
|
||||||
|
|
||||||
|
/* Define if 64-bit archives should always be used. */
|
||||||
|
/* #undef USE_64_BIT_ARCHIVE */
|
||||||
|
|
||||||
/* Use b modifier when opening binary files? */
|
/* Use b modifier when opening binary files? */
|
||||||
/* #undef USE_BINARY_FOPEN */
|
/* #undef USE_BINARY_FOPEN */
|
||||||
|
|
||||||
|
|
@ -339,9 +382,6 @@
|
||||||
/* Define if we should default to creating read-only plt entries */
|
/* Define if we should default to creating read-only plt entries */
|
||||||
/* #undef USE_SECUREPLT */
|
/* #undef USE_SECUREPLT */
|
||||||
|
|
||||||
/* Define if we may generate symbols with ELF's STT_COMMON type */
|
|
||||||
/* #undef USE_STT_COMMON */
|
|
||||||
|
|
||||||
/* Enable extensions on AIX 3, Interix. */
|
/* Enable extensions on AIX 3, Interix. */
|
||||||
#ifndef _ALL_SOURCE
|
#ifndef _ALL_SOURCE
|
||||||
# define _ALL_SOURCE 1
|
# define _ALL_SOURCE 1
|
||||||
|
|
@ -365,7 +405,12 @@
|
||||||
|
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "2.23.2"
|
#define VERSION "2.34"
|
||||||
|
|
||||||
|
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||||
|
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||||
|
# define _DARWIN_USE_64_BIT_INODE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||||
/* #undef _FILE_OFFSET_BITS */
|
/* #undef _FILE_OFFSET_BITS */
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
# This file is automatically generated. DO NOT EDIT!
|
# This file is automatically generated. DO NOT EDIT!
|
||||||
# Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp
|
# Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp
|
||||||
# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp
|
# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp
|
||||||
#
|
#
|
||||||
G_libbfd_la_DEPENDENCIES=elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo armnetbsd.lo aout32.lo coff-arm.lo cofflink.lo elf32-gen.lo cpu-arm.lo netbsd-core.lo ofiles
|
G_libbfd_la_DEPENDENCIES=elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo dwarf2.lo elf32-gen.lo plugin.lo cpu-arm.lo netbsd-core.lo ofiles
|
||||||
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo
|
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coff-bfd.lo compress.lo corefile.lo elf-properties.lo format.lo hash.lo init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo binary.lo ihex.lo srec.lo tekhex.lo verilog.lo
|
||||||
G_DEFS=-DHAVE_CONFIG_H
|
G_DEFS=-DHAVE_CONFIG_H
|
||||||
G_INCLUDES=-DNETBSD_CORE -I. -I${GNUHOSTDIST}/bfd -I${GNUHOSTDIST}/bfd/../include -DHAVE_bfd_elf32_littlearm_vec -DHAVE_bfd_elf32_bigarm_vec -DHAVE_armnetbsd_vec -DHAVE_armcoff_little_vec -DHAVE_armcoff_big_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -I./../intl
|
G_INCLUDES=
|
||||||
G_TDEFAULTS=-DDEFAULT_VECTOR=bfd_elf32_littlearm_vec -DSELECT_VECS='&bfd_elf32_littlearm_vec,&bfd_elf32_bigarm_vec,&armnetbsd_vec,&armcoff_little_vec,&armcoff_big_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_arm_arch'
|
G_TDEFAULTS=-DDEFAULT_VECTOR=arm_elf32_le_vec -DSELECT_VECS='&arm_elf32_le_vec,&arm_elf32_be_vec,&elf32_le_vec,&elf32_be_vec' -DSELECT_ARCHITECTURES='&bfd_arm_arch'
|
||||||
|
G_HAVEVECS=-DHAVE_arm_elf32_le_vec -DHAVE_arm_elf32_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec
|
||||||
|
|
|
||||||
4046
external/gpl3/binutils/lib/libbfd/arch/earmeb/bfd.h
vendored
4046
external/gpl3/binutils/lib/libbfd/arch/earmeb/bfd.h
vendored
File diff suppressed because it is too large
Load Diff
|
|
@ -1,8 +1,8 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* generated for armeb--netbsdelf-eabi-gcc (NetBSD nb1 20120916) 4.5.4 */
|
/* generated for armeb--netbsdelf-eabi-gcc (NetBSD nb1 20200311) 8.4.0 */
|
||||||
|
|
||||||
#ifndef GCC_GENERATED_STDINT_H
|
#ifndef GCC_GENERATED_STDINT_H
|
||||||
#define GCC_GENERATED_STDINT_H 1
|
#define GCC_GENERATED_STDINT_H 1
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,26 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
#define BFD_VERSION_DATE 20130325
|
/* The date below is automatically updated every day by a bot. During
|
||||||
#define BFD_VERSION 223020000
|
development, we include the date in the tools' version strings
|
||||||
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.23.2"
|
(visible in 'ld -v' etc.) because people build binutils from a
|
||||||
|
variety of sources - git, tarballs, distro sources - and we want
|
||||||
|
something that can easily identify the source they used when they
|
||||||
|
report bugs. The bfd version plus date is usually good enough for
|
||||||
|
that purpose.
|
||||||
|
|
||||||
|
During development, this date ends up in libbfd and libopcodes
|
||||||
|
sonames because people naturally expect shared libraries with the
|
||||||
|
same soname to have compatible ABIs. We could bump the bfd version
|
||||||
|
on every ABI change, but that's just another thing contributors and
|
||||||
|
maintainers would need to remember. Instead, it's much easier for
|
||||||
|
all if the soname contains the date. This is not perfect but is
|
||||||
|
good enough.
|
||||||
|
|
||||||
|
In releases, the date is not included in either version strings or
|
||||||
|
sonames. */
|
||||||
|
#define BFD_VERSION_DATE 20200201
|
||||||
|
#define BFD_VERSION 234000000
|
||||||
|
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.34"
|
||||||
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* config.h. Generated from config.in by configure. */
|
/* config.h. Generated from config.in by configure. */
|
||||||
/* config.in. Generated from configure.in by autoheader. */
|
/* config.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
/* Check that config.h is #included before system headers
|
/* Check that config.h is #included before system headers
|
||||||
(this works only for glibc, but that should be enough). */
|
(this works only for glibc, but that should be enough). */
|
||||||
|
|
@ -15,6 +15,10 @@
|
||||||
/* Name of host specific core header file to include in elf.c. */
|
/* Name of host specific core header file to include in elf.c. */
|
||||||
/* #undef CORE_HEADER */
|
/* #undef CORE_HEADER */
|
||||||
|
|
||||||
|
/* Define to 1 if you want to enable -z separate-code in ELF linker by
|
||||||
|
default. */
|
||||||
|
#define DEFAULT_LD_Z_SEPARATE_CODE 0
|
||||||
|
|
||||||
/* Define to 1 if translation of program messages to the user's native
|
/* Define to 1 if translation of program messages to the user's native
|
||||||
language is requested. */
|
language is requested. */
|
||||||
#define ENABLE_NLS 1
|
#define ENABLE_NLS 1
|
||||||
|
|
@ -22,6 +26,10 @@
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
/* Define to 1 if you have the <alloca.h> header file. */
|
||||||
/* #undef HAVE_ALLOCA_H */
|
/* #undef HAVE_ALLOCA_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_ASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_BASENAME 0
|
#define HAVE_DECL_BASENAME 0
|
||||||
|
|
@ -69,10 +77,18 @@
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STPCPY 1
|
#define HAVE_DECL_STPCPY 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_STRNLEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STRSTR 1
|
#define HAVE_DECL_STRSTR 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_VASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_VSNPRINTF 1
|
#define HAVE_DECL_VSNPRINTF 1
|
||||||
|
|
@ -96,6 +112,9 @@
|
||||||
/* Define to 1 if you have the `fileno' function. */
|
/* Define to 1 if you have the `fileno' function. */
|
||||||
#define HAVE_FILENO 1
|
#define HAVE_FILENO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fls' function. */
|
||||||
|
/* #undef HAVE_FLS */
|
||||||
|
|
||||||
/* Define to 1 if you have the `fopen64' function. */
|
/* Define to 1 if you have the `fopen64' function. */
|
||||||
/* #undef HAVE_FOPEN64 */
|
/* #undef HAVE_FOPEN64 */
|
||||||
|
|
||||||
|
|
@ -117,12 +136,24 @@
|
||||||
/* Define to 1 if you have the `getpagesize' function. */
|
/* Define to 1 if you have the `getpagesize' function. */
|
||||||
#define HAVE_GETPAGESIZE 1
|
#define HAVE_GETPAGESIZE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getrlimit' function. */
|
||||||
|
#define HAVE_GETRLIMIT 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `getuid' function. */
|
/* Define to 1 if you have the `getuid' function. */
|
||||||
#define HAVE_GETUID 1
|
#define HAVE_GETUID 1
|
||||||
|
|
||||||
|
/* Define if your compiler supports hidden visibility. */
|
||||||
|
#define HAVE_HIDDEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
#define HAVE_INTTYPES_H 1
|
#define HAVE_INTTYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long double'. */
|
||||||
|
#define HAVE_LONG_DOUBLE 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long long'. */
|
||||||
|
#define HAVE_LONG_LONG 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
||||||
/* #undef HAVE_LWPSTATUS_T */
|
/* #undef HAVE_LWPSTATUS_T */
|
||||||
|
|
||||||
|
|
@ -236,9 +267,15 @@
|
||||||
*/
|
*/
|
||||||
/* #undef HAVE_SYS_NDIR_H */
|
/* #undef HAVE_SYS_NDIR_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||||
|
#define HAVE_SYS_PARAM_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
||||||
/* #undef HAVE_SYS_PROCFS_H */
|
/* #undef HAVE_SYS_PROCFS_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/resource.h> header file. */
|
||||||
|
#define HAVE_SYS_RESOURCE_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
#define HAVE_SYS_STAT_H 1
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
|
@ -254,15 +291,18 @@
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
#define HAVE_UNISTD_H 1
|
#define HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wchar.h> header file. */
|
||||||
|
#define HAVE_WCHAR_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wctype.h> header file. */
|
||||||
|
#define HAVE_WCTYPE_H 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
||||||
/* #undef HAVE_WIN32_PSTATUS_T */
|
/* #undef HAVE_WIN32_PSTATUS_T */
|
||||||
|
|
||||||
/* Define to 1 if you have the <windows.h> header file. */
|
/* Define to 1 if you have the <windows.h> header file. */
|
||||||
/* #undef HAVE_WINDOWS_H */
|
/* #undef HAVE_WINDOWS_H */
|
||||||
|
|
||||||
/* Define to 1 if you have the <zlib.h> header file. */
|
|
||||||
#define HAVE_ZLIB_H 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||||
*/
|
*/
|
||||||
#define LT_OBJDIR ".libs/"
|
#define LT_OBJDIR ".libs/"
|
||||||
|
|
@ -274,25 +314,25 @@
|
||||||
#define PACKAGE_BUGREPORT ""
|
#define PACKAGE_BUGREPORT ""
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
/* Define to the full name of this package. */
|
||||||
#define PACKAGE_NAME ""
|
#define PACKAGE_NAME "bfd"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING ""
|
#define PACKAGE_STRING "bfd 2.34"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME ""
|
#define PACKAGE_TARNAME "bfd"
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
/* Define to the home page for this package. */
|
||||||
#define PACKAGE_URL ""
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION ""
|
#define PACKAGE_VERSION "2.34"
|
||||||
|
|
||||||
/* The size of `char', as computed by sizeof. */
|
/* The size of `char', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_CHAR */
|
/* #undef SIZEOF_CHAR */
|
||||||
|
|
||||||
/* The size of `int', as computed by sizeof. */
|
/* The size of `int', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_INT */
|
#define SIZEOF_INT 4
|
||||||
|
|
||||||
/* The size of `long', as computed by sizeof. */
|
/* The size of `long', as computed by sizeof. */
|
||||||
#define SIZEOF_LONG 4
|
#define SIZEOF_LONG 4
|
||||||
|
|
@ -321,6 +361,9 @@
|
||||||
/* Name of host specific header file to include in trad-core.c. */
|
/* Name of host specific header file to include in trad-core.c. */
|
||||||
/* #undef TRAD_HEADER */
|
/* #undef TRAD_HEADER */
|
||||||
|
|
||||||
|
/* Define if 64-bit archives should always be used. */
|
||||||
|
/* #undef USE_64_BIT_ARCHIVE */
|
||||||
|
|
||||||
/* Use b modifier when opening binary files? */
|
/* Use b modifier when opening binary files? */
|
||||||
/* #undef USE_BINARY_FOPEN */
|
/* #undef USE_BINARY_FOPEN */
|
||||||
|
|
||||||
|
|
@ -333,9 +376,6 @@
|
||||||
/* Define if we should default to creating read-only plt entries */
|
/* Define if we should default to creating read-only plt entries */
|
||||||
/* #undef USE_SECUREPLT */
|
/* #undef USE_SECUREPLT */
|
||||||
|
|
||||||
/* Define if we may generate symbols with ELF's STT_COMMON type */
|
|
||||||
/* #undef USE_STT_COMMON */
|
|
||||||
|
|
||||||
/* Enable extensions on AIX 3, Interix. */
|
/* Enable extensions on AIX 3, Interix. */
|
||||||
#ifndef _ALL_SOURCE
|
#ifndef _ALL_SOURCE
|
||||||
# define _ALL_SOURCE 1
|
# define _ALL_SOURCE 1
|
||||||
|
|
@ -359,7 +399,12 @@
|
||||||
|
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "2.23.2"
|
#define VERSION "2.34"
|
||||||
|
|
||||||
|
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||||
|
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||||
|
# define _DARWIN_USE_64_BIT_INODE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||||
/* #undef _FILE_OFFSET_BITS */
|
/* #undef _FILE_OFFSET_BITS */
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
# This file is automatically generated. DO NOT EDIT!
|
# This file is automatically generated. DO NOT EDIT!
|
||||||
# Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp
|
# Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp
|
||||||
# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp
|
# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp
|
||||||
#
|
#
|
||||||
G_libbfd_la_DEPENDENCIES=elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo armnetbsd.lo aout32.lo coff-arm.lo cofflink.lo elf32-gen.lo cpu-arm.lo netbsd-core.lo ofiles
|
G_libbfd_la_DEPENDENCIES=elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo dwarf2.lo elf32-gen.lo plugin.lo cpu-arm.lo netbsd-core.lo ofiles
|
||||||
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo
|
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coff-bfd.lo compress.lo corefile.lo elf-properties.lo format.lo hash.lo init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo binary.lo ihex.lo srec.lo tekhex.lo verilog.lo
|
||||||
G_DEFS=-DHAVE_CONFIG_H
|
G_DEFS=-DHAVE_CONFIG_H
|
||||||
G_INCLUDES=-DNETBSD_CORE -I. -I${GNUHOSTDIST}/bfd -I${GNUHOSTDIST}/bfd/../include -DHAVE_bfd_elf32_bigarm_vec -DHAVE_bfd_elf32_littlearm_vec -DHAVE_armnetbsd_vec -DHAVE_armcoff_little_vec -DHAVE_armcoff_big_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -I./../intl
|
G_INCLUDES=
|
||||||
G_TDEFAULTS=-DDEFAULT_VECTOR=bfd_elf32_bigarm_vec -DSELECT_VECS='&bfd_elf32_bigarm_vec,&bfd_elf32_littlearm_vec,&armnetbsd_vec,&armcoff_little_vec,&armcoff_big_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_arm_arch'
|
G_TDEFAULTS=-DDEFAULT_VECTOR=arm_elf32_be_vec -DSELECT_VECS='&arm_elf32_be_vec,&arm_elf32_le_vec,&elf32_le_vec,&elf32_be_vec' -DSELECT_ARCHITECTURES='&bfd_arm_arch'
|
||||||
|
G_HAVEVECS=-DHAVE_arm_elf32_be_vec -DHAVE_arm_elf32_le_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec
|
||||||
|
|
|
||||||
4046
external/gpl3/binutils/lib/libbfd/arch/earmhf/bfd.h
vendored
4046
external/gpl3/binutils/lib/libbfd/arch/earmhf/bfd.h
vendored
File diff suppressed because it is too large
Load Diff
|
|
@ -1,8 +1,8 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.11 2018/11/08 02:08:35 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* generated for arm--netbsdelf-eabihf-gcc (NetBSD nb1 20120916) 4.5.4 */
|
/* generated for arm--netbsdelf-eabihf-gcc (NetBSD nb4 20181109) 6.5.0 */
|
||||||
|
|
||||||
#ifndef GCC_GENERATED_STDINT_H
|
#ifndef GCC_GENERATED_STDINT_H
|
||||||
#define GCC_GENERATED_STDINT_H 1
|
#define GCC_GENERATED_STDINT_H 1
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,26 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
#define BFD_VERSION_DATE 20130325
|
/* The date below is automatically updated every day by a bot. During
|
||||||
#define BFD_VERSION 223020000
|
development, we include the date in the tools' version strings
|
||||||
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.23.2"
|
(visible in 'ld -v' etc.) because people build binutils from a
|
||||||
|
variety of sources - git, tarballs, distro sources - and we want
|
||||||
|
something that can easily identify the source they used when they
|
||||||
|
report bugs. The bfd version plus date is usually good enough for
|
||||||
|
that purpose.
|
||||||
|
|
||||||
|
During development, this date ends up in libbfd and libopcodes
|
||||||
|
sonames because people naturally expect shared libraries with the
|
||||||
|
same soname to have compatible ABIs. We could bump the bfd version
|
||||||
|
on every ABI change, but that's just another thing contributors and
|
||||||
|
maintainers would need to remember. Instead, it's much easier for
|
||||||
|
all if the soname contains the date. This is not perfect but is
|
||||||
|
good enough.
|
||||||
|
|
||||||
|
In releases, the date is not included in either version strings or
|
||||||
|
sonames. */
|
||||||
|
#define BFD_VERSION_DATE 20200201
|
||||||
|
#define BFD_VERSION 234000000
|
||||||
|
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.34"
|
||||||
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* config.h. Generated from config.in by configure. */
|
/* config.h. Generated from config.in by configure. */
|
||||||
/* config.in. Generated from configure.in by autoheader. */
|
/* config.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
/* Check that config.h is #included before system headers
|
/* Check that config.h is #included before system headers
|
||||||
(this works only for glibc, but that should be enough). */
|
(this works only for glibc, but that should be enough). */
|
||||||
|
|
@ -15,6 +15,10 @@
|
||||||
/* Name of host specific core header file to include in elf.c. */
|
/* Name of host specific core header file to include in elf.c. */
|
||||||
/* #undef CORE_HEADER */
|
/* #undef CORE_HEADER */
|
||||||
|
|
||||||
|
/* Define to 1 if you want to enable -z separate-code in ELF linker by
|
||||||
|
default. */
|
||||||
|
#define DEFAULT_LD_Z_SEPARATE_CODE 0
|
||||||
|
|
||||||
/* Define to 1 if translation of program messages to the user's native
|
/* Define to 1 if translation of program messages to the user's native
|
||||||
language is requested. */
|
language is requested. */
|
||||||
#define ENABLE_NLS 1
|
#define ENABLE_NLS 1
|
||||||
|
|
@ -22,6 +26,10 @@
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
/* Define to 1 if you have the <alloca.h> header file. */
|
||||||
/* #undef HAVE_ALLOCA_H */
|
/* #undef HAVE_ALLOCA_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_ASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_BASENAME 0
|
#define HAVE_DECL_BASENAME 0
|
||||||
|
|
@ -69,10 +77,18 @@
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STPCPY 1
|
#define HAVE_DECL_STPCPY 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_STRNLEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STRSTR 1
|
#define HAVE_DECL_STRSTR 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_VASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_VSNPRINTF 1
|
#define HAVE_DECL_VSNPRINTF 1
|
||||||
|
|
@ -96,6 +112,9 @@
|
||||||
/* Define to 1 if you have the `fileno' function. */
|
/* Define to 1 if you have the `fileno' function. */
|
||||||
#define HAVE_FILENO 1
|
#define HAVE_FILENO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fls' function. */
|
||||||
|
/* #undef HAVE_FLS */
|
||||||
|
|
||||||
/* Define to 1 if you have the `fopen64' function. */
|
/* Define to 1 if you have the `fopen64' function. */
|
||||||
/* #undef HAVE_FOPEN64 */
|
/* #undef HAVE_FOPEN64 */
|
||||||
|
|
||||||
|
|
@ -117,12 +136,24 @@
|
||||||
/* Define to 1 if you have the `getpagesize' function. */
|
/* Define to 1 if you have the `getpagesize' function. */
|
||||||
#define HAVE_GETPAGESIZE 1
|
#define HAVE_GETPAGESIZE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getrlimit' function. */
|
||||||
|
#define HAVE_GETRLIMIT 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `getuid' function. */
|
/* Define to 1 if you have the `getuid' function. */
|
||||||
#define HAVE_GETUID 1
|
#define HAVE_GETUID 1
|
||||||
|
|
||||||
|
/* Define if your compiler supports hidden visibility. */
|
||||||
|
#define HAVE_HIDDEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
#define HAVE_INTTYPES_H 1
|
#define HAVE_INTTYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long double'. */
|
||||||
|
#define HAVE_LONG_DOUBLE 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long long'. */
|
||||||
|
#define HAVE_LONG_LONG 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
||||||
/* #undef HAVE_LWPSTATUS_T */
|
/* #undef HAVE_LWPSTATUS_T */
|
||||||
|
|
||||||
|
|
@ -236,9 +267,15 @@
|
||||||
*/
|
*/
|
||||||
/* #undef HAVE_SYS_NDIR_H */
|
/* #undef HAVE_SYS_NDIR_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||||
|
#define HAVE_SYS_PARAM_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
||||||
/* #undef HAVE_SYS_PROCFS_H */
|
/* #undef HAVE_SYS_PROCFS_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/resource.h> header file. */
|
||||||
|
#define HAVE_SYS_RESOURCE_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
#define HAVE_SYS_STAT_H 1
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
|
@ -254,15 +291,18 @@
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
#define HAVE_UNISTD_H 1
|
#define HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wchar.h> header file. */
|
||||||
|
#define HAVE_WCHAR_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wctype.h> header file. */
|
||||||
|
#define HAVE_WCTYPE_H 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
||||||
/* #undef HAVE_WIN32_PSTATUS_T */
|
/* #undef HAVE_WIN32_PSTATUS_T */
|
||||||
|
|
||||||
/* Define to 1 if you have the <windows.h> header file. */
|
/* Define to 1 if you have the <windows.h> header file. */
|
||||||
/* #undef HAVE_WINDOWS_H */
|
/* #undef HAVE_WINDOWS_H */
|
||||||
|
|
||||||
/* Define to 1 if you have the <zlib.h> header file. */
|
|
||||||
#define HAVE_ZLIB_H 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||||
*/
|
*/
|
||||||
#define LT_OBJDIR ".libs/"
|
#define LT_OBJDIR ".libs/"
|
||||||
|
|
@ -274,25 +314,25 @@
|
||||||
#define PACKAGE_BUGREPORT ""
|
#define PACKAGE_BUGREPORT ""
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
/* Define to the full name of this package. */
|
||||||
#define PACKAGE_NAME ""
|
#define PACKAGE_NAME "bfd"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING ""
|
#define PACKAGE_STRING "bfd 2.34"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME ""
|
#define PACKAGE_TARNAME "bfd"
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
/* Define to the home page for this package. */
|
||||||
#define PACKAGE_URL ""
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION ""
|
#define PACKAGE_VERSION "2.34"
|
||||||
|
|
||||||
/* The size of `char', as computed by sizeof. */
|
/* The size of `char', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_CHAR */
|
/* #undef SIZEOF_CHAR */
|
||||||
|
|
||||||
/* The size of `int', as computed by sizeof. */
|
/* The size of `int', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_INT */
|
#define SIZEOF_INT 4
|
||||||
|
|
||||||
/* The size of `long', as computed by sizeof. */
|
/* The size of `long', as computed by sizeof. */
|
||||||
#define SIZEOF_LONG 4
|
#define SIZEOF_LONG 4
|
||||||
|
|
@ -321,6 +361,9 @@
|
||||||
/* Name of host specific header file to include in trad-core.c. */
|
/* Name of host specific header file to include in trad-core.c. */
|
||||||
/* #undef TRAD_HEADER */
|
/* #undef TRAD_HEADER */
|
||||||
|
|
||||||
|
/* Define if 64-bit archives should always be used. */
|
||||||
|
/* #undef USE_64_BIT_ARCHIVE */
|
||||||
|
|
||||||
/* Use b modifier when opening binary files? */
|
/* Use b modifier when opening binary files? */
|
||||||
/* #undef USE_BINARY_FOPEN */
|
/* #undef USE_BINARY_FOPEN */
|
||||||
|
|
||||||
|
|
@ -333,9 +376,6 @@
|
||||||
/* Define if we should default to creating read-only plt entries */
|
/* Define if we should default to creating read-only plt entries */
|
||||||
/* #undef USE_SECUREPLT */
|
/* #undef USE_SECUREPLT */
|
||||||
|
|
||||||
/* Define if we may generate symbols with ELF's STT_COMMON type */
|
|
||||||
/* #undef USE_STT_COMMON */
|
|
||||||
|
|
||||||
/* Enable extensions on AIX 3, Interix. */
|
/* Enable extensions on AIX 3, Interix. */
|
||||||
#ifndef _ALL_SOURCE
|
#ifndef _ALL_SOURCE
|
||||||
# define _ALL_SOURCE 1
|
# define _ALL_SOURCE 1
|
||||||
|
|
@ -359,7 +399,12 @@
|
||||||
|
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "2.23.2"
|
#define VERSION "2.34"
|
||||||
|
|
||||||
|
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||||
|
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||||
|
# define _DARWIN_USE_64_BIT_INODE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||||
/* #undef _FILE_OFFSET_BITS */
|
/* #undef _FILE_OFFSET_BITS */
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
# This file is automatically generated. DO NOT EDIT!
|
# This file is automatically generated. DO NOT EDIT!
|
||||||
# Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp
|
# Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp
|
||||||
# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp
|
# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp
|
||||||
#
|
#
|
||||||
G_libbfd_la_DEPENDENCIES=elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo armnetbsd.lo aout32.lo coff-arm.lo cofflink.lo elf32-gen.lo cpu-arm.lo netbsd-core.lo ofiles
|
G_libbfd_la_DEPENDENCIES=elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo dwarf2.lo elf32-gen.lo plugin.lo cpu-arm.lo netbsd-core.lo ofiles
|
||||||
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo
|
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coff-bfd.lo compress.lo corefile.lo elf-properties.lo format.lo hash.lo init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo binary.lo ihex.lo srec.lo tekhex.lo verilog.lo
|
||||||
G_DEFS=-DHAVE_CONFIG_H
|
G_DEFS=-DHAVE_CONFIG_H
|
||||||
G_INCLUDES=-DNETBSD_CORE -I. -I${GNUHOSTDIST}/bfd -I${GNUHOSTDIST}/bfd/../include -DHAVE_bfd_elf32_littlearm_vec -DHAVE_bfd_elf32_bigarm_vec -DHAVE_armnetbsd_vec -DHAVE_armcoff_little_vec -DHAVE_armcoff_big_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -I./../intl
|
G_INCLUDES=
|
||||||
G_TDEFAULTS=-DDEFAULT_VECTOR=bfd_elf32_littlearm_vec -DSELECT_VECS='&bfd_elf32_littlearm_vec,&bfd_elf32_bigarm_vec,&armnetbsd_vec,&armcoff_little_vec,&armcoff_big_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_arm_arch'
|
G_TDEFAULTS=-DDEFAULT_VECTOR=arm_elf32_le_vec -DSELECT_VECS='&arm_elf32_le_vec,&arm_elf32_be_vec,&elf32_le_vec,&elf32_be_vec' -DSELECT_ARCHITECTURES='&bfd_arm_arch'
|
||||||
|
G_HAVEVECS=-DHAVE_arm_elf32_le_vec -DHAVE_arm_elf32_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec
|
||||||
|
|
|
||||||
4046
external/gpl3/binutils/lib/libbfd/arch/earmhfeb/bfd.h
vendored
4046
external/gpl3/binutils/lib/libbfd/arch/earmhfeb/bfd.h
vendored
File diff suppressed because it is too large
Load Diff
|
|
@ -1,8 +1,8 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* generated for armeb--netbsdelf-eabihf-gcc (NetBSD nb1 20120916) 4.5.4 */
|
/* generated for armeb--netbsdelf-eabihf-gcc (NetBSD nb1 20200311) 8.4.0 */
|
||||||
|
|
||||||
#ifndef GCC_GENERATED_STDINT_H
|
#ifndef GCC_GENERATED_STDINT_H
|
||||||
#define GCC_GENERATED_STDINT_H 1
|
#define GCC_GENERATED_STDINT_H 1
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,26 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
#define BFD_VERSION_DATE 20130325
|
/* The date below is automatically updated every day by a bot. During
|
||||||
#define BFD_VERSION 223020000
|
development, we include the date in the tools' version strings
|
||||||
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.23.2"
|
(visible in 'ld -v' etc.) because people build binutils from a
|
||||||
|
variety of sources - git, tarballs, distro sources - and we want
|
||||||
|
something that can easily identify the source they used when they
|
||||||
|
report bugs. The bfd version plus date is usually good enough for
|
||||||
|
that purpose.
|
||||||
|
|
||||||
|
During development, this date ends up in libbfd and libopcodes
|
||||||
|
sonames because people naturally expect shared libraries with the
|
||||||
|
same soname to have compatible ABIs. We could bump the bfd version
|
||||||
|
on every ABI change, but that's just another thing contributors and
|
||||||
|
maintainers would need to remember. Instead, it's much easier for
|
||||||
|
all if the soname contains the date. This is not perfect but is
|
||||||
|
good enough.
|
||||||
|
|
||||||
|
In releases, the date is not included in either version strings or
|
||||||
|
sonames. */
|
||||||
|
#define BFD_VERSION_DATE 20200201
|
||||||
|
#define BFD_VERSION 234000000
|
||||||
|
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.34"
|
||||||
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* config.h. Generated from config.in by configure. */
|
/* config.h. Generated from config.in by configure. */
|
||||||
/* config.in. Generated from configure.in by autoheader. */
|
/* config.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
/* Check that config.h is #included before system headers
|
/* Check that config.h is #included before system headers
|
||||||
(this works only for glibc, but that should be enough). */
|
(this works only for glibc, but that should be enough). */
|
||||||
|
|
@ -15,6 +15,10 @@
|
||||||
/* Name of host specific core header file to include in elf.c. */
|
/* Name of host specific core header file to include in elf.c. */
|
||||||
/* #undef CORE_HEADER */
|
/* #undef CORE_HEADER */
|
||||||
|
|
||||||
|
/* Define to 1 if you want to enable -z separate-code in ELF linker by
|
||||||
|
default. */
|
||||||
|
#define DEFAULT_LD_Z_SEPARATE_CODE 0
|
||||||
|
|
||||||
/* Define to 1 if translation of program messages to the user's native
|
/* Define to 1 if translation of program messages to the user's native
|
||||||
language is requested. */
|
language is requested. */
|
||||||
#define ENABLE_NLS 1
|
#define ENABLE_NLS 1
|
||||||
|
|
@ -22,6 +26,10 @@
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
/* Define to 1 if you have the <alloca.h> header file. */
|
||||||
/* #undef HAVE_ALLOCA_H */
|
/* #undef HAVE_ALLOCA_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_ASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_BASENAME 0
|
#define HAVE_DECL_BASENAME 0
|
||||||
|
|
@ -69,10 +77,18 @@
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STPCPY 1
|
#define HAVE_DECL_STPCPY 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_STRNLEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STRSTR 1
|
#define HAVE_DECL_STRSTR 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_VASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_VSNPRINTF 1
|
#define HAVE_DECL_VSNPRINTF 1
|
||||||
|
|
@ -96,6 +112,9 @@
|
||||||
/* Define to 1 if you have the `fileno' function. */
|
/* Define to 1 if you have the `fileno' function. */
|
||||||
#define HAVE_FILENO 1
|
#define HAVE_FILENO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fls' function. */
|
||||||
|
/* #undef HAVE_FLS */
|
||||||
|
|
||||||
/* Define to 1 if you have the `fopen64' function. */
|
/* Define to 1 if you have the `fopen64' function. */
|
||||||
/* #undef HAVE_FOPEN64 */
|
/* #undef HAVE_FOPEN64 */
|
||||||
|
|
||||||
|
|
@ -117,12 +136,24 @@
|
||||||
/* Define to 1 if you have the `getpagesize' function. */
|
/* Define to 1 if you have the `getpagesize' function. */
|
||||||
#define HAVE_GETPAGESIZE 1
|
#define HAVE_GETPAGESIZE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getrlimit' function. */
|
||||||
|
#define HAVE_GETRLIMIT 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `getuid' function. */
|
/* Define to 1 if you have the `getuid' function. */
|
||||||
#define HAVE_GETUID 1
|
#define HAVE_GETUID 1
|
||||||
|
|
||||||
|
/* Define if your compiler supports hidden visibility. */
|
||||||
|
#define HAVE_HIDDEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
#define HAVE_INTTYPES_H 1
|
#define HAVE_INTTYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long double'. */
|
||||||
|
#define HAVE_LONG_DOUBLE 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long long'. */
|
||||||
|
#define HAVE_LONG_LONG 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
||||||
/* #undef HAVE_LWPSTATUS_T */
|
/* #undef HAVE_LWPSTATUS_T */
|
||||||
|
|
||||||
|
|
@ -236,9 +267,15 @@
|
||||||
*/
|
*/
|
||||||
/* #undef HAVE_SYS_NDIR_H */
|
/* #undef HAVE_SYS_NDIR_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||||
|
#define HAVE_SYS_PARAM_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
||||||
/* #undef HAVE_SYS_PROCFS_H */
|
/* #undef HAVE_SYS_PROCFS_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/resource.h> header file. */
|
||||||
|
#define HAVE_SYS_RESOURCE_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
#define HAVE_SYS_STAT_H 1
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
|
@ -254,15 +291,18 @@
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
#define HAVE_UNISTD_H 1
|
#define HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wchar.h> header file. */
|
||||||
|
#define HAVE_WCHAR_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wctype.h> header file. */
|
||||||
|
#define HAVE_WCTYPE_H 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
||||||
/* #undef HAVE_WIN32_PSTATUS_T */
|
/* #undef HAVE_WIN32_PSTATUS_T */
|
||||||
|
|
||||||
/* Define to 1 if you have the <windows.h> header file. */
|
/* Define to 1 if you have the <windows.h> header file. */
|
||||||
/* #undef HAVE_WINDOWS_H */
|
/* #undef HAVE_WINDOWS_H */
|
||||||
|
|
||||||
/* Define to 1 if you have the <zlib.h> header file. */
|
|
||||||
#define HAVE_ZLIB_H 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||||
*/
|
*/
|
||||||
#define LT_OBJDIR ".libs/"
|
#define LT_OBJDIR ".libs/"
|
||||||
|
|
@ -274,25 +314,25 @@
|
||||||
#define PACKAGE_BUGREPORT ""
|
#define PACKAGE_BUGREPORT ""
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
/* Define to the full name of this package. */
|
||||||
#define PACKAGE_NAME ""
|
#define PACKAGE_NAME "bfd"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING ""
|
#define PACKAGE_STRING "bfd 2.34"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME ""
|
#define PACKAGE_TARNAME "bfd"
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
/* Define to the home page for this package. */
|
||||||
#define PACKAGE_URL ""
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION ""
|
#define PACKAGE_VERSION "2.34"
|
||||||
|
|
||||||
/* The size of `char', as computed by sizeof. */
|
/* The size of `char', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_CHAR */
|
/* #undef SIZEOF_CHAR */
|
||||||
|
|
||||||
/* The size of `int', as computed by sizeof. */
|
/* The size of `int', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_INT */
|
#define SIZEOF_INT 4
|
||||||
|
|
||||||
/* The size of `long', as computed by sizeof. */
|
/* The size of `long', as computed by sizeof. */
|
||||||
#define SIZEOF_LONG 4
|
#define SIZEOF_LONG 4
|
||||||
|
|
@ -321,6 +361,9 @@
|
||||||
/* Name of host specific header file to include in trad-core.c. */
|
/* Name of host specific header file to include in trad-core.c. */
|
||||||
/* #undef TRAD_HEADER */
|
/* #undef TRAD_HEADER */
|
||||||
|
|
||||||
|
/* Define if 64-bit archives should always be used. */
|
||||||
|
/* #undef USE_64_BIT_ARCHIVE */
|
||||||
|
|
||||||
/* Use b modifier when opening binary files? */
|
/* Use b modifier when opening binary files? */
|
||||||
/* #undef USE_BINARY_FOPEN */
|
/* #undef USE_BINARY_FOPEN */
|
||||||
|
|
||||||
|
|
@ -333,9 +376,6 @@
|
||||||
/* Define if we should default to creating read-only plt entries */
|
/* Define if we should default to creating read-only plt entries */
|
||||||
/* #undef USE_SECUREPLT */
|
/* #undef USE_SECUREPLT */
|
||||||
|
|
||||||
/* Define if we may generate symbols with ELF's STT_COMMON type */
|
|
||||||
/* #undef USE_STT_COMMON */
|
|
||||||
|
|
||||||
/* Enable extensions on AIX 3, Interix. */
|
/* Enable extensions on AIX 3, Interix. */
|
||||||
#ifndef _ALL_SOURCE
|
#ifndef _ALL_SOURCE
|
||||||
# define _ALL_SOURCE 1
|
# define _ALL_SOURCE 1
|
||||||
|
|
@ -359,7 +399,12 @@
|
||||||
|
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "2.23.2"
|
#define VERSION "2.34"
|
||||||
|
|
||||||
|
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||||
|
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||||
|
# define _DARWIN_USE_64_BIT_INODE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||||
/* #undef _FILE_OFFSET_BITS */
|
/* #undef _FILE_OFFSET_BITS */
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
# This file is automatically generated. DO NOT EDIT!
|
# This file is automatically generated. DO NOT EDIT!
|
||||||
# Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp
|
# Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp
|
||||||
# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp
|
# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp
|
||||||
#
|
#
|
||||||
G_libbfd_la_DEPENDENCIES=elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo armnetbsd.lo aout32.lo coff-arm.lo cofflink.lo elf32-gen.lo cpu-arm.lo netbsd-core.lo ofiles
|
G_libbfd_la_DEPENDENCIES=elf32-arm.lo elf32.lo elf-nacl.lo elf-vxworks.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo dwarf2.lo elf32-gen.lo plugin.lo cpu-arm.lo netbsd-core.lo ofiles
|
||||||
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo
|
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coff-bfd.lo compress.lo corefile.lo elf-properties.lo format.lo hash.lo init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo binary.lo ihex.lo srec.lo tekhex.lo verilog.lo
|
||||||
G_DEFS=-DHAVE_CONFIG_H
|
G_DEFS=-DHAVE_CONFIG_H
|
||||||
G_INCLUDES=-DNETBSD_CORE -I. -I${GNUHOSTDIST}/bfd -I${GNUHOSTDIST}/bfd/../include -DHAVE_bfd_elf32_bigarm_vec -DHAVE_bfd_elf32_littlearm_vec -DHAVE_armnetbsd_vec -DHAVE_armcoff_little_vec -DHAVE_armcoff_big_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -I./../intl
|
G_INCLUDES=
|
||||||
G_TDEFAULTS=-DDEFAULT_VECTOR=bfd_elf32_bigarm_vec -DSELECT_VECS='&bfd_elf32_bigarm_vec,&bfd_elf32_littlearm_vec,&armnetbsd_vec,&armcoff_little_vec,&armcoff_big_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_arm_arch'
|
G_TDEFAULTS=-DDEFAULT_VECTOR=arm_elf32_be_vec -DSELECT_VECS='&arm_elf32_be_vec,&arm_elf32_le_vec,&elf32_le_vec,&elf32_be_vec' -DSELECT_ARCHITECTURES='&bfd_arm_arch'
|
||||||
|
G_HAVEVECS=-DHAVE_arm_elf32_be_vec -DHAVE_arm_elf32_le_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec
|
||||||
|
|
|
||||||
4046
external/gpl3/binutils/lib/libbfd/arch/hppa/bfd.h
vendored
4046
external/gpl3/binutils/lib/libbfd/arch/hppa/bfd.h
vendored
File diff suppressed because it is too large
Load Diff
|
|
@ -1,8 +1,8 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* generated for hppa--netbsd-gcc (NetBSD nb1 20120916) 4.5.4 */
|
/* generated for hppa--netbsd-gcc (NetBSD nb1 20190930) 8.3.0 */
|
||||||
|
|
||||||
#ifndef GCC_GENERATED_STDINT_H
|
#ifndef GCC_GENERATED_STDINT_H
|
||||||
#define GCC_GENERATED_STDINT_H 1
|
#define GCC_GENERATED_STDINT_H 1
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,26 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
#define BFD_VERSION_DATE 20130325
|
/* The date below is automatically updated every day by a bot. During
|
||||||
#define BFD_VERSION 223020000
|
development, we include the date in the tools' version strings
|
||||||
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.23.2"
|
(visible in 'ld -v' etc.) because people build binutils from a
|
||||||
|
variety of sources - git, tarballs, distro sources - and we want
|
||||||
|
something that can easily identify the source they used when they
|
||||||
|
report bugs. The bfd version plus date is usually good enough for
|
||||||
|
that purpose.
|
||||||
|
|
||||||
|
During development, this date ends up in libbfd and libopcodes
|
||||||
|
sonames because people naturally expect shared libraries with the
|
||||||
|
same soname to have compatible ABIs. We could bump the bfd version
|
||||||
|
on every ABI change, but that's just another thing contributors and
|
||||||
|
maintainers would need to remember. Instead, it's much easier for
|
||||||
|
all if the soname contains the date. This is not perfect but is
|
||||||
|
good enough.
|
||||||
|
|
||||||
|
In releases, the date is not included in either version strings or
|
||||||
|
sonames. */
|
||||||
|
#define BFD_VERSION_DATE 20200201
|
||||||
|
#define BFD_VERSION 234000000
|
||||||
|
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.34"
|
||||||
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* config.h. Generated from config.in by configure. */
|
/* config.h. Generated from config.in by configure. */
|
||||||
/* config.in. Generated from configure.in by autoheader. */
|
/* config.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
/* Check that config.h is #included before system headers
|
/* Check that config.h is #included before system headers
|
||||||
(this works only for glibc, but that should be enough). */
|
(this works only for glibc, but that should be enough). */
|
||||||
|
|
@ -15,6 +15,10 @@
|
||||||
/* Name of host specific core header file to include in elf.c. */
|
/* Name of host specific core header file to include in elf.c. */
|
||||||
/* #undef CORE_HEADER */
|
/* #undef CORE_HEADER */
|
||||||
|
|
||||||
|
/* Define to 1 if you want to enable -z separate-code in ELF linker by
|
||||||
|
default. */
|
||||||
|
#define DEFAULT_LD_Z_SEPARATE_CODE 0
|
||||||
|
|
||||||
/* Define to 1 if translation of program messages to the user's native
|
/* Define to 1 if translation of program messages to the user's native
|
||||||
language is requested. */
|
language is requested. */
|
||||||
#define ENABLE_NLS 1
|
#define ENABLE_NLS 1
|
||||||
|
|
@ -22,6 +26,10 @@
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
/* Define to 1 if you have the <alloca.h> header file. */
|
||||||
/* #undef HAVE_ALLOCA_H */
|
/* #undef HAVE_ALLOCA_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_ASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_BASENAME 0
|
#define HAVE_DECL_BASENAME 0
|
||||||
|
|
@ -69,10 +77,18 @@
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STPCPY 1
|
#define HAVE_DECL_STPCPY 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_STRNLEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STRSTR 1
|
#define HAVE_DECL_STRSTR 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_VASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_VSNPRINTF 1
|
#define HAVE_DECL_VSNPRINTF 1
|
||||||
|
|
@ -96,6 +112,9 @@
|
||||||
/* Define to 1 if you have the `fileno' function. */
|
/* Define to 1 if you have the `fileno' function. */
|
||||||
#define HAVE_FILENO 1
|
#define HAVE_FILENO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fls' function. */
|
||||||
|
/* #undef HAVE_FLS */
|
||||||
|
|
||||||
/* Define to 1 if you have the `fopen64' function. */
|
/* Define to 1 if you have the `fopen64' function. */
|
||||||
/* #undef HAVE_FOPEN64 */
|
/* #undef HAVE_FOPEN64 */
|
||||||
|
|
||||||
|
|
@ -117,12 +136,24 @@
|
||||||
/* Define to 1 if you have the `getpagesize' function. */
|
/* Define to 1 if you have the `getpagesize' function. */
|
||||||
#define HAVE_GETPAGESIZE 1
|
#define HAVE_GETPAGESIZE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getrlimit' function. */
|
||||||
|
#define HAVE_GETRLIMIT 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `getuid' function. */
|
/* Define to 1 if you have the `getuid' function. */
|
||||||
#define HAVE_GETUID 1
|
#define HAVE_GETUID 1
|
||||||
|
|
||||||
|
/* Define if your compiler supports hidden visibility. */
|
||||||
|
#define HAVE_HIDDEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
#define HAVE_INTTYPES_H 1
|
#define HAVE_INTTYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long double'. */
|
||||||
|
#define HAVE_LONG_DOUBLE 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long long'. */
|
||||||
|
#define HAVE_LONG_LONG 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
||||||
/* #undef HAVE_LWPSTATUS_T */
|
/* #undef HAVE_LWPSTATUS_T */
|
||||||
|
|
||||||
|
|
@ -236,9 +267,15 @@
|
||||||
*/
|
*/
|
||||||
/* #undef HAVE_SYS_NDIR_H */
|
/* #undef HAVE_SYS_NDIR_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||||
|
#define HAVE_SYS_PARAM_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
||||||
/* #undef HAVE_SYS_PROCFS_H */
|
/* #undef HAVE_SYS_PROCFS_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/resource.h> header file. */
|
||||||
|
#define HAVE_SYS_RESOURCE_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
#define HAVE_SYS_STAT_H 1
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
|
@ -254,15 +291,18 @@
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
#define HAVE_UNISTD_H 1
|
#define HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wchar.h> header file. */
|
||||||
|
#define HAVE_WCHAR_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wctype.h> header file. */
|
||||||
|
#define HAVE_WCTYPE_H 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
||||||
/* #undef HAVE_WIN32_PSTATUS_T */
|
/* #undef HAVE_WIN32_PSTATUS_T */
|
||||||
|
|
||||||
/* Define to 1 if you have the <windows.h> header file. */
|
/* Define to 1 if you have the <windows.h> header file. */
|
||||||
/* #undef HAVE_WINDOWS_H */
|
/* #undef HAVE_WINDOWS_H */
|
||||||
|
|
||||||
/* Define to 1 if you have the <zlib.h> header file. */
|
|
||||||
#define HAVE_ZLIB_H 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||||
*/
|
*/
|
||||||
#define LT_OBJDIR ".libs/"
|
#define LT_OBJDIR ".libs/"
|
||||||
|
|
@ -274,25 +314,25 @@
|
||||||
#define PACKAGE_BUGREPORT ""
|
#define PACKAGE_BUGREPORT ""
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
/* Define to the full name of this package. */
|
||||||
#define PACKAGE_NAME ""
|
#define PACKAGE_NAME "bfd"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING ""
|
#define PACKAGE_STRING "bfd 2.34"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME ""
|
#define PACKAGE_TARNAME "bfd"
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
/* Define to the home page for this package. */
|
||||||
#define PACKAGE_URL ""
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION ""
|
#define PACKAGE_VERSION "2.34"
|
||||||
|
|
||||||
/* The size of `char', as computed by sizeof. */
|
/* The size of `char', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_CHAR */
|
/* #undef SIZEOF_CHAR */
|
||||||
|
|
||||||
/* The size of `int', as computed by sizeof. */
|
/* The size of `int', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_INT */
|
#define SIZEOF_INT 4
|
||||||
|
|
||||||
/* The size of `long', as computed by sizeof. */
|
/* The size of `long', as computed by sizeof. */
|
||||||
#define SIZEOF_LONG 4
|
#define SIZEOF_LONG 4
|
||||||
|
|
@ -321,6 +361,9 @@
|
||||||
/* Name of host specific header file to include in trad-core.c. */
|
/* Name of host specific header file to include in trad-core.c. */
|
||||||
/* #undef TRAD_HEADER */
|
/* #undef TRAD_HEADER */
|
||||||
|
|
||||||
|
/* Define if 64-bit archives should always be used. */
|
||||||
|
/* #undef USE_64_BIT_ARCHIVE */
|
||||||
|
|
||||||
/* Use b modifier when opening binary files? */
|
/* Use b modifier when opening binary files? */
|
||||||
/* #undef USE_BINARY_FOPEN */
|
/* #undef USE_BINARY_FOPEN */
|
||||||
|
|
||||||
|
|
@ -333,9 +376,6 @@
|
||||||
/* Define if we should default to creating read-only plt entries */
|
/* Define if we should default to creating read-only plt entries */
|
||||||
/* #undef USE_SECUREPLT */
|
/* #undef USE_SECUREPLT */
|
||||||
|
|
||||||
/* Define if we may generate symbols with ELF's STT_COMMON type */
|
|
||||||
/* #undef USE_STT_COMMON */
|
|
||||||
|
|
||||||
/* Enable extensions on AIX 3, Interix. */
|
/* Enable extensions on AIX 3, Interix. */
|
||||||
#ifndef _ALL_SOURCE
|
#ifndef _ALL_SOURCE
|
||||||
# define _ALL_SOURCE 1
|
# define _ALL_SOURCE 1
|
||||||
|
|
@ -359,7 +399,12 @@
|
||||||
|
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "2.23.2"
|
#define VERSION "2.34"
|
||||||
|
|
||||||
|
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||||
|
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||||
|
# define _DARWIN_USE_64_BIT_INODE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||||
/* #undef _FILE_OFFSET_BITS */
|
/* #undef _FILE_OFFSET_BITS */
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
# This file is automatically generated. DO NOT EDIT!
|
# This file is automatically generated. DO NOT EDIT!
|
||||||
# Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp
|
# Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp
|
||||||
# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp
|
# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp
|
||||||
#
|
#
|
||||||
G_libbfd_la_DEPENDENCIES=elf32-hppa.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo elf32-gen.lo cpu-hppa.lo netbsd-core.lo ofiles
|
G_libbfd_la_DEPENDENCIES=elf32-hppa.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo dwarf2.lo elf32-gen.lo plugin.lo cpu-hppa.lo netbsd-core.lo ofiles
|
||||||
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo
|
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coff-bfd.lo compress.lo corefile.lo elf-properties.lo format.lo hash.lo init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo binary.lo ihex.lo srec.lo tekhex.lo verilog.lo
|
||||||
G_DEFS=-DHAVE_CONFIG_H
|
G_DEFS=-DHAVE_CONFIG_H
|
||||||
G_INCLUDES=-DNETBSD_CORE -I. -I${GNUHOSTDIST}/bfd -I${GNUHOSTDIST}/bfd/../include -DHAVE_bfd_elf32_hppa_nbsd_vec -DHAVE_bfd_elf32_hppa_vec -DHAVE_bfd_elf32_hppa_linux_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -I./../intl
|
G_INCLUDES=
|
||||||
G_TDEFAULTS=-DDEFAULT_VECTOR=bfd_elf32_hppa_nbsd_vec -DSELECT_VECS='&bfd_elf32_hppa_nbsd_vec,&bfd_elf32_hppa_vec,&bfd_elf32_hppa_linux_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_hppa_arch'
|
G_TDEFAULTS=-DDEFAULT_VECTOR=hppa_elf32_nbsd_vec -DSELECT_VECS='&hppa_elf32_nbsd_vec,&hppa_elf32_vec,&hppa_elf32_linux_vec,&elf32_le_vec,&elf32_be_vec' -DSELECT_ARCHITECTURES='&bfd_hppa_arch'
|
||||||
|
G_HAVEVECS=-DHAVE_hppa_elf32_nbsd_vec -DHAVE_hppa_elf32_vec -DHAVE_hppa_elf32_linux_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec
|
||||||
|
|
|
||||||
4046
external/gpl3/binutils/lib/libbfd/arch/i386/bfd.h
vendored
4046
external/gpl3/binutils/lib/libbfd/arch/i386/bfd.h
vendored
File diff suppressed because it is too large
Load Diff
|
|
@ -1,8 +1,8 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.11 2018/11/08 02:08:35 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* generated for i486--netbsdelf-gcc (NetBSD nb1 20120916) 4.5.4 */
|
/* generated for i486--netbsdelf-gcc (NetBSD nb1 20190930) 8.3.0 */
|
||||||
|
|
||||||
#ifndef GCC_GENERATED_STDINT_H
|
#ifndef GCC_GENERATED_STDINT_H
|
||||||
#define GCC_GENERATED_STDINT_H 1
|
#define GCC_GENERATED_STDINT_H 1
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,26 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.11 2018/11/08 02:08:35 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
#define BFD_VERSION_DATE 20130325
|
/* The date below is automatically updated every day by a bot. During
|
||||||
#define BFD_VERSION 223020000
|
development, we include the date in the tools' version strings
|
||||||
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.23.2"
|
(visible in 'ld -v' etc.) because people build binutils from a
|
||||||
|
variety of sources - git, tarballs, distro sources - and we want
|
||||||
|
something that can easily identify the source they used when they
|
||||||
|
report bugs. The bfd version plus date is usually good enough for
|
||||||
|
that purpose.
|
||||||
|
|
||||||
|
During development, this date ends up in libbfd and libopcodes
|
||||||
|
sonames because people naturally expect shared libraries with the
|
||||||
|
same soname to have compatible ABIs. We could bump the bfd version
|
||||||
|
on every ABI change, but that's just another thing contributors and
|
||||||
|
maintainers would need to remember. Instead, it's much easier for
|
||||||
|
all if the soname contains the date. This is not perfect but is
|
||||||
|
good enough.
|
||||||
|
|
||||||
|
In releases, the date is not included in either version strings or
|
||||||
|
sonames. */
|
||||||
|
#define BFD_VERSION_DATE 20200201
|
||||||
|
#define BFD_VERSION 234000000
|
||||||
|
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.34"
|
||||||
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.11 2018/11/08 02:08:35 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* config.h. Generated from config.in by configure. */
|
/* config.h. Generated from config.in by configure. */
|
||||||
/* config.in. Generated from configure.in by autoheader. */
|
/* config.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
/* Check that config.h is #included before system headers
|
/* Check that config.h is #included before system headers
|
||||||
(this works only for glibc, but that should be enough). */
|
(this works only for glibc, but that should be enough). */
|
||||||
|
|
@ -15,6 +15,10 @@
|
||||||
/* Name of host specific core header file to include in elf.c. */
|
/* Name of host specific core header file to include in elf.c. */
|
||||||
/* #undef CORE_HEADER */
|
/* #undef CORE_HEADER */
|
||||||
|
|
||||||
|
/* Define to 1 if you want to enable -z separate-code in ELF linker by
|
||||||
|
default. */
|
||||||
|
#define DEFAULT_LD_Z_SEPARATE_CODE 0
|
||||||
|
|
||||||
#if !defined(__minix)
|
#if !defined(__minix)
|
||||||
/* Define to 1 if translation of program messages to the user's native
|
/* Define to 1 if translation of program messages to the user's native
|
||||||
language is requested. */
|
language is requested. */
|
||||||
|
|
@ -24,6 +28,10 @@
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
/* Define to 1 if you have the <alloca.h> header file. */
|
||||||
/* #undef HAVE_ALLOCA_H */
|
/* #undef HAVE_ALLOCA_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_ASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_BASENAME 0
|
#define HAVE_DECL_BASENAME 0
|
||||||
|
|
@ -71,10 +79,18 @@
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STPCPY 1
|
#define HAVE_DECL_STPCPY 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_STRNLEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STRSTR 1
|
#define HAVE_DECL_STRSTR 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_VASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_VSNPRINTF 1
|
#define HAVE_DECL_VSNPRINTF 1
|
||||||
|
|
@ -98,6 +114,9 @@
|
||||||
/* Define to 1 if you have the `fileno' function. */
|
/* Define to 1 if you have the `fileno' function. */
|
||||||
#define HAVE_FILENO 1
|
#define HAVE_FILENO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fls' function. */
|
||||||
|
/* #undef HAVE_FLS */
|
||||||
|
|
||||||
/* Define to 1 if you have the `fopen64' function. */
|
/* Define to 1 if you have the `fopen64' function. */
|
||||||
/* #undef HAVE_FOPEN64 */
|
/* #undef HAVE_FOPEN64 */
|
||||||
|
|
||||||
|
|
@ -119,12 +138,24 @@
|
||||||
/* Define to 1 if you have the `getpagesize' function. */
|
/* Define to 1 if you have the `getpagesize' function. */
|
||||||
#define HAVE_GETPAGESIZE 1
|
#define HAVE_GETPAGESIZE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getrlimit' function. */
|
||||||
|
#define HAVE_GETRLIMIT 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `getuid' function. */
|
/* Define to 1 if you have the `getuid' function. */
|
||||||
#define HAVE_GETUID 1
|
#define HAVE_GETUID 1
|
||||||
|
|
||||||
|
/* Define if your compiler supports hidden visibility. */
|
||||||
|
#define HAVE_HIDDEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
#define HAVE_INTTYPES_H 1
|
#define HAVE_INTTYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long double'. */
|
||||||
|
#define HAVE_LONG_DOUBLE 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long long'. */
|
||||||
|
#define HAVE_LONG_LONG 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
||||||
/* #undef HAVE_LWPSTATUS_T */
|
/* #undef HAVE_LWPSTATUS_T */
|
||||||
|
|
||||||
|
|
@ -242,9 +273,15 @@
|
||||||
*/
|
*/
|
||||||
/* #undef HAVE_SYS_NDIR_H */
|
/* #undef HAVE_SYS_NDIR_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||||
|
#define HAVE_SYS_PARAM_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
||||||
/* #undef HAVE_SYS_PROCFS_H */
|
/* #undef HAVE_SYS_PROCFS_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/resource.h> header file. */
|
||||||
|
#define HAVE_SYS_RESOURCE_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
#define HAVE_SYS_STAT_H 1
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
|
@ -260,15 +297,18 @@
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
#define HAVE_UNISTD_H 1
|
#define HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wchar.h> header file. */
|
||||||
|
#define HAVE_WCHAR_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wctype.h> header file. */
|
||||||
|
#define HAVE_WCTYPE_H 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
||||||
/* #undef HAVE_WIN32_PSTATUS_T */
|
/* #undef HAVE_WIN32_PSTATUS_T */
|
||||||
|
|
||||||
/* Define to 1 if you have the <windows.h> header file. */
|
/* Define to 1 if you have the <windows.h> header file. */
|
||||||
/* #undef HAVE_WINDOWS_H */
|
/* #undef HAVE_WINDOWS_H */
|
||||||
|
|
||||||
/* Define to 1 if you have the <zlib.h> header file. */
|
|
||||||
#define HAVE_ZLIB_H 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||||
*/
|
*/
|
||||||
#define LT_OBJDIR ".libs/"
|
#define LT_OBJDIR ".libs/"
|
||||||
|
|
@ -280,25 +320,25 @@
|
||||||
#define PACKAGE_BUGREPORT ""
|
#define PACKAGE_BUGREPORT ""
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
/* Define to the full name of this package. */
|
||||||
#define PACKAGE_NAME ""
|
#define PACKAGE_NAME "bfd"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING ""
|
#define PACKAGE_STRING "bfd 2.34"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME ""
|
#define PACKAGE_TARNAME "bfd"
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
/* Define to the home page for this package. */
|
||||||
#define PACKAGE_URL ""
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION ""
|
#define PACKAGE_VERSION "2.34"
|
||||||
|
|
||||||
/* The size of `char', as computed by sizeof. */
|
/* The size of `char', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_CHAR */
|
/* #undef SIZEOF_CHAR */
|
||||||
|
|
||||||
/* The size of `int', as computed by sizeof. */
|
/* The size of `int', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_INT */
|
#define SIZEOF_INT 4
|
||||||
|
|
||||||
/* The size of `long', as computed by sizeof. */
|
/* The size of `long', as computed by sizeof. */
|
||||||
#define SIZEOF_LONG 4
|
#define SIZEOF_LONG 4
|
||||||
|
|
@ -327,6 +367,9 @@
|
||||||
/* Name of host specific header file to include in trad-core.c. */
|
/* Name of host specific header file to include in trad-core.c. */
|
||||||
/* #undef TRAD_HEADER */
|
/* #undef TRAD_HEADER */
|
||||||
|
|
||||||
|
/* Define if 64-bit archives should always be used. */
|
||||||
|
/* #undef USE_64_BIT_ARCHIVE */
|
||||||
|
|
||||||
/* Use b modifier when opening binary files? */
|
/* Use b modifier when opening binary files? */
|
||||||
/* #undef USE_BINARY_FOPEN */
|
/* #undef USE_BINARY_FOPEN */
|
||||||
|
|
||||||
|
|
@ -339,9 +382,6 @@
|
||||||
/* Define if we should default to creating read-only plt entries */
|
/* Define if we should default to creating read-only plt entries */
|
||||||
/* #undef USE_SECUREPLT */
|
/* #undef USE_SECUREPLT */
|
||||||
|
|
||||||
/* Define if we may generate symbols with ELF's STT_COMMON type */
|
|
||||||
/* #undef USE_STT_COMMON */
|
|
||||||
|
|
||||||
/* Enable extensions on AIX 3, Interix. */
|
/* Enable extensions on AIX 3, Interix. */
|
||||||
#ifndef _ALL_SOURCE
|
#ifndef _ALL_SOURCE
|
||||||
# define _ALL_SOURCE 1
|
# define _ALL_SOURCE 1
|
||||||
|
|
@ -365,7 +405,12 @@
|
||||||
|
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "2.23.2"
|
#define VERSION "2.34"
|
||||||
|
|
||||||
|
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||||
|
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||||
|
# define _DARWIN_USE_64_BIT_INODE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||||
/* #undef _FILE_OFFSET_BITS */
|
/* #undef _FILE_OFFSET_BITS */
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
# This file is automatically generated. DO NOT EDIT!
|
# This file is automatically generated. DO NOT EDIT!
|
||||||
# Generated from: NetBSD: mknative-binutils,v 1.9 2013/10/01 15:41:17 skrll Exp
|
# Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp
|
||||||
# Generated from: NetBSD: mknative.common,v 1.10 2013/10/20 16:00:20 skrll Exp
|
# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp
|
||||||
#
|
#
|
||||||
G_libbfd_la_DEPENDENCIES=elf32-i386.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo elf32-gen.lo cpu-i386.lo ofiles
|
G_libbfd_la_DEPENDENCIES=elf32-i386.lo elfxx-x86.lo elf-ifunc.lo elf-nacl.lo elf-vxworks.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo dwarf2.lo coffgen.lo plugin.lo cpu-i386.lo elf32-gen.lo ofiles
|
||||||
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo
|
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coff-bfd.lo compress.lo corefile.lo elf-properties.lo format.lo hash.lo init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo binary.lo ihex.lo srec.lo tekhex.lo verilog.lo
|
||||||
G_DEFS=-DHAVE_CONFIG_H
|
G_DEFS=-DHAVE_CONFIG_H
|
||||||
G_INCLUDES=-I. -I${GNUHOSTDIST}/bfd -I${GNUHOSTDIST}/bfd/../include -DHAVE_bfd_elf32_i386_minix_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec
|
G_INCLUDES=
|
||||||
G_TDEFAULTS=-DDEFAULT_VECTOR=bfd_elf32_i386_minix_vec -DSELECT_VECS='&bfd_elf32_i386_minix_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_i386_arch'
|
G_TDEFAULTS=-DDEFAULT_VECTOR=i386_elf32_minix_vec -DSELECT_VECS='&i386_elf32_minix_vec,&elf32_le_vec,&elf32_be_vec' -DSELECT_ARCHITECTURES='&bfd_i386_arch'
|
||||||
|
G_HAVEVECS=-DHAVE_i386_elf32_minix_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec
|
||||||
|
|
|
||||||
4046
external/gpl3/binutils/lib/libbfd/arch/ia64/bfd.h
vendored
4046
external/gpl3/binutils/lib/libbfd/arch/ia64/bfd.h
vendored
File diff suppressed because it is too large
Load Diff
|
|
@ -1,8 +1,8 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.9 2013/10/01 15:41:17 skrll Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.11 2018/11/08 02:08:35 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* generated for ia64--netbsd-gcc (NetBSD nb1 20120916) 4.8.3 20140302 (prerelease) */
|
/* generated for ia64--netbsd-gcc (NetBSD nb4 20181109) 6.5.0 */
|
||||||
|
|
||||||
#ifndef GCC_GENERATED_STDINT_H
|
#ifndef GCC_GENERATED_STDINT_H
|
||||||
#define GCC_GENERATED_STDINT_H 1
|
#define GCC_GENERATED_STDINT_H 1
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,26 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.9 2013/10/01 15:41:17 skrll Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
#define BFD_VERSION_DATE 20130325
|
/* The date below is automatically updated every day by a bot. During
|
||||||
#define BFD_VERSION 223020000
|
development, we include the date in the tools' version strings
|
||||||
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.23.2"
|
(visible in 'ld -v' etc.) because people build binutils from a
|
||||||
|
variety of sources - git, tarballs, distro sources - and we want
|
||||||
|
something that can easily identify the source they used when they
|
||||||
|
report bugs. The bfd version plus date is usually good enough for
|
||||||
|
that purpose.
|
||||||
|
|
||||||
|
During development, this date ends up in libbfd and libopcodes
|
||||||
|
sonames because people naturally expect shared libraries with the
|
||||||
|
same soname to have compatible ABIs. We could bump the bfd version
|
||||||
|
on every ABI change, but that's just another thing contributors and
|
||||||
|
maintainers would need to remember. Instead, it's much easier for
|
||||||
|
all if the soname contains the date. This is not perfect but is
|
||||||
|
good enough.
|
||||||
|
|
||||||
|
In releases, the date is not included in either version strings or
|
||||||
|
sonames. */
|
||||||
|
#define BFD_VERSION_DATE 20200201
|
||||||
|
#define BFD_VERSION 234000000
|
||||||
|
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.34"
|
||||||
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.9 2013/10/01 15:41:17 skrll Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* config.h. Generated from config.in by configure. */
|
/* config.h. Generated from config.in by configure. */
|
||||||
/* config.in. Generated from configure.in by autoheader. */
|
/* config.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
/* Check that config.h is #included before system headers
|
/* Check that config.h is #included before system headers
|
||||||
(this works only for glibc, but that should be enough). */
|
(this works only for glibc, but that should be enough). */
|
||||||
|
|
@ -15,6 +15,10 @@
|
||||||
/* Name of host specific core header file to include in elf.c. */
|
/* Name of host specific core header file to include in elf.c. */
|
||||||
/* #undef CORE_HEADER */
|
/* #undef CORE_HEADER */
|
||||||
|
|
||||||
|
/* Define to 1 if you want to enable -z separate-code in ELF linker by
|
||||||
|
default. */
|
||||||
|
#define DEFAULT_LD_Z_SEPARATE_CODE 0
|
||||||
|
|
||||||
/* Define to 1 if translation of program messages to the user's native
|
/* Define to 1 if translation of program messages to the user's native
|
||||||
language is requested. */
|
language is requested. */
|
||||||
#define ENABLE_NLS 1
|
#define ENABLE_NLS 1
|
||||||
|
|
@ -22,6 +26,10 @@
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
/* Define to 1 if you have the <alloca.h> header file. */
|
||||||
/* #undef HAVE_ALLOCA_H */
|
/* #undef HAVE_ALLOCA_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_ASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_BASENAME 0
|
#define HAVE_DECL_BASENAME 0
|
||||||
|
|
@ -69,10 +77,18 @@
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STPCPY 1
|
#define HAVE_DECL_STPCPY 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_STRNLEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STRSTR 1
|
#define HAVE_DECL_STRSTR 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_VASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_VSNPRINTF 1
|
#define HAVE_DECL_VSNPRINTF 1
|
||||||
|
|
@ -96,6 +112,9 @@
|
||||||
/* Define to 1 if you have the `fileno' function. */
|
/* Define to 1 if you have the `fileno' function. */
|
||||||
#define HAVE_FILENO 1
|
#define HAVE_FILENO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fls' function. */
|
||||||
|
/* #undef HAVE_FLS */
|
||||||
|
|
||||||
/* Define to 1 if you have the `fopen64' function. */
|
/* Define to 1 if you have the `fopen64' function. */
|
||||||
/* #undef HAVE_FOPEN64 */
|
/* #undef HAVE_FOPEN64 */
|
||||||
|
|
||||||
|
|
@ -117,12 +136,24 @@
|
||||||
/* Define to 1 if you have the `getpagesize' function. */
|
/* Define to 1 if you have the `getpagesize' function. */
|
||||||
#define HAVE_GETPAGESIZE 1
|
#define HAVE_GETPAGESIZE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getrlimit' function. */
|
||||||
|
#define HAVE_GETRLIMIT 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `getuid' function. */
|
/* Define to 1 if you have the `getuid' function. */
|
||||||
#define HAVE_GETUID 1
|
#define HAVE_GETUID 1
|
||||||
|
|
||||||
|
/* Define if your compiler supports hidden visibility. */
|
||||||
|
#define HAVE_HIDDEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
#define HAVE_INTTYPES_H 1
|
#define HAVE_INTTYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long double'. */
|
||||||
|
#define HAVE_LONG_DOUBLE 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long long'. */
|
||||||
|
#define HAVE_LONG_LONG 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
||||||
/* #undef HAVE_LWPSTATUS_T */
|
/* #undef HAVE_LWPSTATUS_T */
|
||||||
|
|
||||||
|
|
@ -236,9 +267,15 @@
|
||||||
*/
|
*/
|
||||||
/* #undef HAVE_SYS_NDIR_H */
|
/* #undef HAVE_SYS_NDIR_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||||
|
#define HAVE_SYS_PARAM_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
||||||
/* #undef HAVE_SYS_PROCFS_H */
|
/* #undef HAVE_SYS_PROCFS_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/resource.h> header file. */
|
||||||
|
#define HAVE_SYS_RESOURCE_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
#define HAVE_SYS_STAT_H 1
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
|
@ -254,15 +291,18 @@
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
#define HAVE_UNISTD_H 1
|
#define HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wchar.h> header file. */
|
||||||
|
#define HAVE_WCHAR_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wctype.h> header file. */
|
||||||
|
#define HAVE_WCTYPE_H 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
||||||
/* #undef HAVE_WIN32_PSTATUS_T */
|
/* #undef HAVE_WIN32_PSTATUS_T */
|
||||||
|
|
||||||
/* Define to 1 if you have the <windows.h> header file. */
|
/* Define to 1 if you have the <windows.h> header file. */
|
||||||
/* #undef HAVE_WINDOWS_H */
|
/* #undef HAVE_WINDOWS_H */
|
||||||
|
|
||||||
/* Define to 1 if you have the <zlib.h> header file. */
|
|
||||||
#define HAVE_ZLIB_H 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||||
*/
|
*/
|
||||||
#define LT_OBJDIR ".libs/"
|
#define LT_OBJDIR ".libs/"
|
||||||
|
|
@ -274,25 +314,25 @@
|
||||||
#define PACKAGE_BUGREPORT ""
|
#define PACKAGE_BUGREPORT ""
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
/* Define to the full name of this package. */
|
||||||
#define PACKAGE_NAME ""
|
#define PACKAGE_NAME "bfd"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING ""
|
#define PACKAGE_STRING "bfd 2.34"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME ""
|
#define PACKAGE_TARNAME "bfd"
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
/* Define to the home page for this package. */
|
||||||
#define PACKAGE_URL ""
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION ""
|
#define PACKAGE_VERSION "2.34"
|
||||||
|
|
||||||
/* The size of `char', as computed by sizeof. */
|
/* The size of `char', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_CHAR */
|
/* #undef SIZEOF_CHAR */
|
||||||
|
|
||||||
/* The size of `int', as computed by sizeof. */
|
/* The size of `int', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_INT */
|
#define SIZEOF_INT 4
|
||||||
|
|
||||||
/* The size of `long', as computed by sizeof. */
|
/* The size of `long', as computed by sizeof. */
|
||||||
#define SIZEOF_LONG 8
|
#define SIZEOF_LONG 8
|
||||||
|
|
@ -321,6 +361,9 @@
|
||||||
/* Name of host specific header file to include in trad-core.c. */
|
/* Name of host specific header file to include in trad-core.c. */
|
||||||
/* #undef TRAD_HEADER */
|
/* #undef TRAD_HEADER */
|
||||||
|
|
||||||
|
/* Define if 64-bit archives should always be used. */
|
||||||
|
/* #undef USE_64_BIT_ARCHIVE */
|
||||||
|
|
||||||
/* Use b modifier when opening binary files? */
|
/* Use b modifier when opening binary files? */
|
||||||
/* #undef USE_BINARY_FOPEN */
|
/* #undef USE_BINARY_FOPEN */
|
||||||
|
|
||||||
|
|
@ -333,9 +376,6 @@
|
||||||
/* Define if we should default to creating read-only plt entries */
|
/* Define if we should default to creating read-only plt entries */
|
||||||
/* #undef USE_SECUREPLT */
|
/* #undef USE_SECUREPLT */
|
||||||
|
|
||||||
/* Define if we may generate symbols with ELF's STT_COMMON type */
|
|
||||||
/* #undef USE_STT_COMMON */
|
|
||||||
|
|
||||||
/* Enable extensions on AIX 3, Interix. */
|
/* Enable extensions on AIX 3, Interix. */
|
||||||
#ifndef _ALL_SOURCE
|
#ifndef _ALL_SOURCE
|
||||||
# define _ALL_SOURCE 1
|
# define _ALL_SOURCE 1
|
||||||
|
|
@ -359,7 +399,12 @@
|
||||||
|
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "2.23.2"
|
#define VERSION "2.34"
|
||||||
|
|
||||||
|
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||||
|
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||||
|
# define _DARWIN_USE_64_BIT_INODE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||||
/* #undef _FILE_OFFSET_BITS */
|
/* #undef _FILE_OFFSET_BITS */
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
# This file is automatically generated. DO NOT EDIT!
|
# This file is automatically generated. DO NOT EDIT!
|
||||||
# Generated from: NetBSD: mknative-binutils,v 1.9 2013/10/01 15:41:17 skrll Exp
|
# Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp
|
||||||
# Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp
|
# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp
|
||||||
#
|
#
|
||||||
G_libbfd_la_DEPENDENCIES=elf64-ia64.lo elfxx-ia64.lo elf64.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo pei-ia64.lo pepigen.lo cofflink.lo elf64-gen.lo elf32-gen.lo elf32.lo cpu-ia64.lo archive64.lo ofiles
|
G_libbfd_la_DEPENDENCIES=elf64-ia64.lo elfxx-ia64.lo elf64.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo dwarf2.lo pei-ia64.lo pepigen.lo cofflink.lo coffgen.lo elf64-gen.lo elf32-gen.lo elf32.lo plugin.lo cpu-ia64.lo archive64.lo ofiles
|
||||||
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo
|
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coff-bfd.lo compress.lo corefile.lo elf-properties.lo format.lo hash.lo init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo binary.lo ihex.lo srec.lo tekhex.lo verilog.lo
|
||||||
G_DEFS=-DHAVE_CONFIG_H
|
G_DEFS=-DHAVE_CONFIG_H
|
||||||
G_INCLUDES=-I. -I${GNUHOSTDIST}/bfd -I${GNUHOSTDIST}/bfd/../include -DHAVE_bfd_elf64_ia64_little_vec -DHAVE_bfd_elf64_ia64_big_vec -DHAVE_bfd_pei_ia64_vec -DHAVE_bfd_elf64_little_generic_vec -DHAVE_bfd_elf64_big_generic_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -I./../intl
|
G_INCLUDES=
|
||||||
G_TDEFAULTS=-DDEFAULT_VECTOR=bfd_elf64_ia64_little_vec -DSELECT_VECS='&bfd_elf64_ia64_little_vec,&bfd_elf64_ia64_big_vec,&bfd_pei_ia64_vec,&bfd_elf64_little_generic_vec,&bfd_elf64_big_generic_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_ia64_arch'
|
G_TDEFAULTS=-DDEFAULT_VECTOR=ia64_elf64_le_vec -DSELECT_VECS='&ia64_elf64_le_vec,&ia64_elf64_be_vec,&ia64_pei_vec,&elf64_le_vec,&elf64_be_vec,&elf32_le_vec,&elf32_be_vec' -DSELECT_ARCHITECTURES='&bfd_ia64_arch'
|
||||||
|
G_HAVEVECS=-DHAVE_ia64_elf64_le_vec -DHAVE_ia64_elf64_be_vec -DHAVE_ia64_pei_vec -DHAVE_elf64_le_vec -DHAVE_elf64_be_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec
|
||||||
|
|
|
||||||
4046
external/gpl3/binutils/lib/libbfd/arch/m68000/bfd.h
vendored
4046
external/gpl3/binutils/lib/libbfd/arch/m68000/bfd.h
vendored
File diff suppressed because it is too large
Load Diff
|
|
@ -1,8 +1,8 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* generated for m68010--netbsdelf-gcc (NetBSD nb1 20120916) 4.5.4 */
|
/* generated for m68010--netbsdelf-gcc (NetBSD nb3 20190319) 7.4.0 */
|
||||||
|
|
||||||
#ifndef GCC_GENERATED_STDINT_H
|
#ifndef GCC_GENERATED_STDINT_H
|
||||||
#define GCC_GENERATED_STDINT_H 1
|
#define GCC_GENERATED_STDINT_H 1
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,26 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
#define BFD_VERSION_DATE 20130325
|
/* The date below is automatically updated every day by a bot. During
|
||||||
#define BFD_VERSION 223020000
|
development, we include the date in the tools' version strings
|
||||||
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.23.2"
|
(visible in 'ld -v' etc.) because people build binutils from a
|
||||||
|
variety of sources - git, tarballs, distro sources - and we want
|
||||||
|
something that can easily identify the source they used when they
|
||||||
|
report bugs. The bfd version plus date is usually good enough for
|
||||||
|
that purpose.
|
||||||
|
|
||||||
|
During development, this date ends up in libbfd and libopcodes
|
||||||
|
sonames because people naturally expect shared libraries with the
|
||||||
|
same soname to have compatible ABIs. We could bump the bfd version
|
||||||
|
on every ABI change, but that's just another thing contributors and
|
||||||
|
maintainers would need to remember. Instead, it's much easier for
|
||||||
|
all if the soname contains the date. This is not perfect but is
|
||||||
|
good enough.
|
||||||
|
|
||||||
|
In releases, the date is not included in either version strings or
|
||||||
|
sonames. */
|
||||||
|
#define BFD_VERSION_DATE 20200201
|
||||||
|
#define BFD_VERSION 234000000
|
||||||
|
#define BFD_VERSION_STRING "(NetBSD Binutils nb1) " "2.34"
|
||||||
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
#define REPORT_BUGS_TO "<http://www.NetBSD.org/support/send-pr.html>"
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
/* This file is automatically generated. DO NOT EDIT! */
|
/* This file is automatically generated. DO NOT EDIT! */
|
||||||
/* Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp */
|
/* Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp */
|
||||||
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
/* Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp */
|
||||||
|
|
||||||
/* config.h. Generated from config.in by configure. */
|
/* config.h. Generated from config.in by configure. */
|
||||||
/* config.in. Generated from configure.in by autoheader. */
|
/* config.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
/* Check that config.h is #included before system headers
|
/* Check that config.h is #included before system headers
|
||||||
(this works only for glibc, but that should be enough). */
|
(this works only for glibc, but that should be enough). */
|
||||||
|
|
@ -15,6 +15,10 @@
|
||||||
/* Name of host specific core header file to include in elf.c. */
|
/* Name of host specific core header file to include in elf.c. */
|
||||||
/* #undef CORE_HEADER */
|
/* #undef CORE_HEADER */
|
||||||
|
|
||||||
|
/* Define to 1 if you want to enable -z separate-code in ELF linker by
|
||||||
|
default. */
|
||||||
|
#define DEFAULT_LD_Z_SEPARATE_CODE 0
|
||||||
|
|
||||||
/* Define to 1 if translation of program messages to the user's native
|
/* Define to 1 if translation of program messages to the user's native
|
||||||
language is requested. */
|
language is requested. */
|
||||||
#define ENABLE_NLS 1
|
#define ENABLE_NLS 1
|
||||||
|
|
@ -22,6 +26,10 @@
|
||||||
/* Define to 1 if you have the <alloca.h> header file. */
|
/* Define to 1 if you have the <alloca.h> header file. */
|
||||||
/* #undef HAVE_ALLOCA_H */
|
/* #undef HAVE_ALLOCA_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_ASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
/* Define to 1 if you have the declaration of `basename', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_BASENAME 0
|
#define HAVE_DECL_BASENAME 0
|
||||||
|
|
@ -69,10 +77,18 @@
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STPCPY 1
|
#define HAVE_DECL_STPCPY 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `strnlen', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_STRNLEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
|
||||||
*/
|
*/
|
||||||
#define HAVE_DECL_STRSTR 1
|
#define HAVE_DECL_STRSTR 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
|
||||||
|
don't. */
|
||||||
|
#define HAVE_DECL_VASPRINTF 1
|
||||||
|
|
||||||
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
|
||||||
don't. */
|
don't. */
|
||||||
#define HAVE_DECL_VSNPRINTF 1
|
#define HAVE_DECL_VSNPRINTF 1
|
||||||
|
|
@ -96,6 +112,9 @@
|
||||||
/* Define to 1 if you have the `fileno' function. */
|
/* Define to 1 if you have the `fileno' function. */
|
||||||
#define HAVE_FILENO 1
|
#define HAVE_FILENO 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `fls' function. */
|
||||||
|
/* #undef HAVE_FLS */
|
||||||
|
|
||||||
/* Define to 1 if you have the `fopen64' function. */
|
/* Define to 1 if you have the `fopen64' function. */
|
||||||
/* #undef HAVE_FOPEN64 */
|
/* #undef HAVE_FOPEN64 */
|
||||||
|
|
||||||
|
|
@ -117,12 +136,24 @@
|
||||||
/* Define to 1 if you have the `getpagesize' function. */
|
/* Define to 1 if you have the `getpagesize' function. */
|
||||||
#define HAVE_GETPAGESIZE 1
|
#define HAVE_GETPAGESIZE 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the `getrlimit' function. */
|
||||||
|
#define HAVE_GETRLIMIT 1
|
||||||
|
|
||||||
/* Define to 1 if you have the `getuid' function. */
|
/* Define to 1 if you have the `getuid' function. */
|
||||||
#define HAVE_GETUID 1
|
#define HAVE_GETUID 1
|
||||||
|
|
||||||
|
/* Define if your compiler supports hidden visibility. */
|
||||||
|
#define HAVE_HIDDEN 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
#define HAVE_INTTYPES_H 1
|
#define HAVE_INTTYPES_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long double'. */
|
||||||
|
#define HAVE_LONG_DOUBLE 1
|
||||||
|
|
||||||
|
/* Define to 1 if the system has the type `long long'. */
|
||||||
|
#define HAVE_LONG_LONG 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
/* Define if <sys/procfs.h> has lwpstatus_t. */
|
||||||
/* #undef HAVE_LWPSTATUS_T */
|
/* #undef HAVE_LWPSTATUS_T */
|
||||||
|
|
||||||
|
|
@ -236,9 +267,15 @@
|
||||||
*/
|
*/
|
||||||
/* #undef HAVE_SYS_NDIR_H */
|
/* #undef HAVE_SYS_NDIR_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||||
|
#define HAVE_SYS_PARAM_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
/* Define to 1 if you have the <sys/procfs.h> header file. */
|
||||||
/* #undef HAVE_SYS_PROCFS_H */
|
/* #undef HAVE_SYS_PROCFS_H */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/resource.h> header file. */
|
||||||
|
#define HAVE_SYS_RESOURCE_H 1
|
||||||
|
|
||||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
#define HAVE_SYS_STAT_H 1
|
#define HAVE_SYS_STAT_H 1
|
||||||
|
|
||||||
|
|
@ -254,15 +291,18 @@
|
||||||
/* Define to 1 if you have the <unistd.h> header file. */
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
#define HAVE_UNISTD_H 1
|
#define HAVE_UNISTD_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wchar.h> header file. */
|
||||||
|
#define HAVE_WCHAR_H 1
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <wctype.h> header file. */
|
||||||
|
#define HAVE_WCTYPE_H 1
|
||||||
|
|
||||||
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
/* Define if <sys/procfs.h> has win32_pstatus_t. */
|
||||||
/* #undef HAVE_WIN32_PSTATUS_T */
|
/* #undef HAVE_WIN32_PSTATUS_T */
|
||||||
|
|
||||||
/* Define to 1 if you have the <windows.h> header file. */
|
/* Define to 1 if you have the <windows.h> header file. */
|
||||||
/* #undef HAVE_WINDOWS_H */
|
/* #undef HAVE_WINDOWS_H */
|
||||||
|
|
||||||
/* Define to 1 if you have the <zlib.h> header file. */
|
|
||||||
#define HAVE_ZLIB_H 1
|
|
||||||
|
|
||||||
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
||||||
*/
|
*/
|
||||||
#define LT_OBJDIR ".libs/"
|
#define LT_OBJDIR ".libs/"
|
||||||
|
|
@ -274,25 +314,25 @@
|
||||||
#define PACKAGE_BUGREPORT ""
|
#define PACKAGE_BUGREPORT ""
|
||||||
|
|
||||||
/* Define to the full name of this package. */
|
/* Define to the full name of this package. */
|
||||||
#define PACKAGE_NAME ""
|
#define PACKAGE_NAME "bfd"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING ""
|
#define PACKAGE_STRING "bfd 2.34"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME ""
|
#define PACKAGE_TARNAME "bfd"
|
||||||
|
|
||||||
/* Define to the home page for this package. */
|
/* Define to the home page for this package. */
|
||||||
#define PACKAGE_URL ""
|
#define PACKAGE_URL ""
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION ""
|
#define PACKAGE_VERSION "2.34"
|
||||||
|
|
||||||
/* The size of `char', as computed by sizeof. */
|
/* The size of `char', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_CHAR */
|
/* #undef SIZEOF_CHAR */
|
||||||
|
|
||||||
/* The size of `int', as computed by sizeof. */
|
/* The size of `int', as computed by sizeof. */
|
||||||
/* #undef SIZEOF_INT */
|
#define SIZEOF_INT 4
|
||||||
|
|
||||||
/* The size of `long', as computed by sizeof. */
|
/* The size of `long', as computed by sizeof. */
|
||||||
#define SIZEOF_LONG 4
|
#define SIZEOF_LONG 4
|
||||||
|
|
@ -321,6 +361,9 @@
|
||||||
/* Name of host specific header file to include in trad-core.c. */
|
/* Name of host specific header file to include in trad-core.c. */
|
||||||
/* #undef TRAD_HEADER */
|
/* #undef TRAD_HEADER */
|
||||||
|
|
||||||
|
/* Define if 64-bit archives should always be used. */
|
||||||
|
/* #undef USE_64_BIT_ARCHIVE */
|
||||||
|
|
||||||
/* Use b modifier when opening binary files? */
|
/* Use b modifier when opening binary files? */
|
||||||
/* #undef USE_BINARY_FOPEN */
|
/* #undef USE_BINARY_FOPEN */
|
||||||
|
|
||||||
|
|
@ -333,9 +376,6 @@
|
||||||
/* Define if we should default to creating read-only plt entries */
|
/* Define if we should default to creating read-only plt entries */
|
||||||
/* #undef USE_SECUREPLT */
|
/* #undef USE_SECUREPLT */
|
||||||
|
|
||||||
/* Define if we may generate symbols with ELF's STT_COMMON type */
|
|
||||||
/* #undef USE_STT_COMMON */
|
|
||||||
|
|
||||||
/* Enable extensions on AIX 3, Interix. */
|
/* Enable extensions on AIX 3, Interix. */
|
||||||
#ifndef _ALL_SOURCE
|
#ifndef _ALL_SOURCE
|
||||||
# define _ALL_SOURCE 1
|
# define _ALL_SOURCE 1
|
||||||
|
|
@ -359,7 +399,12 @@
|
||||||
|
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "2.23.2"
|
#define VERSION "2.34"
|
||||||
|
|
||||||
|
/* Enable large inode numbers on Mac OS X 10.5. */
|
||||||
|
#ifndef _DARWIN_USE_64_BIT_INODE
|
||||||
|
# define _DARWIN_USE_64_BIT_INODE 1
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||||
/* #undef _FILE_OFFSET_BITS */
|
/* #undef _FILE_OFFSET_BITS */
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
# This file is automatically generated. DO NOT EDIT!
|
# This file is automatically generated. DO NOT EDIT!
|
||||||
# Generated from: NetBSD: mknative-binutils,v 1.8 2011/09/25 04:00:58 christos Exp
|
# Generated from: NetBSD: mknative-binutils,v 1.13 2020/04/04 01:34:53 christos Exp
|
||||||
# Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp
|
# Generated from: NetBSD: mknative.common,v 1.16 2018/04/15 15:13:37 christos Exp
|
||||||
#
|
#
|
||||||
G_libbfd_la_DEPENDENCIES=elf32-m68k.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo m68knetbsd.lo aout32.lo m68k4knetbsd.lo hp300bsd.lo sunos.lo elf32-gen.lo cpu-m68k.lo netbsd-core.lo ofiles
|
G_libbfd_la_DEPENDENCIES=elf32-m68k.lo elf32.lo elf.lo elflink.lo elf-attrs.lo elf-strtab.lo elf-eh-frame.lo dwarf1.lo dwarf2.lo elf32-gen.lo plugin.lo cpu-m68k.lo netbsd-core.lo ofiles
|
||||||
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo merge.lo dwarf2.lo simple.lo compress.lo verilog.lo
|
G_libbfd_la_OBJECTS=archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo coff-bfd.lo compress.lo corefile.lo elf-properties.lo format.lo hash.lo init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo binary.lo ihex.lo srec.lo tekhex.lo verilog.lo
|
||||||
G_DEFS=-DHAVE_CONFIG_H
|
G_DEFS=-DHAVE_CONFIG_H
|
||||||
G_INCLUDES=-DNETBSD_CORE -I. -I${GNUHOSTDIST}/bfd -I${GNUHOSTDIST}/bfd/../include -DHAVE_bfd_elf32_m68k_vec -DHAVE_m68knetbsd_vec -DHAVE_m68k4knetbsd_vec -DHAVE_hp300bsd_vec -DHAVE_sunos_big_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_big_generic_vec -I./../intl
|
G_INCLUDES=
|
||||||
G_TDEFAULTS=-DDEFAULT_VECTOR=bfd_elf32_m68k_vec -DSELECT_VECS='&bfd_elf32_m68k_vec,&m68knetbsd_vec,&m68k4knetbsd_vec,&hp300bsd_vec,&sunos_big_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec' -DSELECT_ARCHITECTURES='&bfd_m68k_arch'
|
G_TDEFAULTS=-DDEFAULT_VECTOR=m68k_elf32_vec -DSELECT_VECS='&m68k_elf32_vec,&elf32_le_vec,&elf32_be_vec' -DSELECT_ARCHITECTURES='&bfd_m68k_arch'
|
||||||
|
G_HAVEVECS=-DHAVE_m68k_elf32_vec -DHAVE_elf32_le_vec -DHAVE_elf32_be_vec
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user