Changeset 294 in dev for trunk/abdev/BasicCompiler_Common/Intermediate_Step1.cpp
- Timestamp:
- Aug 22, 2007, 11:23:28 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/Intermediate_Step1.cpp
r287 r294 1 1 #include "stdafx.h" 2 3 #include <jenga/include/common/Path.h>4 2 5 3 #include <jenga/include/smoothie/Smoothie.h> … … 256 254 compiler.staticLibraryFilePaths.push_back( temporary ); 257 255 258 compiler.staticLibraries.push_back( new ObjectModule() ); 259 260 Jenga::Common::Path path( temporary ); 261 CompileMessage( ((string)"\"" + path.GetFileName() + path.GetExt() + "\" を読み込みました。").c_str() ); 262 compiler.staticLibraries.back()->Read( temporary ); 256 for(;;i2++){ 257 if(basbuf[i2]=='\n'||basbuf[i2]=='\0') break; 258 } 259 SlideString(basbuf+i2,i-i2); 260 } 261 else if( lstrcmpi( temporary, "_core" ) == 0 ) 262 { 263 // #_core 264 // コアモジュール 265 compiler.SetCoreMark( true ); 263 266 264 267 for(;;i2++){
Note:
See TracChangeset
for help on using the changeset viewer.