lean4-htt/build.sh

7 lines
231 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 bin LINK_OPTS=${LINK_OPTS} "$@"