Let's try make a Wii U Toolchain / SDK for creating rpx/rpl.
Go to file
2017-05-05 16:59:24 +01:00
cmake Use -mno-sdata 2017-04-13 11:50:07 +01:00
crt Fix trampling of r3,r4 in crt0.S 2017-04-13 00:44:05 +01:00
docs Cheeky lil tool to track unimplemented functions. 2016-01-11 01:42:25 +00:00
include nsysnet: Update socket.h to use sys/time.h and sys/types.h 2017-04-10 23:19:21 +01:00
rpl coreinit: Add 32 bit atomic exports. 2017-04-10 23:19:21 +01:00
rules Update to support linking with newlib. 2017-04-10 23:19:21 +01:00
samples Update CMakeLists.txt 2017-04-08 17:25:50 +09:30
tools Fix zlib debug library path. 2017-05-05 16:59:24 +01:00
.gitignore Update .gitignore 2016-01-08 17:04:40 +00:00
.gitmodules Add command line options to readrpl. 2016-07-24 11:45:30 +01:00
CMakeLists.txt Move wut to using CMake instead of Makefiles. 2017-03-23 12:18:02 +00:00
LICENSE.md Create LICENSE.md 2015-12-27 02:16:34 +00:00
README.md Update README.md 2017-04-08 12:14:20 +01:00

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+).

Doxygen output can be found at https://decaf-emu.github.io/wut

If you are looking for the old Makefile based wut, that can be found on the legacy-make branch.

Requirements

  • Tested on Linux, OS X, Windows
  • devkitPPC
  • CMake
  • Make

Linux / OS X

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=install ../
make
make install
export WUT_ROOT=$PWD/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/cmake/wut-toolchain.cmake ../
make

Windows

Requires Windows CMake + Windows Make + devkitPPC + Visual Studio.

set DEVKITPPC=<Path to devkitPPC>
git clone --recursive https://github.com/decaf-emu/wut.git
cd wut
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=install -G "Visual Studio 15 2017" ../
msbuild INSTALL.vcxproj /p:Configuration=Release /p:Platform=Win32
set WUT_ROOT=%CD%\install

Then for any wut project you want to build you must use Unix Makefiles with the wut-toolchain.cmake script:

cd ..\samples\helloworld
mkdir build
cd build
cmake -DCMAKE_TOOLCHAIN_FILE=%WUT_ROOT%\cmake\wut-toolchain.cmake -G "Unix Makefiles" ../
make