Browse Source

Make git pull optional by passing parameter true to build script

release/v0.1
Shailesh 9 years ago
parent
commit
2864c6fba2
  1. 6
      iguana/m_unix

6
iguana/m_unix

@ -1,6 +1,10 @@
#!/bin/bash
#./configure --enable-endomorphism --enable-module-ecdh --enable-module-schnorr --enable-module-rangeproof --enable-experimental --enable-module_recovery
rm ../agents/iguana *.o
git pull
if [[ $# -eq 0 ]]; then
git pull
fi
cd secp256k1; ./m_unix; cd ..
cd ../crypto777; ./m_unix; cd ../iguana
gcc -g -Wno-deprecated -c *.c ../basilisk/basilisk.c ../gecko/gecko.c ../datachain/datachain.c

Loading…
Cancel
Save