You are not logged in.
Pages: 1
If your CPU supports SSE2 opcodes you can use the 'pentium4' architecture.
You can test if your CPU support SSE2 opcodes with:
grep sse2 /proc/cpuinfo
or
lscpu | egrep -i 'sse2'
The installation and transition steps are:
- Install the i686 version from the i686 ISO (there is no pentium4 ISO)
- Check if pacman-conf Architecture returns pentium4, synch repos with
pacman -Syy
- Do a full update to transition to the pentium4 packages with:
pacman -Qqn | pacman -S -
- If you build packages from the AUR, make sure you set the setting also in /etc/makepkg.conf (when pacman for pentium4 is installed, the values should already be set correctly - possibly after merging the .pacnew files):
CARCH="pentium4"
CHOST="i686-pc-linux-gnu"
...
CFLAGS="-march=pentium4 -mtune=generic -O2 -pipe -fno-plt"
CXXFLAGS="-march=pentium4 -mtune=generic -O2 -pipe -fno-plt"
Note when building a package from the AUR, you have to add pentium4 to the architecture list of the package:
arch=('pentium4' 'i686' 'x86_64' 'armv7h')
Offline
I only read this after install. My sse2 CPU was autodetected during install and everything runs smooth. Thanks!
Offline
Pages: 1