Changeset 477 in dev for trunk/ab5.0/abdev/BasicCompiler32
- Timestamp:
- Apr 6, 2008, 8:07:40 PM (17 years ago)
- Location:
- trunk/ab5.0/abdev/BasicCompiler32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler32/BasicCompiler.vcproj
r475 r477 61 61 WarningLevel="3" 62 62 SuppressStartupBanner="true" 63 DebugInformationFormat=" 4"63 DebugInformationFormat="3" 64 64 /> 65 65 <Tool … … 153 153 AdditionalIncludeDirectories="..\..\;..\..\cpplibs\boost;..\BasicCompiler_Common\include" 154 154 PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;JPN" 155 StringPooling=" true"155 StringPooling="false" 156 156 RuntimeLibrary="0" 157 EnableFunctionLevelLinking=" true"157 EnableFunctionLevelLinking="false" 158 158 RuntimeTypeInfo="true" 159 159 UsePrecompiledHeader="2" … … 166 166 WarningLevel="3" 167 167 SuppressStartupBanner="true" 168 DebugInformationFormat="3" 168 169 /> 169 170 <Tool … … 1588 1589 > 1589 1590 <File 1591 RelativePath="..\BasicCompiler_Common\include\Configuration.h" 1592 > 1593 </File> 1594 <File 1590 1595 RelativePath="..\BasicCompiler_Common\include\Program.h" 1591 1596 > -
trunk/ab5.0/abdev/BasicCompiler32/MakePeHdr.cpp
r467 r477 1106 1106 int DosStubSize; 1107 1107 hFile=CreateFile( 1108 ( Jenga::Common::Environment::GetAppDir() + "\\SubOperation\\dosstub.pgm" ).c_str(),1108 ( ActiveBasic::Common::Environment::GetAbdevSystemDirPath() + "\\dosstub.pgm" ).c_str(), 1109 1109 GENERIC_READ,0,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL); 1110 1110 if(hFile==INVALID_HANDLE_VALUE){ -
trunk/ab5.0/abdev/BasicCompiler32/stdafx.h
r472 r477 22 22 #include <boost/foreach.hpp> 23 23 24 #include <jenga/include/common/CmdLine.h> 25 #include <jenga/include/common/Environment.h> 26 #include <jenga/include/common/File.h> 27 #include <jenga/include/common/Path.h> 24 28 #include <jenga/include/common/String.h> 25 #include <jenga/include/common/File.h> 26 #include <jenga/include/common/CmdLine.h> 27 #include <jenga/include/common/Path.h> 29 30 #include <abdev/ab_common/Environment.h> 28 31 29 32 #include "../BasicCompiler_Common/common.h" … … 31 34 32 35 #include <Hashmap.h> 36 #include <Configuration.h> 33 37 #include <Program.h> 34 38 #include <Compiler.h>
Note:
See TracChangeset
for help on using the changeset viewer.