Fix the bug that SecMain often throw exception when environment variable too large. It caused by using /DEBUG in link options but not link "MSVCRTD.lib" library.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@870 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2 2006-07-11 07:01:36 +00:00
parent fcf27ef383
commit ae3f0d5885
2 changed files with 3 additions and 4 deletions

View File

@ -210,7 +210,7 @@
<TokenSpaceGuidCName>gEfiEdkNt32PkgTokenSpaceGuid</TokenSpaceGuidCName> <TokenSpaceGuidCName>gEfiEdkNt32PkgTokenSpaceGuid</TokenSpaceGuidCName>
<DatumType>VOID*</DatumType> <DatumType>VOID*</DatumType>
<MaxDatumSize>52</MaxDatumSize> <MaxDatumSize>52</MaxDatumSize>
<Value>L"..\\..\\FV\\FV_RECOVERY.fd"</Value> <Value>L"..\\FV\\FV_RECOVERY.fd"</Value>
</PcdData> </PcdData>
<PcdData ItemType="FIXED_AT_BUILD"> <PcdData ItemType="FIXED_AT_BUILD">
<C_Name>PcdWinNtBootMode</C_Name> <C_Name>PcdWinNtBootMode</C_Name>
@ -6919,8 +6919,7 @@
</BuildOptions> </BuildOptions>
<UserExtensions UserID="TianoCore" Identifier="1"> <UserExtensions UserID="TianoCore" Identifier="1">
<mkdir dir="${FV_DIR}/../../FV"/> <concat destfile="${FV_DIR}/FV_RECOVERY.fd" binary="true" >
<concat destfile="${FV_DIR}/../../FV/FV_RECOVERY.fd" binary="true" >
<fileset dir="${FV_DIR}" includes="*.fv"/> <fileset dir="${FV_DIR}" includes="*.fv"/>
</concat> </concat>
</UserExtensions> </UserExtensions>

View File

@ -150,7 +150,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
<shellscript shell="cmd.exe" tmpsuffix=".cmd" > <shellscript shell="cmd.exe" tmpsuffix=".cmd" >
<arg line="/c"/> <arg line="/c"/>
<arg line="call"/> <arg line="call"/>
"${DLINK}" /LIBPATH:"${env.MSVCDir}\Lib" /LIBPATH:"${env.MSVCDir}\PlatformSdk\Lib" /NOLOGO /SUBSYSTEM:CONSOLE /NODEFAULTLIB /IGNORE:4086 /MAP /OPT:REF /DEBUG /MACHINE:I386 /LTCG Kernel32.lib MsvcRt.lib Gdi32.lib User32.lib Winmm.lib ${OBJECTS} ${LIBS} /base:0x10000000 /out:${BIN_DIR}\SecMain.exe /pdb:${DEST_DIR_DEBUG}\SecMain.pdb "${DLINK}" /LIBPATH:"${env.MSVCDir}\Lib" /LIBPATH:"${env.MSVCDir}\PlatformSdk\Lib" /NOLOGO /SUBSYSTEM:CONSOLE /NODEFAULTLIB /IGNORE:4086 /MAP /OPT:REF /DEBUG /MACHINE:I386 /LTCG Kernel32.lib MSVCRTD.lib Gdi32.lib User32.lib Winmm.lib ${OBJECTS} ${LIBS} /base:0x10000000 /out:${BIN_DIR}\SecMain.exe /pdb:${DEST_DIR_DEBUG}\SecMain.pdb
</shellscript> </shellscript>
</sequential> </sequential>
</OnDependency> </OnDependency>