Changeset 605 in dev for trunk/ab5.0/abdev/BasicCompiler_Common
- Timestamp:
- May 12, 2008, 12:06:22 PM (17 years ago)
- Location:
- trunk/ab5.0/abdev/BasicCompiler_Common
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/Debug.cpp
r587 r605 455 455 extern BOOL bDebugCompile; 456 456 bDebugCompile=1; 457 OutputExe();457 Build(); 458 458 pobj_DebugSection->load(program.GetOutputFilePath().c_str()); 459 459 }*/ -
trunk/ab5.0/abdev/BasicCompiler_Common/MakeExe.cpp
r602 r605 39 39 } 40 40 41 void OutputExe(void){ 41 void Build() 42 { 42 43 extern HANDLE hHeap; 43 44 extern char *basbuf; … … 234 235 // コンパイル開始 235 236 236 Compile();237 MakeExe(); 237 238 238 239 //リソース情報を解放 … … 304 305 { 305 306 //デバッグコンパイル 306 OutputExe();307 Build(); 307 308 } 308 309 … … 315 316 else{ 316 317 //リリースコンパイル 317 OutputExe();318 } 319 } 318 Build(); 319 } 320 } -
trunk/ab5.0/abdev/BasicCompiler_Common/common.h
r543 r605 273 273 void MakeMiddleCode( char *buffer ); 274 274 void AddSourceCode(const char *buffer); 275 void OutputExe(void);275 void Build(); 276 276 void MainThread(void *dummy); 277 277 … … 375 375 void SplitGenericClassInstance( const char *fullName, char *className, Jenga::Common::Strings &typeParameters, bool isDefiningClass = false, Jenga::Common::Strings *pTypeParameterBaseClassNames = NULL ); 376 376 int JumpStatement(const char *source, int &pos); 377 void Compile(void);377 void MakeExe(); 378 378 379 379 //Diagnose.cpp
Note:
See TracChangeset
for help on using the changeset viewer.