Changeset 609 for branches/GNU/src/binutils/bfd/gen-aout.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/bfd/gen-aout.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* Generate parameters for an a.out system. 2 Copyright 1990, 1991, 1992, 1993, 1994, 1995 2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 2001 3 3 Free Software Foundation, Inc. 4 4 … … 21 21 #include "/usr/include/a.out.h" 22 22 #include <stdio.h> 23 24 #ifndef _ 25 #define _(X) X 26 #endif 23 27 24 28 int … … 88 92 arch = "unknown"; 89 93 } 90 printf("#define DEFAULT_ARCH bfd_arch_%s\n ", arch);94 printf("#define DEFAULT_ARCH bfd_arch_%s\n\n", arch); 91 95 92 printf("\n#define MY(OP) CAT(%s_,OP)\n", target); 96 printf("/* Do not \"beautify\" the CONCAT* macro args. Traditional C will not"); 97 printf(" remove whitespace added here, and thus will fail to concatenate"); 98 printf(" the tokens. */"); 99 printf("\n#define MY(OP) CONCAT2 (%s_,OP)\n\n", target); 93 100 printf("#define TARGETNAME \"a.out-%s\"\n\n", target); 94 101 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.