lean4-htt/build.sh
2021-09-20 12:53:55 -04:00

7 lines
193 B
Bash
Executable file

#!/usr/bin/env sh
if [ "$OS" = "Windows_NT" ]; then
LINK_OPTS=-Wl,--export-all
else
LINK_OPTS=-rdynamic
fi
leanmake PKG=Lake BIN_NAME=lake LEAN_PATH=./build bin LINK_OPTS=${LINK_OPTS} "$@"