reworked "lf em 4x50 chk" to use dynamic memory for dictionary
[RRG-proxmark3.git] / docker / archlinux / README.md
blob67bf501e5b8afac737695e75fb05cb28abd87ae0
1 # Notes to install latest gcc and arm-none-eabi-gcc
3 ```
4 cat << EOF |sudo tee -a /etc/pacman.conf
6 [testing]
7 Include = /etc/pacman.d/mirrorlist
9 [community-testing]
10 Include = /etc/pacman.d/mirrorlist
12 [staging]
13 Include = /etc/pacman.d/mirrorlist
14 EOF
16 sudo pacman -Sy
18 # serch available versions
19 pacman -Ss '^arm-none-eabi-gcc$'
20 pacman -Ss '^gcc$'
22 # depending on where the latest bleeding edge is:
23 sudo pacman -S community-testing/arm-none-eabi-gcc
24 sudo pacman -S arm-none-eabi-gcc
25 sudo pacman -S staging/gcc
26 sudo pacman -S testing/gcc
27 sudo pacman -S gcc
28 ```