From e503826134284d5d64f60ed5028794e6a90aa6b1 Mon Sep 17 00:00:00 2001 From: Erik Kundiman Date: Sun, 5 Nov 2023 13:29:46 +0800 Subject: Require SSE2 only on x86 --- indra/newview/llappviewer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 89c4d548c7..194f43cbfa 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -971,6 +971,7 @@ bool LLAppViewer::init() return 0; } +#if defined(__i386__) || defined(__x86_64__) || defined(__amd64__) // Without SSE2 support we will crash almost immediately, warn here. if (!gSysCPU.hasSSE2()) { @@ -982,6 +983,7 @@ bool LLAppViewer::init() OSMB_OK); return 0; } +#endif // alert the user if they are using unsupported hardware if(!gSavedSettings.getBOOL("AlertedUnsupportedHardware")) -- cgit v1.2.3