Skip to content

Latest commit

 

History

History
73 lines (49 loc) · 2.36 KB

tips_tricks.md

File metadata and controls

73 lines (49 loc) · 2.36 KB
title layout nav_order
Tips and Tricks
home
5

Tips and Tricks

{: .fs-8 .fw-700 .text-center }

Here some useful tips for developing for the PSP.

Making Programs Work on Unmodded PSPs

{: .fs-6 .fw-700 }

The PSPDEV toolchain contains tools for making your program work on unmodded PSPs. This can be done by running psp-cmake with some additional commands when building like so:

mkdir build && cd build
psp-cmake -DBUILD_PRX=1 -DENC_PRX=1 .. && make

This does require create_pbp_file to be used in your CMakeLists.txt file. After the first build, running make is enough to get an EBOOT.PBP file which works on official firmware with any new changes made to the code.

Add PSP Specific Code to a Multi-Platform Programs

{: .fs-6 .fw-700 }

When porting a game to the PSP, some PSP specific code might be needed. To make this code only apply to PSP, it is possible to use a simple ifdef statements which checks for __PSP__ like so:

#ifdef __PSP__
    // Do PSP specific thing
#else
    // Do the thing all other systems should do
#endif

This makes sure that the other systems supported by the program keeps working the same, while still making it possible to add support for the PSP.

Managing Libraries

{: .fs-6 .fw-700 }

There are many C and C++ libraries available within the PSPDEV toolchain and most of them will be installed by default. Libraries are where most of the updates within the toolchain happen and they can be updated manually without redownload the toolchain using psp-pacman.

Updating the libraries installed can be done with the following command:

psp-pacman -Syu

After updating, you can list all available libraries with the following command:

psp-pacman -Sl

For a full list with information on each library, it's easiest to take a look on the repository's web pages.

Installing a library can be done with the following command:

psp-pacman -S library

Updating the Toolchain

{: .fs-6 .fw-700 }

A new version of the PSPDEV toolchain is released at least once a month, so updating should be done regularly if you want to benefit from new features and bug fixes.

To update the toolchain, simply follow the installation instruction for your system on the Installation page. Installing the dependencies can be skipped.