exchange

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

build.sh (327B)


      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-coverage \
     11 	    --disable-doc
     12 
     13 # New container, may contain old build artifacts
     14 make clean
     15 nump=$(grep processor /proc/cpuinfo | wc -l)
     16 make -j$(( $nump / 2 ))
     17 make