gcc-freebsd.sh 381 B

12345678910111213141516
  1. #! /bin/sh
  2. # Setup for compiling with GCC/G++ for FreeBSD
  3. if [ "$CHECKED" = "1" ]; then
  4. echo Checked debug build enabled.
  5. else
  6. echo Release build enabled.
  7. fi
  8. export MAKESTARTUP=$SCITECH/makedefs/gcc_freebsd.mk
  9. export INCLUDE="-Iinclude -I$SCITECH/include -I$PRIVATE/include"
  10. export USE_X11=1
  11. export USE_FREEBSD=1
  12. echo GCC FreeBSD console compilation environment set up