diff options
| author | Zichuan Li <34680029+river-li@users.noreply.github.com> | 2024-06-11 18:25:13 -0400 |
|---|---|---|
| committer | Zichuan Li <34680029+river-li@users.noreply.github.com> | 2024-06-19 13:06:04 -0400 |
| commit | 89060ca7644244b3fba94bf746db588e707e7c8d (patch) | |
| tree | 5118031b873855b4dcdd2888975f3b11cacfe55e | |
| parent | 45d02edb76909428d280cda65820343f046fce43 (diff) | |
Disable Fallback type library for x86, x86_64, aarch64, mips
| -rw-r--r-- | platform/linux/platform_linux.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
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; + } }; |
