Changeset 188 in dev


Ignore:
Timestamp:
Jun 25, 2007, 5:41:01 AM (17 years ago)
Author:
dai_9181
Message:
 
Location:
trunk/abdev
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler32/MakePeHdr.cpp

    r183 r188  
    337337
    338338    obp_AllocSize=8192*2;
    339     OpBuffer=(char *)HeapAlloc(hHeap,0,obp_AllocSize);
     339    OpBuffer=(char *)malloc(obp_AllocSize);
    340340    obp=0;
    341341
  • trunk/abdev/BasicCompiler64/BasicCompiler.vcproj

    r183 r188  
    4747            <Tool
    4848                Name="VCCLCompilerTool"
     49                AdditionalOptions="/GR"
    4950                Optimization="0"
    5051                AdditionalIncludeDirectories="..\..\;..\..\cpplibs\boost;..\BasicCompiler_Common\include"
     
    5354                BasicRuntimeChecks="0"
    5455                RuntimeLibrary="1"
     56                RuntimeTypeInfo="true"
    5557                UsePrecompiledHeader="0"
    5658                PrecompiledHeaderFile=".\Debug/BasicCompiler.pch"
     
    151153            <Tool
    152154                Name="VCCLCompilerTool"
     155                AdditionalOptions="/GR"
    153156                Optimization="2"
    154157                InlineFunctionExpansion="2"
    155158                EnableIntrinsicFunctions="true"
    156159                FavorSizeOrSpeed="1"
    157                 AdditionalIncludeDirectories="..\..\;..\..\cpplibs\STLPort;..\..\cpplibs\boost;..\BasicCompiler_Common\include"
     160                AdditionalIncludeDirectories="..\..\;..\..\cpplibs\boost;..\BasicCompiler_Common\include"
    158161                PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;JPN;_AMD64_;_WIN64"
    159162                MinimalRebuild="false"
  • trunk/abdev/BasicCompiler64/MakePeHdr.cpp

    r183 r188  
    176176    //クラス情報を取得(※注 - GetSubInfoの後に呼び出す)
    177177    Smoothie::GetMeta().GetClasses().GetAllClassInfo();
     178
     179    Smoothie::GetMeta().Write( Jenga::Common::Environment::GetAppDir() + "\\meta_test.xml" );
    178180
    179181    //コードと行番号の関係
  • trunk/abdev/BasicCompiler_Common/BasicCompiler.cpp

    r182 r188  
    552552    char temporary[1024],temp2[MAX_PATH];
    553553
    554     MessageBox(0,"starting compiler/debugger","ActiveBasic",MB_OK);
     554    //MessageBox(0,"starting compiler/debugger","ActiveBasic",MB_OK);
    555555    trace( "Start ActiveBasic Compiler!" );
    556556
  • trunk/abdev/BasicCompiler_Common/Const.cpp

    r182 r188  
    2626
    2727
    28 CConst::CConst( const NamespaceScopes &namespaceScopes, const string &name, const Type &type, _int64 i64data)
     28CConst::CConst( const NamespaceScopes &namespaceScopes, const string &name, const Type &newType, _int64 i64data)
    2929    : ConstBase( namespaceScopes, name )
    30     , type( type )
     30    , type( newType )
    3131    , i64data( i64data )
    3232    , pNext( NULL )
  • trunk/abdev/BasicCompiler_Common/Const.h

    r182 r188  
    3636    CConst *pNext;
    3737
    38     CConst( const NamespaceScopes &namespaceScopes, const string &name, const Type &type, _int64 i64data);
     38    CConst( const NamespaceScopes &namespaceScopes, const string &name, const Type &newType, _int64 i64data);
    3939    CConst( const NamespaceScopes &namespaceScopes, const string &name, int value);
    4040    ~CConst();
  • trunk/abdev/BasicCompiler_Common/DebugMiddleFile.cpp

    r182 r188  
    906906
    907907    if(OpBuffer) HeapDefaultFree(OpBuffer);
    908     OpBuffer=(char *)HeapAlloc(hHeap,0,SizeOf_CodeSection);
     908    OpBuffer=(char *)malloc(SizeOf_CodeSection);
    909909
    910910    ReadProcessMemory(hDebugProcess,
Note: See TracChangeset for help on using the changeset viewer.