Package: sse3-support,isa-support Version: 14 Severity: grave Justification: Completely fails to serve its purpose
Hi, on my Thinkpad X250 with an "Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz" CPU, sse3-support version 14 fails to install where version 13 installs fine, despite sse3-support's changelog entry for version 14 claims that only the package description was changed -- which according to "git diff debian/13..HEAD" (the "debian/14" tag seems missing) is not true as a lot of Perl code changed as well. ┌────────────────────────────────────────────────────┤ Configuring sse3-support ├─────────────────────────────────────────────────────┐ │ │ │ Support for sse3 required │ │ │ │ Alas, your machine doesn't support the sse3 instruction set. It is needed by software that depends on this dummy package. Sorry. │ │ │ │ Aborting installation. │ │ │ │ <Ok> │ │ │ └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘ This machine doesn't support sse3, sorry. Aborting. dpkg: error processing archive /tmp/apt-dpkg-install-KpVFwZ/0-sse3-support_14_amd64.deb (--unpack): new sse3-support package pre-installation script subprocess returned error exit status 2 Additionally the package description claims "It is available on almost any 64-bit-capable processor except for some early AMD models (Sledgehammer and Clawhammer). This CPU is neither an AMD one nor an early 64-bit CPU, being only about 7 years old. https://ark.intel.com/content/www/us/en/ark/products/85213/intel-core-i55300u-processor-3m-cache-up-to-2-90-ghz.html says the launch date of this CPU was Q1'15. Full CPU details: → cat /proc/cpuinfo processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 61 model name : Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz stepping : 4 microcode : 0x2f cpu MHz : 700.000 cache size : 3072 KB physical id : 0 siblings : 2 core id : 0 cpu cores : 2 apicid : 0 initial apicid : 0 fpu : yes fpu_exception : yes cpuid level : 20 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap intel_pt xsaveopt dtherm ida arat pln pts md_clear flush_l1d vmx flags : vnmi preemption_timer invvpid ept_x_only ept_ad ept_1gb flexpriority tsc_offset vtpr mtf vapic ept vpid unrestricted_guest ple shadow_vmcs bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs taa itlb_multihit srbds bogomips : 4589.74 clflush size : 64 cache_alignment : 64 address sizes : 39 bits physical, 48 bits virtual power management: processor : 2 vendor_id : GenuineIntel cpu family : 6 model : 61 model name : Intel(R) Core(TM) i5-5300U CPU @ 2.30GHz stepping : 4 microcode : 0x2f cpu MHz : 2575.752 cache size : 3072 KB physical id : 0 siblings : 2 core id : 1 cpu cores : 2 apicid : 2 initial apicid : 2 fpu : yes fpu_exception : yes cpuid level : 20 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm rdseed adx smap intel_pt xsaveopt dtherm ida arat pln pts md_clear flush_l1d vmx flags : vnmi preemption_timer invvpid ept_x_only ept_ad ept_1gb flexpriority tsc_offset vtpr mtf vapic ept vpid unrestricted_guest ple shadow_vmcs bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs taa itlb_multihit srbds bogomips : 4589.74 clflush size : 64 cache_alignment : 64 address sizes : 39 bits physical, 48 bits virtual power management: This makes installation of libqt6webenginecore6 fail, where the the debian/changelog entry of version 6.3.1+dfsg2-8 claims that the maintainers added "the sse3-support dependency to libqt6webenginecore6 to ensure that x86 CPUs support SSE3 as Chromium 89+ requires it". But chromium 105.0.5195.102-1 works totally fine on that Thinkpad, which is another hint that sse3-support/14 isn't properly checking for sse3 support anymore but alerting without necessity. So I digged a bit into the differences between sse3-support and isa-support .debs of version 13 and 14. Here's what I found: * preinst of sse3-support version 13 and 14 are identical. Especially this line is identical: 5 FILE="/usr/libexec/x86_64-linux-gnu/isa-support/test-sse3" * But isa-support 14 does not have such a file anymore, instead there is now a file /usr/libexec/x86_64-linux-gnu/isa-support/test-SSE3. Note the different capitalization. * The same probably counts for sse4.1-support and sse4.2-support as well: Only in isa-support_13/usr/libexec/x86_64-linux-gnu/isa-support: test-sse3 Only in isa-support_13/usr/libexec/x86_64-linux-gnu/isa-support: test-sse4.1 Only in isa-support_13/usr/libexec/x86_64-linux-gnu/isa-support: test-sse4.2 Only in isa-support_14/usr/libexec/x86_64-linux-gnu/isa-support: test-SSE3 Only in isa-support_14/usr/libexec/x86_64-linux-gnu/isa-support: test-SSE4.1 Only in isa-support_14/usr/libexec/x86_64-linux-gnu/isa-support: test-SSE4.2 -- System Information: Debian Release: bookworm/sid APT prefers unstable APT policy: (990, 'unstable'), (980, 'unstable-debug'), (600, 'testing'), (111, 'buildd-unstable'), (111, 'buildd-experimental'), (110, 'experimental'), (105, 'experimental-debug') merged-usr: no Architecture: amd64 (x86_64) Kernel: Linux 5.18.0-2-amd64 (SMP w/2 CPU threads; PREEMPT) Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8), LANGUAGE not set Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages sse3-support depends on: ii isa-support 14 sse3-support recommends no packages. sse3-support suggests no packages. -- debconf information: sse3-support/fail: