-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
54 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,33 @@ | ||
# psp-tools | ||
A set of tools needed before compiling psp-packages | ||
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/pspdev/psptoolchain-extra/CI?label=CI&logo=github&style=for-the-badge)](https://github.com/pspdev/psptoolchain-extra/actions?query=workflow%3ACI) | ||
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/pspdev/psptoolchain-extra/CI-Docker?label=CI-Docker&logo=github&style=for-the-badge)](https://github.com/pspdev/psptoolchain-extra/actions?query=workflow%3ACI-Docker) | ||
|
||
What does this do? | ||
================== | ||
|
||
This program will automatically build and install extra tools | ||
used in the creation of homebrew software for the Sony Playstation Portable | ||
handheld videogame system. | ||
|
||
How do I use it? | ||
================== | ||
|
||
1. Set up your environment by installing the following software: | ||
|
||
bg++/gcc-c++, gcc, git, autoconf, automake, python3, py3-pip, cmake, pkgconfig, libarchive, openssl and libtool | ||
|
||
2. Set the PSPDEV and PATH environmental variables: | ||
|
||
```shell | ||
export PSPDEV=/usr/local/pspdev | ||
export PATH=$PATH:$PSPDEV/bin | ||
``` | ||
|
||
The PSPDEV variable is the directory the toolchain will be installed to, | ||
change this if you wish. If possible the toolchain script will automatically | ||
add these variables to your systems login scripts, otherwise you will need | ||
to manually add these variables yourself. | ||
|
||
3. Run the toolchain script: | ||
```shell | ||
./build-all.sh | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters