2020-06-01 20:59:54 +02:00

17 lines
427 B
Bash
Executable File

#!/bin/bash
## and then borrowed and slightly modified from https://github.com/datkt/sodium/configure
## borrowed from https://github.com/sodium-friends/sodium-native/blob/master/configure
PREFIX="${PREFIX:-$PWD/static-macos-x86-64}"
KONAN="${KONAN:-$HOME/.konan}"
ARCH=${ARCH:-$(uname -m)}
echo $PREFIX
echo $KONAN
echo $ARCH
cd libsodium
./autogen.sh -s -f
#TODO set up konan apple clang
./configure --prefix=$PREFIX "$@"