mirror of https://github.com/acidanthera/audk.git
MdePkg CryptoPkg EdkCompatibilityPkg: retire NO_BUILTIN_VA_FUNCS define
This is never set anymore, so unsetting it or testing whether it is unset no longer makes any sense. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com> Tested-by: Laszlo Ersek <lersek@redhat.com> Tested-By: Liming Gao <liming.gao@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
247093f45d
commit
17ab1ec5ac
|
@ -509,7 +509,7 @@
|
||||||
INTEL:*_*_IPF_CC_FLAGS = -U_WIN32 -U_WIN64 -U_MSC_VER -U__ICC $(OPENSSL_FLAGS) /w
|
INTEL:*_*_IPF_CC_FLAGS = -U_WIN32 -U_WIN64 -U_MSC_VER -U__ICC $(OPENSSL_FLAGS) /w
|
||||||
|
|
||||||
GCC:*_*_IA32_CC_FLAGS = -U_WIN32 -U_WIN64 $(OPENSSL_FLAGS) -w
|
GCC:*_*_IA32_CC_FLAGS = -U_WIN32 -U_WIN64 $(OPENSSL_FLAGS) -w
|
||||||
GCC:*_*_X64_CC_FLAGS = -U_WIN32 -U_WIN64 $(OPENSSL_FLAGS) -w -UNO_BUILTIN_VA_FUNCS -DNO_MSABI_VA_FUNCS
|
GCC:*_*_X64_CC_FLAGS = -U_WIN32 -U_WIN64 $(OPENSSL_FLAGS) -w -DNO_MSABI_VA_FUNCS
|
||||||
GCC:*_*_IPF_CC_FLAGS = -U_WIN32 -U_WIN64 $(OPENSSL_FLAGS) -w
|
GCC:*_*_IPF_CC_FLAGS = -U_WIN32 -U_WIN64 $(OPENSSL_FLAGS) -w
|
||||||
GCC:*_*_ARM_CC_FLAGS = $(OPENSSL_FLAGS) -w
|
GCC:*_*_ARM_CC_FLAGS = $(OPENSSL_FLAGS) -w
|
||||||
GCC:*_*_AARCH64_CC_FLAGS = $(OPENSSL_FLAGS) -w
|
GCC:*_*_AARCH64_CC_FLAGS = $(OPENSSL_FLAGS) -w
|
||||||
|
|
|
@ -92,7 +92,7 @@ Abstract:
|
||||||
|
|
||||||
#define VA_COPY(Dest, Start) __va_copy (Dest, Start)
|
#define VA_COPY(Dest, Start) __va_copy (Dest, Start)
|
||||||
|
|
||||||
#elif defined(__GNUC__) && !defined(NO_BUILTIN_VA_FUNCS)
|
#elif defined(__GNUC__)
|
||||||
|
|
||||||
#if defined(MDE_CPU_X64) && !defined(NO_MSABI_VA_FUNCS)
|
#if defined(MDE_CPU_X64) && !defined(NO_MSABI_VA_FUNCS)
|
||||||
//
|
//
|
||||||
|
|
|
@ -589,7 +589,7 @@ struct _LIST_ENTRY {
|
||||||
|
|
||||||
#define VA_COPY(Dest, Start) __va_copy (Dest, Start)
|
#define VA_COPY(Dest, Start) __va_copy (Dest, Start)
|
||||||
|
|
||||||
#elif defined(__GNUC__) && !defined(NO_BUILTIN_VA_FUNCS)
|
#elif defined(__GNUC__)
|
||||||
|
|
||||||
#if defined(MDE_CPU_X64) && !defined(NO_MSABI_VA_FUNCS)
|
#if defined(MDE_CPU_X64) && !defined(NO_MSABI_VA_FUNCS)
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue