Thanks for the report. This will be fixed in the next upload.
https://salsa.debian.org/chromium-team/chromium/-/commit/483025b5ff30fed9a2cb89a9634a9e91b9a8b2a6
On Sat, Sep 3, 2022 at 14:32, rp <rafpo...@tiscali.it> wrote:
I am Raffaele Porta, from Italy. Debian user since 2005.
problem:
if ! grep -q sse3 /proc/cpuinfo; ....
will match "ssse3" as well and that's maybe ok.
But sse3 string is NOT present in /proc/cpuinfo for any cpu (intel or
amd), instead there is "pni" string (Prescott New Instructions)
always present if sse3 support is present.
So, I think, this checks if cpu has support for ssse3, not sse3.
The matter is that AMD Athlon II x2 is sse3 capable (pni in
/proc/cpuinfo) but not ssse3 and, with your test, chromium won't run
on my AMD (and, i think, many other recent AMDs processors too).
Raffaele Porta, Italy.