From 85107c46adf278915772ee8a2c14d91fa23a4729 Mon Sep 17 00:00:00 2001 From: fatihbalsoy Date: Mon, 10 Sep 2018 19:16:35 -0500 Subject: [PATCH] Update check_features.cpp - Added override for Core i7-720QM and Xeon E5520 I also get the same SSE error on a virtual machine with an Intel Xeon Processor: The CPU of your computer (Intel(R) Xeon(R) CPU E5520 @ 2.27GHz) does not support all features Anbox requires. It is missing support for the following features: SSE 4.1, SSE 4.2, SSSE 3 but checking /proc/cpuinfo reveals that it supports the features: ... model name : Intel(R) Xeon(R) CPU E5520 @ 2.27GHz ... flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid pni ssse3 sse4_1 sse4_2 x2apic hypervisor lahf_lm pti I hope adding the following code into the array in check_features.cpp could fix the problem: // Intel Xeon Processor E5520 "E5520" --- src/anbox/cmds/check_features.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/anbox/cmds/check_features.cpp b/src/anbox/cmds/check_features.cpp index d6c06d84..c5df3bc4 100644 --- a/src/anbox/cmds/check_features.cpp +++ b/src/anbox/cmds/check_features.cpp @@ -38,6 +38,10 @@ std::vector cpu_whitelist = { "N2840", // Intel Pentium T4500 "T4500", + // Intel Core i7 Q720 + "Q 720", + // Intel Xeon E5520 + "E5520" }; } // namespace -- GitLab