Changeset 10500 for trunk/tools
- Timestamp:
- Mar 9, 2004, 4:24:00 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/bin/buildenv.cmd
r10247 r10500 1 /* $Id: buildenv.cmd,v 1.5 1 2003-09-14 18:50:59bird Exp $1 /* $Id: buildenv.cmd,v 1.52 2004-03-09 15:24:00 bird Exp $ 2 2 * 3 3 * This is the master tools environment script. It contains environment … … 27 27 * Version 28 28 */ 29 sVersion = '1.1. 0 [2003-09-14]';29 sVersion = '1.1.1 [2004-03-08]'; 30 30 31 31 /* … … 2139 2139 sGCCBack = translate(sGCC, '\', '/'); 2140 2140 sGCCForw = translate(sGCC, '/', '\'); 2141 call EnvSet fRM, 'PATH_ EMXPGCC',sGCCBack;2142 call EnvSet fRM, 'CCENV', ' EMX'2143 call EnvSet fRM, 'BUILD_ENV', ' EMX'2141 call EnvSet fRM, 'PATH_IGCC', sGCCBack; 2142 call EnvSet fRM, 'CCENV', 'IGCC' 2143 call EnvSet fRM, 'BUILD_ENV', 'IGCC' 2144 2144 call EnvSet fRM, 'BUILD_PLATFORM', 'OS2' 2145 2145 … … 2174 2174 | \CfgVerifyFile(sGCCBack'\bin\readelf.exe', fQuiet), 2175 2175 | \CfgVerifyFile(sGCCBack'\bin\emxomf.exe', fQuiet), 2176 | \CfgVerifyFile(sGCCBack'\lib\opcode2B.dll', fQuiet), 2176 | \CfgVerifyFile(sGCCBack'\bin\ilink.exe', fQuiet), 2177 | \CfgVerifyFile(sGCCBack'\lib\bfd2E.dll', fQuiet), 2177 2178 | \CfgVerifyFile(sGCCBack'\lib\gcc'sVerShrt'.dll', fQuiet), 2178 2179 | \CfgVerifyFile(sGCCBack'\lib\libiberty.a', fQuiet), 2179 2180 | \CfgVerifyFile(sGCCBack'\lib\libiberty.lib', fQuiet), 2180 | \CfgVerifyFile(sGCCBack'\lib\opcode2 B.dll', fQuiet),2181 | \CfgVerifyFile(sGCCBack'\lib\opcode2E.dll', fQuiet), 2181 2182 | \CfgVerifyFile(sGCCBack'\lib\libopcodes.a', fQuiet), 2182 2183 | \CfgVerifyFile(sGCCBack'\lib\libopcodes.lib', fQuiet), … … 2200 2201 if (rc = 0) then 2201 2202 do 2202 sVerAS = '2.1 1.2';2203 sVerAS = '2.14'; 2203 2204 rc = CheckCmdOutput('as --version', 0, fQuiet, 'GNU assembler 'sVerAS); 2204 2205 end 2206 if (rc = 0) then 2207 rc = CheckCmdOutput('ilink /?', 0, fQuiet, 'IBM(R) Linker for OS/2(R), Version 5.0'); 2208 2205 2209 return rc; 2206 2210
Note:
See TracChangeset
for help on using the changeset viewer.