Let's try make a Wii U Toolchain / SDK for creating rpx/rpl.
Go to file
2018-05-25 11:48:37 +01:00
cafe Rewrite! 2018-05-23 09:47:28 +01:00
docs Add CMake docs target which runs doxygen. 2018-05-23 11:09:54 +01:00
include Fix size of OSThread structure 2017-11-01 11:00:18 +00:00
libraries whb: Add a log console. 2018-05-25 11:48:14 +01:00
samples/helloworld Improve the helloworld sample. 2018-05-25 11:48:37 +01:00
share Add newlib syscalls. 2018-05-25 11:31:44 +01:00
tools elf2rpl: Change fixLoaderVirtualAddress to use section type instead of name. 2018-05-25 00:17:22 +01:00
.gitignore Update .gitignore 2016-01-08 17:04:40 +00:00
.gitmodules Add tools readrpl, udplogserver. 2018-05-23 12:35:24 +01:00
.travis.yml Add tools readrpl, udplogserver. 2018-05-23 12:35:24 +01:00
appveyor.yml Rewrite! 2018-05-23 09:47:28 +01:00
CMakeLists.txt Add tools readrpl, udplogserver. 2018-05-23 12:35:24 +01:00
LICENSE.md Create LICENSE.md 2015-12-27 02:16:34 +00:00
README.md Add newlib syscalls. 2018-05-25 11:31:44 +01:00

Build status Build Status

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