Skip to content

Commit 62863aa

Browse files
authoredApr 8, 2025··
Merge pull request #90 from pspdev/more-toolchain-to-sdk
Replace the word toolchain with SDK in more places
2 parents 9b1c9b3 + 651f76b commit 62863aa

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed
 

‎downloads.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ Download the latest update for the PSP SDK here. If you don't have it setup yet,
1616
- [Debian](https://github.com/pspdev/pspdev/releases/latest/download/pspdev-debian-latest.tar.gz)
1717
- [Docker](https://hub.docker.com/r/pspdev/pspdev)
1818

19-
Alternatively, development builds are available [here](https://github.com/pspdev/pspdev/releases/tag/latest). Only get these if you cannot wait a couple of weeks for a specific new feature or you are working on improving the toolchain itself.
19+
Alternatively, development builds are available [here](https://github.com/pspdev/pspdev/releases/tag/latest). Only get these if you cannot wait a couple of weeks for a specific new feature or you are working on improving the SDK itself.

‎index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ nav_order: 1
1212
# The PSP SDK for Homebrew
1313
{: .fs-6 .fw-700 .text-center }
1414

15-
An open source SDK for PlayStation Portable (PSP) development. It allows you to make apps and games for both custom and official firmwares. **This is a community project made by enthusiasts, it is in no way affiliated with Sony**.
15+
PSPDEV is an open source software development kit (SDK) for PlayStation Portable (PSP) development. It allows you to make apps and games for both custom and official firmwares. **This is a community project made by enthusiasts, it is in no way affiliated with Sony**.
1616
{: .fs-5 .text-center }
1717

1818
# Getting started
@@ -42,7 +42,7 @@ If you have ideas, suggestions or questions, please don't hesitate to use our [G
4242
If you need help or would like to contribute, don't hesitate to join us on [Discord](https://discord.gg/bePrj9W) or open an issue on [GitHub](https://github.com/pspdev/pspdev/issues). See you there!
4343
{: .fs-5 }
4444

45-
# Made with PSPDEV
45+
# Made with the PSPDEV SDK
4646
{: .fs-6 .fw-700 }
4747

4848
[![nzportable screenshot](images/nzp.png)](https://github.com/nzp-team/nzportable)

‎installation/debian.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ sudo apt-get update
2020
sudo apt-get install build-essential cmake pkgconf libreadline8 libusb-0.1 libgpgme11 libarchive-tools fakeroot
2121
```
2222

23-
## Toolchain
23+
## PSP SDK
2424
{: .fs-6 .fw-700 }
2525

2626
Installing the PSP SDK itself can be done with the following steps:
2727

28-
1. Download [the latest version of the toolchain here](https://github.com/pspdev/pspdev/releases/latest/download/pspdev-debian-latest.tar.gz).
28+
1. Download [the latest version of the SDK here](https://github.com/pspdev/pspdev/releases/latest/download/pspdev-debian-latest.tar.gz).
2929
2. Extract the downloaded archive into your home directory, resulting in `/home/YOURUSERNAME/pspdev` being created.
30-
3. To make the toolchain usable, some environment variables need to be set. The first step in doing so it to open the `~/.bashrc` file with the `nano` text editor using the following command from a terminal:
30+
3. To make the SDK usable, some environment variables need to be set. The first step in doing so it to open the `~/.bashrc` file with the `nano` text editor using the following command from a terminal:
3131
```shell
3232
nano ~/.bashrc
3333
```

‎installation/docker.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Docker can be used on almost every platform and offers and easy way to use the P
1414

1515
To use it, install Docker itself using the instructions [here](https://docs.docker.com/engine/install/).
1616

17-
## Toolchain
17+
## PSP SDK
1818
{: .fs-6 .fw-700 }
1919

2020
Once docker is installed, the PSPDEV image can be downloaded using the following command from a terminal:

‎installation/fedora.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ The PSP SDK requires a couple of dependencies to be installed before use. To ins
1616
sudo dnf -y install @development-tools cmake bsdtar libusb-compat-0.1 gpgme fakeroot xz nano
1717
```
1818

19-
## Toolchain
19+
## PSP SDK
2020
{: .fs-6 .fw-700 }
2121

2222
Installing the PSP SDK itself can be done with the following steps:
2323

24-
1. Download [the latest version of the toolchain here](https://github.com/pspdev/pspdev/releases/latest/download/pspdev-fedora-latest.tar.gz).
24+
1. Download [the latest version of the SDK here](https://github.com/pspdev/pspdev/releases/latest/download/pspdev-fedora-latest.tar.gz).
2525
2. Extract the downloaded archive into your home directory, resulting in `/home/YOURUSERNAME/pspdev` being created.
26-
3. To make the toolchain usable, some environment variables need to be set. The first step in doing so it to open the `~/.bashrc` file with the `nano` text editor using the following command from a terminal:
26+
3. To make the SDK usable, some environment variables need to be set. The first step in doing so it to open the `~/.bashrc` file with the `nano` text editor using the following command from a terminal:
2727
```shell
2828
nano ~/.bashrc
2929
```

‎installation/macos.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ Once brew is installed, run the following command from a terminal to install the
1818
brew install cmake pkgconf gnu-sed bash openssl libtool libmpc libarchive gettext texinfo bison flex isl gsl gmp mpfr
1919
```
2020

21-
## Toolchain
21+
## PSP SDK
2222
{: .fs-6 .fw-700 }
2323

2424
Installing the PSP SDK itself can be done with the following steps:
2525

26-
1. Download the latest version of the toolchain for your system here:
26+
1. Download the latest version of the SDK for your system here:
2727
- [arm64](https://github.com/pspdev/pspdev/releases/latest/download/pspdev-macos-latest-arm64.tar.gz) for M1 or newer CPUs.
2828
- [x86_64](https://github.com/pspdev/pspdev/releases/latest/download/pspdev-macos-13-x86_64.tar.gz) for Intel CPUs.
2929
2. Extract the downloaded archive into your home directory, resulting in `/home/YOURUSERNAME/pspdev` being created.
30-
3. To make the toolchain usable, some environment variables need to be set. The first step in doing so it to open the `~/.zprofile` file with the `pico` text editor using the following command from a terminal:
30+
3. To make the SDK usable, some environment variables need to be set. The first step in doing so it to open the `~/.zprofile` file with the `pico` text editor using the following command from a terminal:
3131
```shell
3232
pico ~/.zprofile
3333
```

‎installation/ubuntu.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ sudo apt-get update
2020
sudo apt-get install build-essential cmake pkgconf libreadline8 libusb-0.1 libgpgme11 libarchive-tools fakeroot
2121
```
2222

23-
## Toolchain
23+
## PSP SDK
2424
{: .fs-6 .fw-700 }
2525

2626
Installing the PSP SDK itself can be done with the following steps:
2727

28-
1. Download [the latest version of the toolchain here](https://github.com/pspdev/pspdev/releases/latest/download/pspdev-ubuntu-latest-x86_64.tar.gz).
28+
1. Download [the latest version of the SDK here](https://github.com/pspdev/pspdev/releases/latest/download/pspdev-ubuntu-latest-x86_64.tar.gz).
2929
2. Extract the downloaded archive into your home directory, resulting in `/home/YOURUSERNAME/pspdev` being created.
30-
3. To make the toolchain usable, some environment variables need to be set. The first step in doing so it to open the `~/.bashrc` file with the `nano` text editor using the following command from a terminal:
30+
3. To make the SDK usable, some environment variables need to be set. The first step in doing so it to open the `~/.bashrc` file with the `nano` text editor using the following command from a terminal:
3131
```shell
3232
nano ~/.bashrc
3333
```

‎installation/windows.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,20 @@ sudo apt-get update
4141
sudo apt-get install build-essential cmake pkgconf libreadline8 libusb-0.1 libgpgme11 libarchive-tools fakeroot wget
4242
```
4343

44-
## Toolchain
44+
## PSP SDK
4545
{: .fs-6 .fw-700 }
4646

4747
Installing the PSP SDK itself can be done with the following steps:
4848

49-
1. In a fresh WSL Session download the Toolchain Archive using the following command:
49+
1. In a fresh WSL Session download the SDK using the following command:
5050
```shell
5151
wget https://github.com/pspdev/pspdev/releases/latest/download/pspdev-ubuntu-latest-x86_64.tar.gz
5252
```
5353
2. Extract the archive using:
5454
```shell
5555
tar -xvf pspdev-ubuntu-latest-x86_64.tar.gz
5656
```
57-
3. To make the toolchain usable, some environment variables need to be set. The first step in doing so it to open the `~/.bashrc` file with the `nano` text editor using the following command from an Ubuntu terminal:
57+
3. To make the SDK usable, some environment variables need to be set. The first step in doing so it to open the `~/.bashrc` file with the `nano` text editor using the following command from an Ubuntu terminal:
5858
```shell
5959
nano ~/.bashrc
6060
```

0 commit comments

Comments
 (0)
Please sign in to comment.