From 89060ca7644244b3fba94bf746db588e707e7c8d Mon Sep 17 00:00:00 2001 From: Zichuan Li <34680029+river-li@users.noreply.github.com> Date: Tue, 11 Jun 2024 18:25:13 -0400 Subject: Disable Fallback type library for x86, x86_64, aarch64, mips --- platform/linux/platform_linux.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'platform') diff --git a/platform/linux/platform_linux.cpp b/platform/linux/platform_linux.cpp index 107ce892..e6f3ecb4 100644 --- a/platform/linux/platform_linux.cpp +++ b/platform/linux/platform_linux.cpp @@ -30,6 +30,11 @@ public: if (cc) SetSystemCallConvention(cc); } + + virtual bool GetFallbackEnabled() override + { + return false; + } }; class LinuxPpc32Platform: public Platform @@ -90,6 +95,11 @@ public: if (cc) SetSystemCallConvention(cc); } + + virtual bool GetFallbackEnabled() override + { + return false; + } }; @@ -136,6 +146,11 @@ public: if (cc) SetSystemCallConvention(cc); } + + virtual bool GetFallbackEnabled() override + { + return false; + } }; @@ -159,6 +174,11 @@ public: if (cc) SetSystemCallConvention(cc); } + + virtual bool GetFallbackEnabled() override + { + return false; + } }; -- cgit v1.3.1