1) Revert the original CompilerStubLib.inf which will be built by EDK tool chain. CompilerStubLib_Edk2.inf is the one that should be built by EDK II tool chain.

2) Revert the memcpy.c and memset.c. We use CompilerStubLib_Edk2.inf to switch the file combinations that are built under differnt tool-chains.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6776 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qwang12
2008-11-29 07:36:43 +00:00
parent b058028b67
commit bc4c047f7b
3 changed files with 8 additions and 30 deletions

View File

@ -28,16 +28,6 @@ Abstract:
#include "Tiano.h"
VOID *
memcpy (
OUT VOID *Dest,
IN const VOID *Src,
IN UINTN Count
);
#ifdef _MSC_EXTENSIONS
#pragma intrinsic(memcpy)
#else
VOID *
memcpy (
OUT VOID *Dest,
IN const VOID *Src,
@ -53,5 +43,4 @@ memcpy (
return Dest;
}
#endif