Changeset 269 in dev for trunk/abdev/BasicCompiler_Common
- Timestamp:
- Aug 8, 2007, 4:19:30 AM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler_Common
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/BasicCompiler.cpp
r266 r269 566 566 //_Test(); 567 567 568 MessageBox(0,"starting compiler/debugger","ActiveBasic",MB_OK);568 //MessageBox(0,"starting compiler/debugger","ActiveBasic",MB_OK); 569 569 trace( "Start ActiveBasic Compiler!" ); 570 570 … … 751 751 lstrcat(OutputFileName,temporary); 752 752 lstrcat(OutputFileName,temp2); 753 if(bDebugCompile||bDebugRun) lstrcat(OutputFileName,"_debug.exe"); 754 else lstrcat(OutputFileName,".exe"); 753 if( compiler.IsStaticLibrary() ) 754 { 755 if(bDebugCompile||bDebugRun) 756 { 757 lstrcat(OutputFileName,"_debug.abobj"); 758 } 759 else 760 { 761 lstrcat(OutputFileName,".abobj"); 762 } 763 } 764 else 765 { 766 if(bDebugCompile||bDebugRun) 767 { 768 lstrcat(OutputFileName,"_debug.exe"); 769 } 770 else 771 { 772 lstrcat(OutputFileName,".exe"); 773 } 774 } 755 775 } 756 776 -
trunk/abdev/BasicCompiler_Common/Intermediate_Step1.cpp
r206 r269 3 3 #include <jenga/include/smoothie/Smoothie.h> 4 4 #include <jenga/include/smoothie/LexicalAnalysis.h> 5 6 #include <Compiler.h> 5 7 6 8 #include "../BasicCompiler_Common/common.h" … … 233 235 temporary[i3]=basbuf[i2]; 234 236 } 235 if(lstrcmpi(temporary,"noprompt")==0){ 237 if( lstrcmp( temporary, "static_link" ) == 0 ) 238 { 239 // 静的リンクライブラリ 240 while(basbuf[i2]==' '||basbuf[i2]=='\t') i2++; 241 if(basbuf[i2]!='\"'){ 242 SetError(1,NULL,i2); 243 return; 244 } 245 for(i3=0,i2++;;i2++,i3++){ 246 if(basbuf[i2]=='\"'){ 247 temporary[i3]=0; 248 break; 249 } 250 temporary[i3]=basbuf[i2]; 251 } 252 GetFullPath(temporary,BasicCurDir); 253 254 compiler.staticLibraryFilePaths.push_back( temporary ); 255 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,"noprompt")==0){ 236 262 //#noprompt 237 263 //旧機能なので、無視 -
trunk/abdev/BasicCompiler_Common/include/Compiler.h
r268 r269 43 43 // リンカ 44 44 Linker linker; 45 46 // 静的リンクするオブジェクトファイル 47 std::vector<std::string> staticLibraryFilePaths; 45 48 46 49 // オブジェクトモジュール -
trunk/abdev/BasicCompiler_Common/src/Source.cpp
r266 r269 821 821 822 822 // basic.sbpをインクルード 823 const char *headCode = " #include <basic.sbp>\n";823 const char *headCode = "\n"; 824 824 Realloc( length + lstrlen(headCode) ); 825 825 Text::SlideString( buffer, lstrlen(headCode) );
Note:
See TracChangeset
for help on using the changeset viewer.