123456789101112131415161718192021222324252627282930313233 |
- #!/bin/sh
- # ulimit -s 32000
- # ulimit -a
- rn=`readlink -f "${0}"`
- standardDir=`dirname "${rn}"`
- useDir=`readlink -f .`
- os=`uname -s`
- case "${os%%-*}" in
- "Linux")
- exe="dev0lin"
- ;;
- "OpenBSD")
- exe="dev0obsd"
- ;;
- "FreeBSD")
- exe="dev0fbsd"
- ;;
- "MSYS_NT" | "MINGW64_NT" | "MINGW32_NT")
- exe="dev0win"
- ;;
- *)
- echo "unsupported OS"
- exit
- esac
- # export LD_DEBUG=all
- exec env \
- BB_STANDART_DIR="${standardDir}" BB_USE_DIR="${useDir}" \
- BB_PACKED_NAME="${exe}" BB_PACKED_FIRST= \
- "${standardDir}"/${exe} "${@}"
|