Changeset 718 for trunk/kBuild


Ignore:
Timestamp:
Dec 14, 2006, 3:22:55 AM (19 years ago)
Author:
bird
Message:

default mode is debug.

Location:
trunk/kBuild
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/env.sh

    r653 r718  
    4242# Type.
    4343if [ -z "$BUILD_TYPE" ]; then
    44     BUILD_TYPE=debug
     44    BUILD_TYPE=release
    4545fi
    4646export BUILD_TYPE
  • trunk/kBuild/envos2.cmd

    • Property svn:keyword set to Id
    r652 r718  
    6666/* Type. */
    6767if (EnvGet("BUILD_TYPE") = "") then
    68     call EnvSet 0, "BUILD_TYPE", "debug";
     68    call EnvSet 0, "BUILD_TYPE", "release";
    6969call EnvSet 0, "BUILD_TYPE", ToLower(EnvGet("BUILD_TYPE"));
    7070say "dbg: BUILD_TYPE="||EnvGet("BUILD_TYPE");
     
    180180 */
    181181syntax: procedure
    182     say 'syntax: env.cmd [options] [mode]'
    183     say ''
    184     say 'Mode:'
    185     say '    The build mode, debug or release. Default it debug.'
    186     say ''
    187     say 'Options:'
    188     say '    enable-staged-gcc      Enable the staged GCC build. (default)'
    189     say '    disable-staged-gcc     Use buildenv gcc335.'
     182    say 'syntax: envos2.cmd [command to be executed and its arguments]'
    190183    say ''
    191184return 0;
  • trunk/kBuild/envwin.cmd

    • Property svn:keyword set to Id
    r653 r718  
    127127REM #
    128128IF NOT ".%BUILD_TYPE%" = "." goto have_BUILD_TYPE
    129 set BUILD_TYPE=debug
     129set BUILD_TYPE=release
    130130:have_BUILD_TYPE
    131131echo dbg: BUILD_TYPE=%BUILD_TYPE%
Note: See TracChangeset for help on using the changeset viewer.