From 27af6b876a70c49928bdae7bedbb72cba9a18171 Mon Sep 17 00:00:00 2001 From: jwang36 Date: Tue, 24 Jul 2007 05:34:35 +0000 Subject: [PATCH] Added "#define ASM_PFX(name) _##name" for GNU assembly code preprocessing git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3409 6f19259b-4bc3-4df7-8a09-765794883524 --- MdePkg/Include/Ia32/ProcessorBind.h | 7 +++++++ MdePkg/Include/x64/ProcessorBind.h | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/MdePkg/Include/Ia32/ProcessorBind.h b/MdePkg/Include/Ia32/ProcessorBind.h index 2dccac4eb0..5fdb55077b 100644 --- a/MdePkg/Include/Ia32/ProcessorBind.h +++ b/MdePkg/Include/Ia32/ProcessorBind.h @@ -193,5 +193,12 @@ typedef INT32 INTN; #define GLOBAL_REMOVE_IF_UNREFERENCED #endif +// +// For symbol name in GNU assembly code, an extra "_" is necessary +// +#if __GNUC__ + #define ASM_PFX(name) _##name +#endif + #endif diff --git a/MdePkg/Include/x64/ProcessorBind.h b/MdePkg/Include/x64/ProcessorBind.h index a4a1a35e35..a401d23f26 100644 --- a/MdePkg/Include/x64/ProcessorBind.h +++ b/MdePkg/Include/x64/ProcessorBind.h @@ -225,5 +225,12 @@ typedef INT64 INTN; #define GLOBAL_REMOVE_IF_UNREFERENCED #endif +// +// For symbol name in GNU assembly code, an extra "_" is necessary +// +#if __GNUC__ + #define ASM_PFX(name) _##name +#endif + #endif -- 2.39.2