Files
proxmark3/docker/archlinux/README.md
T

58 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2021-05-14 01:55:49 +02:00
# Notes to install latest gcc and arm-none-eabi-gcc
```
cat << EOF |sudo tee -a /etc/pacman.conf
[testing]
Include = /etc/pacman.d/mirrorlist
[community-testing]
Include = /etc/pacman.d/mirrorlist
[staging]
Include = /etc/pacman.d/mirrorlist
EOF
2022-01-09 16:09:50 +01:00
sudo pacman -Syu
2021-05-14 01:55:49 +02:00
# search available versions
2021-05-14 01:55:49 +02:00
pacman -Ss '^arm-none-eabi-gcc$'
pacman -Ss '^gcc$'
# depending on where the latest bleeding edge is:
sudo pacman -S community-testing/arm-none-eabi-gcc
sudo pacman -S arm-none-eabi-gcc
sudo pacman -S staging/gcc
sudo pacman -S testing/gcc
sudo pacman -S gcc
```
2021-06-25 22:50:19 +02:00
2022-10-28 22:17:22 +02:00
# Notes on run_tests.sh script
This script does both setup the mirrors and pip install and then run a
bunch of different builds with make and cmake together with the different combos
of RDV4, GENERIC, BTADDON combos.
2021-06-25 22:50:19 +02:00
2023-01-15 18:46:14 +01:00
If all tests OK, the script will finish with PASS.
2022-10-28 22:17:22 +02:00
# Notes to run tests
2023-01-15 18:46:14 +01:00
Add first the mirrors, see above, if needed.
2022-10-28 22:17:22 +02:00
The release test build script is to be run in proxmark root folder inside the docker env.
```
docker/archlinux/run_tests.sh;
2023-01-15 18:46:14 +01:00
```
2022-10-28 22:17:22 +02:00
2023-01-15 18:46:14 +01:00
Or if you want to run single test,
2021-06-25 22:50:19 +02:00
```
2022-10-28 22:17:22 +02:00
make clean; make -j
2023-07-16 17:25:43 +02:00
python3 -m venv /tmp/venv
source /tmp/venv/bin/activate
python3 -m pip install --use-pep517 pyaes
python3 -m pip install ansicolors sslcrypto
2021-06-25 22:50:19 +02:00
tools/pm3_tests.sh --long
2023-07-16 17:25:43 +02:00
deactivate
2021-06-25 22:50:19 +02:00
```