Skip to content

Commit

Permalink
Generic N64 cores: add RSP / RDP dynarec (#1487)
Browse files Browse the repository at this point in the history
* parallel-n64: enable RSP dynarec for Generic

* mupen64plus_next: enable RDP and RSP dynarec
  • Loading branch information
ToKe79 committed Sep 6, 2021
1 parent 44ff0ad commit b753512
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/libretro/mupen64plus_next/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ make_target() {
Generic)
case $ARCH in
x86_64)
make WITH_DYNAREC=x86_64
make WITH_DYNAREC=x86_64 HAVE_PARALLEL_RDP=1 HAVE_PARALLEL_RSP=1 HAVE_THR_AL=1 LLE=1
;;
i386)
make WITH_DYNAREC=x86
make WITH_DYNAREC=x86 HAVE_PARALLEL_RDP=1 HAVE_PARALLEL_RSP=1 HAVE_THR_AL=1 LLE=1
;;
esac
;;
Expand Down
4 changes: 2 additions & 2 deletions packages/libretro/parallel-n64/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ make_target() {
else
make platform=armv-neon WITH_DYNAREC=$DYNAREC HAVE_PARALLEL=1
fi
elif [[ "$PROJECT" == "Generic_VK_nvidia" ]]; then
elif [ "$PROJECT" = "Generic" ]; then
LDFLAGS="$LDFLAGS -lpthread"
make WITH_DYNAREC=$DYNAREC HAVE_PARALLEL=1 HAVE_OPENGL=0
make WITH_DYNAREC=$DYNAREC HAVE_PARALLEL=1 HAVE_PARALLEL_RSP=1 HAVE_THR_AL=1
elif [[ "$TARGET_FPU" =~ "neon" ]]; then
CFLAGS="$CFLAGS -DGL_BGRA_EXT=0x80E1" # Fix build for platforms where GL_BGRA_EXT is not defined
make platform=armv-gles-neon
Expand Down

0 comments on commit b753512

Please sign in to comment.