Ignore:
Timestamp:
May 12, 2008, 12:06:22 PM (16 years ago)
Author:
dai_9181
Message:

OutputExe→Build
Compile()→MakeExe

Location:
trunk/ab5.0/abdev/BasicCompiler_Common
Files:
3 edited

Legend:

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

    r587 r605  
    455455            extern BOOL bDebugCompile;
    456456            bDebugCompile=1;
    457             OutputExe();
     457            Build();
    458458            pobj_DebugSection->load(program.GetOutputFilePath().c_str());
    459459        }*/
  • trunk/ab5.0/abdev/BasicCompiler_Common/MakeExe.cpp

    r602 r605  
    3939}
    4040
    41 void OutputExe(void){
     41void Build()
     42{
    4243    extern HANDLE hHeap;
    4344    extern char *basbuf;
     
    234235    // コンパイル開始
    235236
    236     Compile();
     237    MakeExe();
    237238
    238239    //リソース情報を解放
     
    304305        {
    305306            //デバッグコンパイル
    306             OutputExe();
     307            Build();
    307308        }
    308309
     
    315316    else{
    316317        //リリースコンパイル
    317         OutputExe();
    318     }
    319 }
     318        Build();
     319    }
     320}
  • trunk/ab5.0/abdev/BasicCompiler_Common/common.h

    r543 r605  
    273273void MakeMiddleCode( char *buffer );
    274274void AddSourceCode(const char *buffer);
    275 void OutputExe(void);
     275void Build();
    276276void MainThread(void *dummy);
    277277
     
    375375void SplitGenericClassInstance( const char *fullName, char *className, Jenga::Common::Strings &typeParameters, bool isDefiningClass = false, Jenga::Common::Strings *pTypeParameterBaseClassNames = NULL );
    376376int JumpStatement(const char *source, int &pos);
    377 void Compile(void);
     377void MakeExe();
    378378
    379379//Diagnose.cpp
Note: See TracChangeset for help on using the changeset viewer.