Created
May 17, 2022 18:43
-
-
Save cpietsch/be7c11d8cc94a7492d74867642fe6f39 to your computer and use it in GitHub Desktop.
compile jq for arm64 (raspberry pi)
This file contains 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
wget https://github.com/stedolan/jq/releases/download/jq-1.6/jq-1.6.tar.gz | |
tar xvfz jq-1.6.tar.gz | |
cd jq-1.6/ | |
autoreconf -vfi | |
modules/oniguruma | |
autoreconf -vfi | |
cd ../.. | |
./configure --with-oniguruma=builtin | |
make -j8 | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment