Atmosphere/docs/building.md

27 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

# Building Atmosphère
Building Atmosphère is a very straightforward process that relies almost exclusively on tools provided by the [devkitPro](https://devkitpro.org) organization.
## Dependencies
+ [devkitA64](https://devkitpro.org)
+ [devkitARM](https://devkitpro.org)
2020-10-09 20:37:51 -04:00
+ [Python 2](https://www.python.org) (Python 3 may work as well, but this is not guaranteed)
+ [LZ4](https://pypi.org/project/lz4)
2020-04-27 13:40:22 -04:00
+ [PyCryptodome](https://pypi.org/project/pycryptodome) (optional)
+ [hactool](https://github.com/SciresM/hactool)
## Instructions
2021-08-20 16:17:11 -04:00
1. Follow the guide located [here](https://devkitpro.org/wiki/Getting_Started) to install and configure all the tools necessary for the build process.
2020-04-27 13:40:22 -04:00
2. Install the following packages via (dkp-)pacman:
2020-04-27 13:52:53 -04:00
+ `switch-dev`
+ `switch-glm`
2020-04-27 13:52:53 -04:00
+ `switch-libjpeg-turbo`
+ `devkitARM`
+ `devkitarm-rules`
+ `hactool`
3. Install the following library via python's package manager `pip`, required by [exosphere](components/exosphere.md):
+ `lz4`
2021-08-20 16:17:11 -04:00
4. Finally, clone the Atmosphère repository and run `make` under its root directory.