Ignore:
Timestamp:
Aug 22, 2007, 11:23:28 PM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/Intermediate_Step1.cpp

    r287 r294  
    11#include "stdafx.h"
    2 
    3 #include <jenga/include/common/Path.h>
    42
    53#include <jenga/include/smoothie/Smoothie.h>
     
    256254                compiler.staticLibraryFilePaths.push_back( temporary );
    257255
    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 );
    263266
    264267                for(;;i2++){
Note: See TracChangeset for help on using the changeset viewer.