exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

build.sh (240B)


      1 #!/bin/bash
      2 set -exuo pipefail
      3 
      4 apt-get update
      5 apt-get upgrade -yqq
      6 
      7 ./bootstrap
      8 ./configure CFLAGS="-ggdb -O0" \
      9 	    --enable-logging=verbose \
     10 	    --disable-doc
     11 
     12 nump=$(grep processor /proc/cpuinfo | wc -l)
     13 make -j$(( $nump / 2 ))
     14 make