mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
fixes for platform support for PSP
This commit is contained in:
parent
4cc0fcaf15
commit
bfd6662370
6 changed files with 33 additions and 22 deletions
4
configure
vendored
4
configure
vendored
|
@ -17,7 +17,7 @@ compile_object()
|
|||
|
||||
compile_binary()
|
||||
{
|
||||
c="$CC $CFLAGS $TMPC -o $TMPB $LDFLAGS $@"
|
||||
c="$CC $CFLAGS $TMPC -o $TMPB $LDFLAGS $@ $SYSLIBS"
|
||||
echo $c >> config.log
|
||||
$c >> config.log 2>&1
|
||||
}
|
||||
|
@ -116,7 +116,7 @@ set_platform()
|
|||
;;
|
||||
psp)
|
||||
# use newlib
|
||||
LDFLAGS="$LDFLAGS -lc -lpspuser -lpspkernel"
|
||||
SYSLIBS="-lc -lpspuser -lpspkernel"
|
||||
CFLAGS="$CFLAGS -D__PSP__"
|
||||
ARCH=mipsel
|
||||
;;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue