mirror of https://github.com/acidanthera/audk.git
MdePkg: Avoid using __clang__ to specify CLANGPDB
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=2415 Avoid using __clang__ to specify CLANGPDB because this macro is also defined in CLANG38 and this causes CLANG38 build failure. Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Liming Gao <liming.gao@intel.com> Signed-off-by: Zhiguang Liu <zhiguang.liu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
7990438f14
commit
21821933ae
|
@ -623,7 +623,7 @@ typedef char* VA_LIST;
|
||||||
|
|
||||||
#elif defined(__GNUC__) || defined(__clang__)
|
#elif defined(__GNUC__) || defined(__clang__)
|
||||||
|
|
||||||
#if defined(MDE_CPU_X64) && !defined(NO_MSABI_VA_FUNCS) && !defined(__clang__)
|
#if defined(MDE_CPU_X64) && !defined(NO_MSABI_VA_FUNCS)
|
||||||
//
|
//
|
||||||
// X64 only. Use MS ABI version of GCC built-in macros for variable argument lists.
|
// X64 only. Use MS ABI version of GCC built-in macros for variable argument lists.
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue