change Options for debug

This commit is contained in:
Stephan Raue 2009-04-07 12:07:27 +02:00
parent 326e6a873b
commit eab1fd14c6
2 changed files with 8 additions and 24 deletions

View File

@ -135,30 +135,6 @@ LCD_MODEL=HD44780-winamp
LCD_WIDTH=16
LCD_HEIGHT=2
if [ "$OPENELEC_VERSION" = devel ]; then
# enable debuging (debugging flags and enables gdb)
DEBUG=no
# enable gdb (yes/no)
GDB=yes
# enable devel tools (yes/no)
DEVTOOLS=yes
else
# enable debuging (debugging flags and enables gdb)
DEBUG=no
# enable gdb (yes/no)
GDB=no
# enable devel tools (yes/no)
DEVTOOLS=no
fi
# verbose compilation mode (yes/no)
VERBOSE=yes

View File

@ -26,6 +26,14 @@ SYSROOT_PREFIX=$ROOT/$TOOLCHAIN/$TARGET_NAME/sysroot
LIB_PREFIX=$SYSROOT_PREFIX/usr
TARGET_PREFIX=$ROOT/$TOOLCHAIN/bin/$TARGET_NAME-
if [ "$OPENELEC_VERSION" = devel ]; then
DEVTOOLS=yes
DEBUG=no
else
DEVTOOLS=no
DEBUG=no
fi
HOST_NAME_CACHE=$BUILD/configtools/host_name
if [ -f $HOST_NAME_CACHE ]; then
HOST_NAME=`cat $HOST_NAME_CACHE`