mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
third_party/protobuf: Disable musttail on MIPS
clang reports: fatal error: error in backend: failed to perform tail call elimination on a call site marked musttail
This commit is contained in:
parent
da3cf4a7ac
commit
3aa6cd176e
@ -257,12 +257,12 @@
|
|||||||
#if __has_cpp_attribute(clang::musttail) && !defined(__arm__) && \
|
#if __has_cpp_attribute(clang::musttail) && !defined(__arm__) && \
|
||||||
!defined(_ARCH_PPC) && !defined(__wasm__) && \
|
!defined(_ARCH_PPC) && !defined(__wasm__) && \
|
||||||
!(defined(_MSC_VER) && defined(_M_IX86)) && \
|
!(defined(_MSC_VER) && defined(_M_IX86)) && \
|
||||||
!(defined(__NDK_MAJOR__) && __NDK_MAJOR__ <= 24)
|
!(defined(__NDK_MAJOR__) && __NDK_MAJOR__ <= 24) && !defined(__mips__)
|
||||||
# ifndef PROTO2_OPENSOURCE
|
# ifndef PROTO2_OPENSOURCE
|
||||||
// Compilation fails on ARM32: b/195943306
|
// Compilation fails on ARM32: b/195943306
|
||||||
// Compilation fails on powerpc64le: b/187985113
|
// Compilation fails on powerpc64le: b/187985113
|
||||||
// Compilation fails on X86 Windows:
|
// Compilation fails on X86 Windows:
|
||||||
// https://github.com/llvm/llvm-project/issues/53271
|
// 1
|
||||||
# endif
|
# endif
|
||||||
#define PROTOBUF_MUSTTAIL [[clang::musttail]]
|
#define PROTOBUF_MUSTTAIL [[clang::musttail]]
|
||||||
#define PROTOBUF_TAILCALL true
|
#define PROTOBUF_TAILCALL true
|
||||||
|
Loading…
Reference in New Issue
Block a user