Changeset 4666 for trunk/tools/DailyBuild
- Timestamp:
- Nov 21, 2000, 7:28:02 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/DailyBuild/odin32env.cmd
r4504 r4666 1 /* $Id: odin32env.cmd,v 1.1 0 2000-10-20 17:56:50bird Exp $1 /* $Id: odin32env.cmd,v 1.11 2000-11-21 18:28:02 bird Exp $ 2 2 * 3 3 * Sets the build environment. … … 9 9 */ 10 10 11 parse arg sCompiler 12 11 13 /* 12 14 * To use this script you'll have to adjust some paths to match your local … … 32 34 call DDKBase 0; 33 35 call MSC60 0; 34 call VAC30 0; 36 if (sCompiler = 'watcom') then 37 do /* watcom */ 38 call VAC30 1; 39 call VAC36 1; 40 call Watcom 0; 41 end 42 else if (sCompiler = 'vac36') then 43 do /* vac36 */ 44 call VAC30 1; 45 call Watcom 1; 46 call NetQOS2 0; 47 call VAC36 0; 48 end 49 else 50 do /* default is vac30 */ 51 call VAC36 1; 52 call Watcom 1; 53 call VAC30 0; 54 end 35 55 call Toolkit40 0; 36 56 call EnvVar_Set 0, 'DEBUG', '1' … … 161 181 */ 162 182 NetQOS2: procedure 163 sNetQ11Main = 'd:\knut\tools\netqos2'; 183 parse arg fRM 184 sNetQ11Main = 'e:\apps\imnnq'; 164 185 call EnvVar_Set fRM, 'netq11main', sNetQ11Main 186 call EnvVar_AddFront fRM, 'beginlibpath', sNetQ11Main';' 165 187 call EnvVar_AddFront fRM, 'path', sNetQ11Main';' 166 188 call EnvVar_AddFront fRM, 'dpath', sNetQ11Main';' 167 call EnvVar_Add Front fRM, 'beginlibpath', sNetQ11Main';'189 call EnvVar_AddEnd fRM, 'nlspath', sNetQ11Main'\%N;' 168 190 call EnvVar_Set fRM, 'imndatasrv', sNetQ11Main'\DATA' 169 191 call EnvVar_Set fRM, 'imndatacl', sNetQ11Main'\DATA' … … 176 198 call EnvVar_Set fRM, 'imqconfigsrv', sNetQ11Main'\instance' 177 199 call EnvVar_Set fRM, 'imqconfigcl', sNetQ11Main'\instance\dbcshelp' 200 call EnvVar_Set fRM, 'lite_locales', sNetQ11Main 178 201 return 0; 179 202 … … 379 402 * IBM C/C++ Compiler and Tools Version 3.6.5 main directory. 380 403 */ 381 sCxxMain = ' d:\knut\tools\ibmcxxo';404 sCxxMain = 'e:\apps\ibmcxxo'; 382 405 383 406 call EnvVar_Set fRM, 'cxxmain', sCxxMain; 384 407 408 call EnvVar_AddFront fRM, 'beginlibpath', sCxxMain'\dll;'sCxxMain'\runtime;' 409 call EnvVar_AddFront fRM, 'dpath', sCxxMain'\help;'sCxxMain'\local;' 385 410 call EnvVar_AddFront fRM, 'path', sCxxMain'\bin;' 386 call EnvVar_AddFront fRM, ' dpath', sCxxMain'\local;'sCxxMain'\help;'387 call EnvVar_AddFront fRM, ' beginlibpath', sCxxMain'\dll;'sCxxMain'\runtime;'411 call EnvVar_AddFront fRM, 'help', sCxxMain'\help;' 412 call EnvVar_AddFront fRM, 'locpath', sCxxMain'\locale;' 388 413 call EnvVar_AddFront fRM, 'nlspath', sCxxMain'\msg\%N;' 389 414 call EnvVar_AddFront fRM, 'include', sCxxMain'\include;' 390 415 call EnvVar_AddFront fRM, 'lib', sCxxMain'\lib;' 391 call EnvVar_AddFront fRM, 'ipfc', sCxxMain'\ ipfc;'416 call EnvVar_AddFront fRM, 'ipfc', sCxxMain'\bin;' 392 417 call EnvVar_Set fRM, 'LANG', 'en_us' 393 418 call EnvVar_Set fRM, 'CPP_DBG_LANG', 'CPP' 419 return 0; 420 421 /* 422 * Watcom C/C++ 11.0 423 */ 424 Watcom: procedure 425 parse arg fRM 426 427 /* 428 * Watcom C/C++ 11.0 Main directory. 429 */ 430 sWatcom = 'e:\apps\Watcom'; 431 432 call EnvVar_Set fRM, 'watcom', sWatcom; 433 434 call EnvVar_Set fRM, 'edpath', sWatcom'\eddat' 435 call EnvVar_AddFront fRM, 'beginlibpath', sWatcom'\binp\dll;' 436 call EnvVar_AddFront fRM, 'path', sWatcom'\binp;'sWatcom'\binw;' 437 call EnvVar_AddFront fRM, 'help', sWatcom'\binp\help;' 438 call EnvVar_AddFront fRM, 'bookshelf', sWatcom'\binp\help;' 439 call EnvVar_AddFront fRM, 'include', sWatcom'\h;' 440 /*call EnvVar_AddFront fRM, 'include', sWatcom'\h\os2;'sWatcom'\h;'*/ /* h\os2 ? */ 441 /* 442 'detach' sWatcom'\binp\batserv.exe' 443 'detach' sWatcom'\binp\nmpbind.exe' 444 */ 394 445 return 0; 395 446
Note:
See TracChangeset
for help on using the changeset viewer.