aux-coff.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* Modifications of internal.h and m68k.h needed by A/UX
  2. Copyright (C) 2001-2015 Free Software Foundation, Inc.
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation; either version 3 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
  14. MA 02110-1301, USA.
  15. Suggested by Ian Lance Taylor <ian@cygnus.com> */
  16. #ifndef GNU_COFF_AUX_H
  17. #define GNU_COFF_AUX_H 1
  18. #include "coff/internal.h"
  19. #include "coff/m68k.h"
  20. /* Section contains 64-byte padded pathnames of shared libraries */
  21. #undef STYP_LIB
  22. #define STYP_LIB 0x200
  23. /* Section contains shared library initialization code */
  24. #undef STYP_INIT
  25. #define STYP_INIT 0x400
  26. /* Section contains .ident information */
  27. #undef STYP_IDENT
  28. #define STYP_IDENT 0x800
  29. /* Section types used by bfd and gas not defined (directly) by A/UX */
  30. #undef STYP_OVER
  31. #define STYP_OVER 0
  32. #undef STYP_INFO
  33. #define STYP_INFO STYP_IDENT
  34. /* Traditional name of the section tagged with STYP_LIB */
  35. #define _LIB ".lib"
  36. #endif /* GNU_COFF_AUX_H */