Changeset 67
- Timestamp:
- Oct 23, 2019, 5:54:54 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/mapsymw.pl
r63 r67 1 1 #!perl -w 2 # mapsymw - mapsym wrapper Watcom map files 2 # mapsymw - mapsym wrapper form OpenWatcom map files 3 # Generate IBM format map file and run mapsym 4 # Writes IBM format map file to OpenWatcom map file directory 3 5 4 6 # Copyright (c) 2007-2019 Steven Levine and Associates, Inc. … … 11 13 # 2007-07-02 SHL Baseline 12 14 # 2008-12-14 SHL Ensure symbols sorted by value - some apps care 13 # 2010-05-03 SHL Comments14 # 2010-06-14 SHL Avoid missing C++ symbols15 15 # 2012-03-19 SHL Segment names must be uppercase for pmdf 16 16 # 2014-06-13 SHL Correct typos … … 19 19 # 2019-03-02 SHL More C++ logic 20 20 # 2019-03-03 SHL Rework dup logic and sym length limiting 21 # 2019-03-22 SHL Disable debug code 22 # 2019-04-09 SHL Comments 21 23 22 24 # mapsym requires each segment to have at least 1 symbol … … 194 196 195 197 # Convert C++ symbols to something mapsym will accept 196 warn "\n$sym\n";198 # warn "\n$sym\n"; 197 199 198 200 $_ = $sym; … … 222 224 $_ = substr($_, 0, 63) if length($_) > 63; # limit 223 225 224 warn "\n$_\n";226 # warn "\n$_\n"; 225 227 226 228 # Prune some libc symbols to avoid mapsym overflows
Note:
See TracChangeset
for help on using the changeset viewer.