From d755e88a1d5efbb38641165e4aad9128626dbd32 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Villemot?= Date: Thu, 24 Dec 2020 04:31:50 +0000 Subject: [PATCH] Julia requires SSE2 on i386 Bug: https://github.com/JuliaLang/julia/issues/7185 Forwarded: no Last-Update: 2015-11-01 This patch adds an explicit error message if the CPU does not support SSE2. The CPU features are queried using the x86 CPUID opcode. The wrapper function __get_cpuid() is provided by GCC and Clang. See for the list of supported CPU extension flags. Last-Update: 2015-11-01 Gbp-Pq: Name require-sse2-on-i386.patch --- src/codegen.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/codegen.cpp b/src/codegen.cpp index 3427fdf..a097991 100644 --- a/src/codegen.cpp +++ b/src/codegen.cpp @@ -21,6 +21,9 @@ #endif #include +#ifdef __i386__ +#include +#endif #include #include #include @@ -7418,6 +7421,14 @@ extern "C" void jl_init_llvm(void) #ifdef USE_POLLY polly::initializePollyPasses(Registry); #endif +#ifdef __i386__ + unsigned int eax = 0, ebx = 0, ecx = 0, edx = 0; + __get_cpuid(1, &eax, &ebx, &ecx, &edx); + if (!(edx & bit_SSE2)) { + fprintf(stderr, "Your processor does not have SSE2 extension, which is required by Julia. Exiting.\n"); + exit(EXIT_FAILURE); + } +#endif // Parse command line flags after initialization const char *const argv_tailmerge[] = {"", "-enable-tail-merge=0"}; // NOO TOUCHIE; NO TOUCH! See #922 -- 2.30.2