Changeset 8219 for trunk/tools
- Timestamp:
- Apr 10, 2002, 5:20:42 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/bin/buildenv.cmd
r8215 r8219 1 /* $Id: buildenv.cmd,v 1. 2 2002-04-07 23:01:53bird Exp $1 /* $Id: buildenv.cmd,v 1.3 2002-04-10 15:20:42 bird Exp $ 2 2 * 3 3 * This is the master environment script. It contains settings for many … … 90 90 when (sEnv.i = 'emxpgcc') then rc = EMXPGCC(fRM); 91 91 when (sEnv.i = 'icatgam') then rc = ICATGam(fRM); 92 when (sEnv.i = 'icatgam406rc1')then rc = ICATGam406RC1(fRM); 92 93 when (sEnv.i = 'icatpe') then rc = ICATPe(fRM); 93 94 when (sEnv.i = 'ida') then rc = IDA414(fRM); … … 96 97 when (sEnv.i = 'ida40') then rc = IDA40(fRM); 97 98 when (sEnv.i = 'idasdk') then rc = IDASDK(fRM); 98 when (sEnv.i = 'msc60') then rc = MSC60(fRM); 99 when (sEnv.i = 'mscv6') then rc = MSCV6(fRM); 100 when (sEnv.i = 'msc60') then rc = MSCV6(fRM); 99 101 when (sEnv.i = 'mysql') then rc = mySQL(fRM); 100 102 when (sEnv.i = 'netqos2') then rc = NetQOS2(fRM); … … 180 182 when (sProgram = 'db2v52') then return 'f:\sqllib52'; 181 183 when (sProgram = 'icatgam') then return 'f:\icatos2'; 184 when (sProgram = 'icatgam406rc1') then return 'f:\icatos2.4.0.6.rc1'; 182 185 when (sProgram = 'icatpe') then return 'f:\icatpe'; 183 186 when (sProgram = 'ida38') then return 'f:\ida38'; … … 186 189 when (sProgram = 'idasdk') then return 'f:\idasdk'; 187 190 when (sProgram = 'ddkbase') then return 'f:\ddk\base'; 188 when (sProgram = 'msc 60') then return 'f:\ddktools\toolkits\msc60';191 when (sProgram = 'mscv6') then return 'f:\ddktools\toolkits\msc60'; 189 192 when (sProgram = 'mysql') then return 'f:\mysql2'; 190 193 when (sProgram = 'netqos2') then return 'f:\netqos2'; … … 346 349 347 350 /* 351 * ICAT Debugger 352 */ 353 ICATGam406RC1: procedure 354 parse arg fRM 355 sPathICAT = QueryPath('icatgam406rc1'); 356 call EnvVar_Set fRm, 'PATH_ICATGAM', sPathICAT; 357 call EnvVar_AddFront fRm, 'beginlibpath',sPathICAT'\dll;' 358 call EnvVar_AddFront fRm, 'path', sPathICAT'\bin;' 359 call EnvVar_AddFront fRm, 'dpath', sPathICAT'\help;' 360 call EnvVar_AddFront fRm, 'help', sPathICAT'\help;' 361 return 0; 362 363 364 365 /* 348 366 * ICAT Debugger for PE images. 349 367 */ … … 448 466 * Microsoft C v6.0a 449 467 */ 450 MSC 60: procedure468 MSCV6: procedure 451 469 parse arg fRM 452 470 … … 454 472 * Microsoft C v6.0a main directory. 455 473 */ 456 sPathMSC = QueryPath('msc 60');474 sPathMSC = QueryPath('mscv6'); 457 475 call EnvVar_Set fRM, 'BUILD_ENV', 'MSCV6' 458 476 call EnvVar_Set fRM, 'BUILD_PLATFORM', 'OS2'
Note:
See TracChangeset
for help on using the changeset viewer.