mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-03 03:29:25 +01:00
10 lines
267 B
Bash
10 lines
267 B
Bash
#!/bin/bash
|
|
if [[ "$1" != "" ]]
|
|
then
|
|
FPCSRC="$HOME/FPC/Demo/src/fpc"
|
|
cd $FPCSRC/tests/sparc
|
|
$FPCSRC/compiler/ppcsparc -s -al -Fi$FPCSRC/rtl/{unix,linux,sparc,inc} -dSPARC "$@"
|
|
else
|
|
fpc pp -gl -oppcsparc -dExtDebug -Fusparc -Fusystems -dSPARC -dNoOpt -dGDB
|
|
fi
|