lean4-htt/build.sh
tydeu e006f8534d feat: add supportInterpreter config setting
also don't use `--export-all` on Windows anymore
2021-10-23 16:16:09 -04:00

7 lines
219 B
Bash
Executable file

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