mirror of
https://github.com/devkitPro/wut.git
synced 2026-09-26 20:07:32 -05:00
3336fbaf5dafba6bf8ec94554c7fca89ce25ccc5
wut
Let's try make a Wii U Toolchain / SDK for creating rpx/rpl.
Licensed under the terms of the GNU General Public License, version 2 or later (GPLv2+).
Rewrite
This branch is an WIP experimental rewrite to simplify how elf2rpl works and hopefully make it more correct for more advanced C++ programs.
TODO:
- Maybe add fopen for sdcard ?
Linux
Requires CMake + Make + devkitPPC + libzdev
export DEVKITPPC=<Path to devkitPPC>
git clone --recursive https://github.com/decaf-emu/wut.git
cd wut
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/path/to/install ../
make
make install
export WUT_ROOT=/path/to/install
Then for any wut project you want to build you must use the wut.toolchain.cmake script:
cd ../samples/helloworld
mkdir build && cd build
cmake -DCMAKE_TOOLCHAIN_FILE=$WUT_ROOT/share/wut.toolchain.cmake ../
make
Description
Languages
C
69.9%
C++
29.5%
Makefile
0.4%
CMake
0.1%
Assembly
0.1%