diff --git a/README.md b/README.md index 0017339..48fa76e 100644 --- a/README.md +++ b/README.md @@ -8,21 +8,21 @@ Licensed under the terms of the GNU General Public License, version 2 or later ( ## 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 ? +## Requirements +- Custom [devkitPPC](https://github.com/exjam/buildscripts) ## Linux -Requires CMake + Make + [devkitPPC](https://devkitpro.org/wiki/Getting_Started/devkitPPC) + libzdev +Requires CMake + Make + [devkitPPC](https://github.com/exjam/buildscripts) + libzdev ``` export DEVKITPPC= git clone --recursive https://github.com/decaf-emu/wut.git cd wut mkdir build && cd build -cmake -DCMAKE_INSTALL_PREFIX=/path/to/install ../ +cmake -DCMAKE_INSTALL_PREFIX= -DDEVKITPPC=$DEVKITPPC ../ make make install -export WUT_ROOT=/path/to/install +export WUT_ROOT= ``` Then for any wut project you want to build you must use the wut.toolchain.cmake script: @@ -30,6 +30,6 @@ Then for any wut project you want to build you must use the wut.toolchain.cmake ``` cd ../samples/helloworld mkdir build && cd build -cmake -DCMAKE_TOOLCHAIN_FILE=$WUT_ROOT/share/wut.toolchain.cmake ../ +cmake -DCMAKE_TOOLCHAIN_FILE=$WUT_ROOT/share/wut.toolchain.cmake -DDEVKITPPC=$DEVKITPPC -DWUT_ROOT=$WUT_ROOT ../ make ```