Skip to content

Instantly share code, notes, and snippets.

@cpietsch
Created May 17, 2022 18:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cpietsch/be7c11d8cc94a7492d74867642fe6f39 to your computer and use it in GitHub Desktop.
Save cpietsch/be7c11d8cc94a7492d74867642fe6f39 to your computer and use it in GitHub Desktop.
compile jq for arm64 (raspberry pi)
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