lean4-htt/build.sh
2021-10-19 11:30:24 -04:00

7 lines
235 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 OLEAN_OUT=build/lib TEMP_OUT=build/ir BIN_NAME=lake LEAN_PATH=./build/lib bin LINK_OPTS=${LINK_OPTS} "$@"