Changeset 9695 for trunk/tools


Ignore:
Timestamp:
Jan 20, 2003, 11:15:58 PM (23 years ago)
Author:
bird
Message:

Added new gcc 3.x setup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/bin/buildenv.cmd

    r9527 r9695  
    1 /* $Id: buildenv.cmd,v 1.40 2002-12-18 16:45:19 bird Exp $
     1/* $Id: buildenv.cmd,v 1.41 2003-01-20 22:15:58 bird Exp $
    22 *
    33 * This is the master tools environment script. It contains environment
     
    2727     * Version
    2828     */
    29     sVersion = '1.0.12 [2002-12-18]';
     29    sVersion = '1.0.14 [2003-01-20]';
    3030
    3131    /*
     
    839839        aPath.i.sPId = 'freetypeemx';               aPath.i.sPath = 'f:\Freetype\v1.3.1-emx\emx';   i = i + 1;
    840840        aPath.i.sPId = 'gcc302';                    aPath.i.sPath = 'f:\gcc302beta';                i = i + 1;
    841         aPath.i.sPId = 'gcc303';                    aPath.i.sPath = 'f:\gcc303beta';                i = i + 1;
     841        aPath.i.sPId = 'gcc303';                    aPath.i.sPath = 'f:\gcc\v3.0.3beta\emx';        i = i + 1;
    842842        aPath.i.sPId = 'icatgam';                   aPath.i.sPath = 'f:\icatos2';                   i = i + 1;
    843843        aPath.i.sPId = 'icatgam406rc1';             aPath.i.sPath = 'f:\icatos2.4.0.6.rc1';         i = i + 1;
     
    19971997
    19981998    call EnvAddFront fRM, 'BEGINLIBPATH',       sGCCBack'\dll;'
    1999     call EnvAddFront fRM, 'PATH',               sGCCBack'\bin;'
     1999    call EnvAddFront fRM, 'PATH',               sGCCBack'\bin.new;'sGCCBack'\bin;'
    20002000    call EnvAddFront fRM, 'DPATH',              sGCCBack'\book;'
    20012001    call EnvAddFront fRM, 'BOOKSHELF',          sGCCBack'\book;'
     
    20132013     * Verify.
    20142014     */
    2015     if (pos('verify', sOperation) <= 0) then
    2016         return 0;
    2017     if (    \CfgVerifyFile(sGCCBack'\bin\gcc.exe', fQuiet),
    2018         |   \CfgVerifyFile(sGCCBack'\bin\g++.exe', fQuiet),
    2019         |   \CfgVerifyFile(sGCCBack'\bin\as.exe', fQuiet),
    2020         |   \CfgVerifyFile(sGCCBack'\bin\readelf.exe', fQuiet),
    2021         |   \CfgVerifyFile(sGCCBack'\bin\emxomf.exe', fQuiet),
     2015    ch = right(sToolId, 1);
     2016    if (pos('verify', sOperation) <= 0) then
     2017        return 0;
     2018    if (    \CfgVerifyFile(sGCCBack'\bin.new\gcc.exe', fQuiet),
     2019        |   \CfgVerifyFile(sGCCBack'\bin.new\g++.exe', fQuiet),
     2020        |   \CfgVerifyFile(sGCCBack'\bin.new\as.exe', fQuiet),
     2021        |   \CfgVerifyFile(sGCCBack'\bin.new\readelf.exe', fQuiet),
     2022        |   \CfgVerifyFile(sGCCBack'\bin.new\emxomf.exe', fQuiet),
    20222023        |   \CfgVerifyFile(sGCCBack'\dll\bfd211.dll', fQuiet),
    20232024        |   \CfgVerifyFile(sGCCBack'\lib\iberty.a', fQuiet),
     
    20292030        |   \CfgVerifyFile(sGCCBack'\lib\opcodes_s.a', fQuiet),
    20302031        |   \CfgVerifyFile(sGCCBack'\lib\opcodes_s.lib', fQuiet),
     2032        |   \CfgVerifyFile(sGCCBack'\lib\gcc-lib\i386-pc-os2_emx\3.0.'ch'\st\gcc_dll.lib', fQuiet),
     2033        |   \CfgVerifyFile(sGCCBack'\lib\gcc-lib\i386-pc-os2_emx\3.0.'ch'\st\stdcxx.lib', fQuiet),
    20312034        ) then
    20322035        return 2;
Note: See TracChangeset for help on using the changeset viewer.