e43d48ccc3
* bfd-in.h: (BFD_VERSION): Substitute bfd_version. (BFD_VERSION_DATE): Define. (BFD_VERSION_STRING): Define. * configure.in: AC_SUBST bfd_version, bfd_version_date and bfd_version_string. (AC_OUTPUT <bfd-in3.h>): Depend on version.h. * bfd-in2.h: Regenerate. * configure: Regenerate. * Makefile.am: Run "make dep-am" * Makefile.in: Regenerate. * bfd-in.h: Include "symcat.h". (CONCAT4): Redefine as for old CAT4. * aout-arm.c: Use equivalent CONCAT* macro in place of CAT* macros. Add warning regarding whitespace. * aout-cris.c: Likewise. * aout-ns32k.c: Likewise. * aout-sparcle.c: Likewise. * aout-tic30.c: Likewise. * aout0.c: Likewise. * armnetbsd.c: Likewise. * demo64.c: Likewise. * elf-bfd.h: Likewise. * gen-aout.c: Likewise. * host-aout.c: Likewise. * hp300bsd.c: Likewise. * hp300hpux.c: Likewise. * i386aout.c: Likewise. * i386bsd.c: Likewise. * i386dynix.c: Likewise. * i386freebsd.c: Likewise. * i386linux.c: Likewise. * i386lynx.c: Likewise. * i386mach3.c: Likewise. * i386netbsd.c: Likewise. * libaout.h: Likewise. * m68k4knetbsd.c: Likewise. * m68klinux.c: Likewise. * m68klynx.c: Likewise. * m68knetbsd.c: Likewise. * m88kmach3.c: Likewise. * mipsbsd.c: Likewise. * newsos3.c: Likewise. * ns32knetbsd.c: Likewise. * pc532-mach.c: Likewise. * pdp11.c: Likewise. * riscix.c: Likewise. * sparclinux.c: Likewise. * sparclynx.c: Likewise. * sparcnetbsd.c: Likewise. * sunos.c: Likewise. * targets.c: Likewise. * vaxnetbsd.c: Likewise. * vms-hdr.c: Likewise.
106 lines
3.1 KiB
C
106 lines
3.1 KiB
C
/* Generate parameters for an a.out system.
|
|
Copyright 1990, 1991, 1992, 1993, 1994, 1995, 2001
|
|
Free Software Foundation, Inc.
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
|
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 2 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, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
#include "/usr/include/a.out.h"
|
|
#include <stdio.h>
|
|
|
|
int
|
|
main (argc, argv)
|
|
int argc; char** argv;
|
|
{
|
|
struct exec my_exec;
|
|
int page_size;
|
|
char *target = "unknown", *arch = "unknown";
|
|
FILE *file = fopen("gen-aout", "r");
|
|
|
|
if (file == NULL) {
|
|
fprintf(stderr, "Cannot open gen-aout!\n");
|
|
return -1;
|
|
}
|
|
if (fread(&my_exec, sizeof(struct exec), 1, file) != 1) {
|
|
fprintf(stderr, "Cannot read gen-aout!\n");
|
|
return -1;
|
|
}
|
|
|
|
target = argv[1];
|
|
if (target == NULL) {
|
|
fprintf(stderr, "Usage: gen-aout target_name\n");
|
|
exit (1);
|
|
}
|
|
|
|
#ifdef N_TXTOFF
|
|
page_size = N_TXTOFF(my_exec);
|
|
if (page_size == 0)
|
|
printf("#define N_HEADER_IN_TEXT(x) 1\n");
|
|
else
|
|
printf("#define N_HEADER_IN_TEXT(x) 0\n");
|
|
#endif
|
|
|
|
printf("#define BYTES_IN_WORD %d\n", sizeof (int));
|
|
if (my_exec.a_entry == 0) {
|
|
printf("#define ENTRY_CAN_BE_ZERO\n");
|
|
printf("#define N_SHARED_LIB(x) 0 /* Avoids warning */\n");
|
|
}
|
|
else {
|
|
printf("/*#define ENTRY_CAN_BE_ZERO*/\n");
|
|
printf("/*#define N_SHARED_LIB(x) 0*/\n");
|
|
}
|
|
|
|
printf("#define TEXT_START_ADDR %d\n", my_exec.a_entry);
|
|
|
|
#ifdef PAGSIZ
|
|
if (page_size == 0)
|
|
page_size = PAGSIZ;
|
|
#endif
|
|
if (page_size != 0)
|
|
printf("#define TARGET_PAGE_SIZE %d\n", page_size);
|
|
else
|
|
printf("/* #define TARGET_PAGE_SIZE ??? */\n");
|
|
printf("#define SEGMENT_SIZE TARGET_PAGE_SIZE\n");
|
|
|
|
#ifdef vax
|
|
arch = "vax";
|
|
#endif
|
|
#ifdef m68k
|
|
arch = "m68k";
|
|
#endif
|
|
if (arch[0] == '1')
|
|
{
|
|
fprintf (stderr, _("warning: preprocessor substituted architecture name inside string;"));
|
|
fprintf (stderr, _(" fix DEFAULT_ARCH in the output file yourself\n"));
|
|
arch = "unknown";
|
|
}
|
|
printf("#define DEFAULT_ARCH bfd_arch_%s\n\n", arch);
|
|
|
|
printf("/* Do not \"beautify\" the CONCAT* macro args. Traditional C will not");
|
|
printf(" remove whitespace added here, and thus will fail to concatenate");
|
|
printf(" the tokens. */");
|
|
printf("\n#define MY(OP) CONCAT2 (%s_,OP)\n\n", target);
|
|
printf("#define TARGETNAME \"a.out-%s\"\n\n", target);
|
|
|
|
printf("#include \"bfd.h\"\n");
|
|
printf("#include \"sysdep.h\"\n");
|
|
printf("#include \"libbfd.h\"\n");
|
|
printf("#include \"libaout.h\"\n");
|
|
printf("\n#include \"aout-target.h\"\n");
|
|
|
|
return 0;
|
|
}
|