Ignore:
Timestamp:
Apr 15, 2007, 1:34:02 AM (17 years ago)
Author:
dai_9181
Message:

RegisterGlobalRootsの自動生成に対応

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/include/Smoothie.h

    r92 r95  
    1414            log = "";
    1515
    16             ofstream ofs( ( (string)BasicSystemDir + "compile.log" ).c_str(), ios_base::trunc );
     16            ofstream ofs( ( (string)BasicSystemDir + "Log\\compile.log" ).c_str(), ios_base::trunc );
    1717            ofs.close();
    1818#endif
     
    2323
    2424            {
    25                 ofstream ofs( ( (string)BasicSystemDir + "compile.log" ).c_str(), ios_base::app );
     25                ofstream ofs( ( (string)BasicSystemDir + "Log\\compile.log" ).c_str(), ios_base::app );
    2626                ofs << text << endl;
    2727                ofs.close();
     
    3030        }
    3131        static void PutFile( const string &fileName, const string &buffer ){
    32             ofstream ofs( ( (string)BasicSystemDir + fileName ).c_str() );
     32            ofstream ofs( ( (string)BasicSystemDir + "Log\\" + fileName ).c_str() );
    3333            ofs << buffer << endl;
    3434            ofs.close();
Note: See TracChangeset for help on using the changeset viewer.