summaryrefslogtreecommitdiff
path: root/script/install-deps-linux.sh
blob: 99cbde4e0a16d86c5585ce7b78306fb6713b0984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -x

if [ "$MBEDTLS" ]; then
  git clone --depth 10 --single-branch --branch mbedtls-2.6.1 https://github.com/ARMmbed/mbedtls.git ./deps/mbedtls
  cd ./deps/mbedtls
  # We pass -fPIC explicitely because we'll include it in libgit2.so
  CFLAGS=-fPIC cmake -DENABLE_PROGRAMS=OFF -DENABLE_TESTING=OFF -DUSE_SHARED_MBEDTLS_LIBRARY=OFF -DUSE_STATIC_MBEDTLS_LIBRARY=ON .
  cmake --build .

  echo "mbedTLS built in `pwd`"
fi