Changeset 956
- Timestamp:
- Aug 10, 2011, 7:00:44 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/mkspecs/os2-g++/runmapsym.cmd
r954 r956 8 8 '@echo off' 9 9 10 parse arg aMapSymEXE aMapFile aSymFile 10 if (RxFuncQuery('SysLoadFuncs')) then do 11 call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs' 12 call SysLoadFuncs 13 end 11 14 12 if (aMapSymEXE == '' | aMapFile == '' | aSymFile == '') then do 15 parse arg aArgs 16 call TokenizeString aArgs, 'G.!args' 17 18 if (G.!args.0 < 3) then do 13 19 say "Usage: runmapsym <mapsym_cmd> <map_file> <sym_file>" 14 20 exit 255 15 21 end 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 16 44 17 45 mapFile = stream(aMapFile, 'C', 'QUERY EXISTS') … … 20 48 exit 255 21 49 end 22 23 curDir = directory()24 50 25 51 symDir = filespec('D', aSymFile)||filespec('P', aSymFile) … … 34 60 symFile = fileSpec('N', aSymFile) 35 61 36 'call' aMapSymExe mapFile62 'call' apSymExe mapFile 37 63 38 64 if (rc \== 0) then do … … 57 83 58 84 exit rc 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
Note:
See TracChangeset
for help on using the changeset viewer.