You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
448 B

  1. #! /bin/sh
  2. path=`dirname $0`
  3. . "$path/SETUP.sh"
  4. extra_configs="$max_configs --with-ndb-test --with-ndb-ccflags='-DERROR_INSERT'"
  5. if [ "$full_debug" ]
  6. then
  7. extra_flags="$debug_cflags"
  8. c_warnings="$c_warnings $debug_extra_warnings"
  9. cxx_warnings="$cxx_warnings $debug_extra_warnings"
  10. extra_configs="$debug_configs $extra_configs"
  11. else
  12. extra_flags="$fast_cflags"
  13. fi
  14. extra_flags="$extra_flags $max_cflags -g"
  15. . "$path/FINISH.sh"