Setting up Development Environment: Difference between revisions
Undo revision 20670 by LinkSoraZelda (talk) The link is not dead, it definitely works. The edit makes it prone to becoming outdated, only the newest version of the script should be used. |
WinterMute (talk | contribs) |
||
Line 19: | Line 19: | ||
==Unix-like platforms== | ==Unix-like platforms== | ||
Currently devkitPro provides precompiled versions of devkitARM for the following Unix-like platforms: Linux ( | Currently devkitPro provides precompiled versions of devkitARM for the following Unix-like platforms: Linux (x86_64), macOS (x86_64). Note that Linux x86_64 binaries are usable under WSL. | ||
* First, you need to install curl so the installer can download the devkitARM packages, and you should also install Git - you'll need it to update | * First, you need to install curl so the installer can download the devkitARM packages, and you should also install Git - you'll need it to update libnx or share your code on GitHub, among many other things. If you are running Linux, you'll also need wget; it comes preinstalled on most distributions, but not all. | ||
* Find your way into a shell (eg. by opening a Terminal window), and follow the instructions for your OS: | * Find your way into a shell (eg. by opening a Terminal window), and follow the instructions for your OS: | ||
Line 34: | Line 34: | ||
curl -L https://raw.githubusercontent.com/devkitPro/installer/master/perl/devkitARMupdate.pl -o devkitARMupdate.pl | curl -L https://raw.githubusercontent.com/devkitPro/installer/master/perl/devkitARMupdate.pl -o devkitARMupdate.pl | ||
chmod +x ./devkitARMupdate.pl | chmod +x ./devkitARMupdate.pl | ||
./devkitARMupdate.pl | |||
</pre> | </pre> | ||
You can either use sudo here or chown /opt/devkitpro to be writable by your user before running the script. | |||
= Building the examples = | = Building the examples = |