Let's try make a Wii U Toolchain / SDK for creating rpx/rpl.
Go to file
James Benton ae70d3a4a9 elf2rpl: Remove fixSectionAlign.
Not needed.
2018-05-30 22:40:53 +01:00
cafe coreinit: Add MEMVisitAllocatedForExpHeap 2018-05-30 19:05:54 +01:00
docs Add CMake docs target which runs doxygen. 2018-05-23 11:09:54 +01:00
include Add support for generating RPL files. 2018-05-30 21:56:18 +01:00
libraries wutcrt: Setup a proper stack frame for _start. 2018-05-30 22:13:49 +01:00
samples Add a simple .rpl file example. 2018-05-30 21:56:29 +01:00
share ld: Add (NOLOAD) to .bss section. 2018-05-30 22:40:20 +01:00
tools elf2rpl: Remove fixSectionAlign. 2018-05-30 22:40:53 +01:00
.gitignore Update .gitignore 2016-01-08 17:04:40 +00:00
.gitmodules Add zlib as a submodule. 2018-05-25 13:57:47 +01:00
.travis.yml Add tools readrpl, udplogserver. 2018-05-23 12:35:24 +01:00
appveyor.yml appveyor attempt #2 2018-05-25 14:26:49 +01:00
CMakeLists.txt tools: Add rplexportgen to produce SHT_RPL_EXPORTS. 2018-05-30 18:56:10 +01:00
LICENSE.md Create LICENSE.md 2015-12-27 02:16:34 +00:00
README.md Update README.md 2018-05-28 11:45:32 +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.

Requirements

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> -DDEVKITPPC=$DEVKITPPC ../
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 -DDEVKITPPC=$DEVKITPPC -DWUT_ROOT=$WUT_ROOT ../
make