OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-7.1/] [bfd/] [gen-aout.c] - Diff between revs 834 and 842

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 834 Rev 842
/* Generate parameters for an a.out system.
/* Generate parameters for an a.out system.
   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 2001, 2002, 2005, 2007
   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 2001, 2002, 2005, 2007
   Free Software Foundation, Inc.
   Free Software Foundation, Inc.
 
 
   This file is part of BFD, the Binary File Descriptor library.
   This file is part of BFD, the Binary File Descriptor library.
 
 
   This program is free software; you can redistribute it and/or modify
   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
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
   MA 02110-1301, USA.  */
   MA 02110-1301, USA.  */
 
 
#include "/usr/include/a.out.h"
#include "/usr/include/a.out.h"
#include <stdio.h>
#include <stdio.h>
 
 
#ifndef _
#ifndef _
#define _(X) X
#define _(X) X
#endif
#endif
 
 
int
int
main (argc, argv)
main (argc, argv)
     int argc; char** argv;
     int argc; char** argv;
{
{
  struct exec my_exec;
  struct exec my_exec;
  int page_size;
  int page_size;
  char *target = "unknown", *arch = "unknown";
  char *target = "unknown", *arch = "unknown";
  FILE *file = fopen("gen-aout", "r");
  FILE *file = fopen("gen-aout", "r");
 
 
  if (file == NULL) {
  if (file == NULL) {
      fprintf(stderr, "Cannot open gen-aout!\n");
      fprintf(stderr, "Cannot open gen-aout!\n");
      return -1;
      return -1;
  }
  }
  if (fread(&my_exec, sizeof(struct exec), 1, file) != 1) {
  if (fread(&my_exec, sizeof(struct exec), 1, file) != 1) {
      fprintf(stderr, "Cannot read gen-aout!\n");
      fprintf(stderr, "Cannot read gen-aout!\n");
      return -1;
      return -1;
  }
  }
 
 
  target = argv[1];
  target = argv[1];
  if (target == NULL) {
  if (target == NULL) {
      fprintf(stderr, "Usage: gen-aout target_name\n");
      fprintf(stderr, "Usage: gen-aout target_name\n");
      exit (1);
      exit (1);
  }
  }
 
 
#ifdef N_TXTOFF
#ifdef N_TXTOFF
  page_size = N_TXTOFF(my_exec);
  page_size = N_TXTOFF(my_exec);
  if (page_size == 0)
  if (page_size == 0)
    printf("#define N_HEADER_IN_TEXT(x) 1\n");
    printf("#define N_HEADER_IN_TEXT(x) 1\n");
  else
  else
    printf("#define N_HEADER_IN_TEXT(x) 0\n");
    printf("#define N_HEADER_IN_TEXT(x) 0\n");
#endif
#endif
 
 
  printf("#define BYTES_IN_WORD %d\n", sizeof (int));
  printf("#define BYTES_IN_WORD %d\n", sizeof (int));
  if (my_exec.a_entry == 0) {
  if (my_exec.a_entry == 0) {
      printf("#define ENTRY_CAN_BE_ZERO\n");
      printf("#define ENTRY_CAN_BE_ZERO\n");
      printf("#define N_SHARED_LIB(x) 0 /* Avoids warning */\n");
      printf("#define N_SHARED_LIB(x) 0 /* Avoids warning */\n");
  }
  }
  else {
  else {
      printf("/*#define ENTRY_CAN_BE_ZERO*/\n");
      printf("/*#define ENTRY_CAN_BE_ZERO*/\n");
      printf("/*#define N_SHARED_LIB(x) 0*/\n");
      printf("/*#define N_SHARED_LIB(x) 0*/\n");
  }
  }
 
 
  printf("#define TEXT_START_ADDR %d\n", my_exec.a_entry);
  printf("#define TEXT_START_ADDR %d\n", my_exec.a_entry);
 
 
#ifdef PAGSIZ
#ifdef PAGSIZ
  if (page_size == 0)
  if (page_size == 0)
    page_size = PAGSIZ;
    page_size = PAGSIZ;
#endif
#endif
  if (page_size != 0)
  if (page_size != 0)
    printf("#define TARGET_PAGE_SIZE %d\n", page_size);
    printf("#define TARGET_PAGE_SIZE %d\n", page_size);
  else
  else
    printf("/* #define TARGET_PAGE_SIZE ??? */\n");
    printf("/* #define TARGET_PAGE_SIZE ??? */\n");
  printf("#define SEGMENT_SIZE TARGET_PAGE_SIZE\n");
  printf("#define SEGMENT_SIZE TARGET_PAGE_SIZE\n");
 
 
#ifdef vax
#ifdef vax
  arch = "vax";
  arch = "vax";
#endif
#endif
#ifdef m68k
#ifdef m68k
  arch = "m68k";
  arch = "m68k";
#endif
#endif
  if (arch[0] == '1')
  if (arch[0] == '1')
    {
    {
      fprintf (stderr, _("warning: preprocessor substituted architecture name inside string;"));
      fprintf (stderr, _("warning: preprocessor substituted architecture name inside string;"));
      fprintf (stderr, _("         fix DEFAULT_ARCH in the output file yourself\n"));
      fprintf (stderr, _("         fix DEFAULT_ARCH in the output file yourself\n"));
      arch = "unknown";
      arch = "unknown";
    }
    }
  printf("#define DEFAULT_ARCH bfd_arch_%s\n\n", arch);
  printf("#define DEFAULT_ARCH bfd_arch_%s\n\n", arch);
 
 
  printf("/* Do not \"beautify\" the CONCAT* macro args.  Traditional C will not");
  printf("/* Do not \"beautify\" the CONCAT* macro args.  Traditional C will not");
  printf("   remove whitespace added here, and thus will fail to concatenate");
  printf("   remove whitespace added here, and thus will fail to concatenate");
  printf("   the tokens.  */");
  printf("   the tokens.  */");
  printf("\n#define MY(OP) CONCAT2 (%s_,OP)\n\n", target);
  printf("\n#define MY(OP) CONCAT2 (%s_,OP)\n\n", target);
  printf("#define TARGETNAME \"a.out-%s\"\n\n", target);
  printf("#define TARGETNAME \"a.out-%s\"\n\n", target);
 
 
  printf("#include \"sysdep.h\"\n");
  printf("#include \"sysdep.h\"\n");
  printf("#include \"bfd.h\"\n");
  printf("#include \"bfd.h\"\n");
  printf("#include \"libbfd.h\"\n");
  printf("#include \"libbfd.h\"\n");
  printf("#include \"libaout.h\"\n");
  printf("#include \"libaout.h\"\n");
  printf("\n#include \"aout-target.h\"\n");
  printf("\n#include \"aout-target.h\"\n");
 
 
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.