*** empty log message ***

This commit is contained in:
mazen 2003-02-26 22:02:08 +00:00
parent 18ab545cb7
commit e91ce05240

View File

@ -7,7 +7,7 @@ INCLUDE_PATH=`echo -Fi"$RTL_DIR"/{unix,linux,sparc,inc,linux/sparc}`
if [[ "$1" == "-B" ]] || [[ "$#" == 0 ]]
then
cd "$COMP_DIR"
fpc fpc -gl -dExtDebug -Fu"sparc;systems" -dSPARC -dNoOpt -dGDB "$1"
fpc pp -gl -oppcsparc -dExtDebug -Fu"sparc;systems" -dSPARC -dNoOpt -dGDB "$1"
fi
if [[ "$#" -gt "0" ]] && ( [[ "$1" != "-B" ]] || [[ "$#" -gt "1" ]] )
then
@ -16,8 +16,8 @@ then
then
shift 1
SRC_DIR=`echo "$COMP_DIR/"{,sparc,systems}":"`
gdb -d "$SRC_DIR" --args "$COMP_DIR"/fpc -s -al $INCLUDE_PATH -dSPARC "$@"
gdb -d "$SRC_DIR" --args "$COMP_DIR"/ppcsparc -s -al $INCLUDE_PATH -dSPARC "$@"
else
"$COMP_DIR"/fpc -s -al $INCLUDE_PATH -dSPARC "$@"
"$COMP_DIR"/ppcsparc -s -al $INCLUDE_PATH -dSPARC "$@"
fi
fi