Ignore:
Timestamp:
Jun 14, 2008, 12:16:27 PM (16 years ago)
Author:
dai_9181
Message:

静的リンクリンカの依存関係解決モジュールを製作中

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/compiler_x86/MakePeHdr.cpp

    r637 r640  
    122122    compiler.PreStaticLink( compiler.staticLibraries );
    123123    compiler.StaticLink( compiler.staticLibraries );
     124
     125    // 依存関係の解決
     126    ActiveBasic::Common::Lexical::ResolveErrors resolveErrors;
     127    compiler.GetObjectModule().Resolve( resolveErrors );
     128    BOOST_FOREACH( const ResolveError &resolveError, resolveErrors )
     129    {
     130        compiler.errorMessenger.Output( ErrorInfo( 13, resolveError.GetTargetItemName(), -1 ) );
     131    }
    124132
    125133
Note: See TracChangeset for help on using the changeset viewer.