Skip to content

Commit

Permalink
add: deps for armv7l static
Browse files Browse the repository at this point in the history
  • Loading branch information
decryp2kanon committed Mar 15, 2020
1 parent 305e4b4 commit 57a4eda
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions deps-armv7l/deps-armv7l.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# WARNING
# Try on Virtual Machine (Ubuntu 16.04)
# https://lxadm.com/Static_compilation_of_cpuminer

# DEPENDS

## OPENSSL
wget https://www.openssl.org/source/openssl-1.1.0g.tar.gz
tar -xvzf openssl-1.1.0g.tar.gz
cd openssl-1.1.0g/
./config no-shared
make -j$(nproc)
sudo make install
cd ..

## CURL
wget https://github.com/curl/curl/releases/download/curl-7_57_0/curl-7.57.0.tar.gz
tar -xvzf curl-7.57.0.tar.gz
cd curl-7.57.0/
./buildconf | grep "buildconf: OK"
./configure --disable-shared | grep "Static=yes"
make -j$(nproc)
sudo make install
cd ../..

0 comments on commit 57a4eda

Please sign in to comment.