Changeset 1672
- Timestamp:
- Nov 30, 2004, 10:35:11 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/libgcc_d.awk
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1671 r1672 3 3 4 4 BEGIN{ 5 # if (ARGC != 1)5 # if (ARGC != 3) 6 6 # { 7 # print "Usage: libgcc_d.awk [libcXY.def]"7 # print "Usage: libgcc_d.awk <libcXY.def> <libc.def>"; 8 8 # exit 1; 9 9 # } 10 10 print "; Auto-generated file, DO NOT EDIT!!! (see libgcc_d.awk) */" 11 in_exports = 0 12 in_libgcc = 0 11 in_exports = 0; 12 in_libgcc = 0; 13 done_library = 0; 13 14 } 14 15 15 /^LIBRARY .*/ { print $0; }16 /^LIBRARY .*/ { print $0; done_library = 1; } 16 17 17 18 /^EXPORTS$/ { 19 if (!done_library) 20 { 21 print "No LIBRARY statement in file input file(s)."; 22 exit 1; 23 } 18 24 in_exports = 1; 19 25 print "EXPORTS"; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.