From c5da3c4e4fb9bf181527463fdf682de2a8dc0323 Mon Sep 17 00:00:00 2001 From: Simon Fels Date: Tue, 4 Sep 2018 07:52:04 +0200 Subject: [PATCH] cmds: add override for Intel Celeron N2840 --- src/anbox/cmds/check_features.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/anbox/cmds/check_features.cpp b/src/anbox/cmds/check_features.cpp index 5d1be32..5826d59 100644 --- a/src/anbox/cmds/check_features.cpp +++ b/src/anbox/cmds/check_features.cpp @@ -27,9 +27,13 @@ std::vector cpu_whitelist = { // when started with `-cpu qemu64,+ssse3,+sse4.1,+sse4.2,+x2apic` "QEMU", - // Intel Core i7 M620 does not support AVX which causes cpu_features to not - // detect SSE and friends correctly + // The following CPUs do not support AVX and without it cpu_features can't detect + // if SSE & friends are supported. See https://github.com/google/cpu_features/issues/4 + + // Intel Core i7 M620 "M 620", + // Intel Celeron N2840 + "N2840", }; } // namespace