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

Subversion Repositories openrisc_me

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /openrisc/trunk/gnu-src/gdb-6.8/include/aout
    from Rev 157 to Rev 225
    Reverse comparison

Rev 157 → Rev 225

/stab.def
53,6 → 53,10
/* Solaris2: Read-only data symbols. */
__define_stab (N_ROSYM, 0x2c, "ROSYM")
 
/* MacOS X:
The beginning of a relocatable function block - including stabs. */
__define_stab (N_BNSYM, 0x2e, "BNSYM")
 
/* Global symbol in Pascal.
Supposedly the value is its line number; I'm skeptical. */
__define_stab (N_PC, 0x30, "PC")
106,6 → 110,9
/* New in Solaris2. Function start/body/end line numbers. */
__define_stab(N_FLINE, 0x4C, "FLINE")
 
/* MacOS X: This tells the end of a relocatable function + debugging info. */
__define_stab(N_ENSYM, 0x4E, "ENSYM")
 
/* THE FOLLOWING TWO STAB VALUES CONFLICT. Happily, one is for Modula-2
and one is for C++. Still,... */
/* GNU C++ exception variable. Name is variable name. */
136,6 → 143,10
 
__define_stab (N_SO, 0x64, "SO")
 
/* Apple: This is the stab that associated the .o file with the
N_SO stab, in the case where debug info is mostly stored in the .o file. */
__define_stab (N_OSO, 0x66, "OSO")
 
/* SunPro F77: Name of alias. */
__define_stab (N_ALIAS, 0x6c, "ALIAS")
 
/ChangeLog
1,3 → 1,15
2008-08-28 Tristan Gingold <gingold@adacore.com>
 
* stab.def: Add BNSYM, ENSYM, OSO for darwin.
 
2008-03-27 Cary Coutant <ccoutant@google.com>
 
* ar.h (ARMAGT): New magic string for thin archives.
 
2005-08-18 Alan Modra <amodra@bigpond.net.au>
 
* encap.h: Remove a29k support.
 
2005-05-10 Nick Clifton <nickc@redhat.com>
 
* Update the address and phone number of the FSF organization in
/ar.h
1,6 → 1,6
/* archive file definition for GNU software
 
Copyright 2001 Free Software Foundation, Inc.
Copyright 2001, 2008 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
26,8 → 26,9
characters, as allowed by ANSI. '\012' has a fixed value, and remains
compatible with existing BSDish archives. */
 
#define ARMAG "!<arch>\012" /* For COFF and a.out archives */
#define ARMAGB "!<bout>\012" /* For b.out archives */
#define ARMAG "!<arch>\012" /* For COFF and a.out archives. */
#define ARMAGB "!<bout>\012" /* For b.out archives. */
#define ARMAGT "!<thin>\012" /* For thin archives. */
#define SARMAG 8
#define ARFMAG "`\012"
 
39,14 → 40,15
 
#define ARMAP_TIME_OFFSET 60
 
struct ar_hdr {
char ar_name[16]; /* name of this member */
char ar_date[12]; /* file mtime */
char ar_uid[6]; /* owner uid; printed as decimal */
char ar_gid[6]; /* owner gid; printed as decimal */
char ar_mode[8]; /* file mode, printed as octal */
char ar_size[10]; /* file size, printed as decimal */
char ar_fmag[2]; /* should contain ARFMAG */
struct ar_hdr
{
char ar_name[16]; /* Name of this member. */
char ar_date[12]; /* File mtime. */
char ar_uid[6]; /* Owner uid; printed as decimal. */
char ar_gid[6]; /* Owner gid; printed as decimal. */
char ar_mode[8]; /* File mode, printed as octal. */
char ar_size[10]; /* File size, printed as decimal. */
char ar_fmag[2]; /* Should contain ARFMAG. */
};
 
#endif /* __GNU_AR_H__ */

powered by: WebSVN 2.1.0

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