Skip to content

Commit

Permalink
add: deps for linux32 static (decryp2kanon#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
decryp2kanon authored Mar 15, 2020
1 parent ee56d94 commit 4596a0f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions deps-linux32/deps-linux32.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 4596a0f

Please sign in to comment.