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/MakeExe.cpp

    r350 r459  
    157157
    158158            const char *coreFileName = "core.lib";
    159             if( bDebugCompile )
     159            if( compiler.IsDebug() )
    160160            {
    161161                coreFileName = "cored.lib";
     
    282282}
    283283int MainThread(DWORD dummy){
    284     extern BOOL bDebugCompile;
    285284    extern BOOL bDebugRun;
    286285    extern int bError;
    287286
    288287    if(bDebugRun){
    289         if(bDebugCompile){
     288        if( compiler.IsDebug() )
     289        {
    290290            bDebugRun=0;
    291291
Note: See TracChangeset for help on using the changeset viewer.