Created
August 19, 2022 15:08
-
-
Save meoso/f0267781e52f56f3110a68beb82121aa to your computer and use it in GitHub Desktop.
cross compile jdupes for arm on debian amd64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### thank you @jbruchon | |
### https://github.com/jbruchon/jdupes | |
sudo aptitude install gcc-arm-linux-gnueabi binutils-arm-linux-gnueabi git | |
git clone --depth=1 https://github.com/jbruchon/jdupes.git | |
cd jdupes/ | |
CC=arm-linux-gnueabi-gcc make | |
ls -lhrt | |
chmod +x ./jdupes | |
scp -p ./jdupes root@ARM_BOX:~/bin/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you @jbruchon