Ignore:
Timestamp:
Mar 23, 2008, 10:38:38 AM (17 years ago)
Author:
dai_9181
Message:

・Compiler::IsDebugメソッドを導入した(bDebugCompileグローバル変数は廃止)。
・bStrictグローバル変数は意味を成さないので廃止した。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/BasicCompiler.cpp

    r457 r459  
    620620        {
    621621            // デバッグ ビルド
    622             bDebugCompile = 1;
     622            compiler.SetDebugMark( true );
    623623        }
    624624        else if( cmdLine.GetCommand() == "run" )
     
    726726        if( compiler.IsStaticLibrary() )
    727727        {
    728             if(bDebugCompile||bDebugRun)
     728            if( bDebugRun || compiler.IsDebug() )
    729729            {
    730730                lstrcat(OutputFileName,"_debug.abobj");
     
    737737        else
    738738        {
    739             if(bDebugCompile||bDebugRun)
     739            if( bDebugRun || compiler.IsDebug() )
    740740            {
    741741                lstrcat(OutputFileName,"_debug.exe");
Note: See TracChangeset for help on using the changeset viewer.