Go to file
Maschell 2af893ef93 [Docker] Save results in scratch image 2018-12-26 19:04:39 +01:00
source Fix compiling with devkitpro r32. Fix Issue #2 2018-07-07 18:09:45 +02:00
.gitattributes 👾 Added .gitattributes & .gitignore files 2017-10-29 08:31:01 +01:00
.gitignore First commit. Have fun! 2017-10-29 09:24:06 +01:00
.travis.yml [Travis] Only reinstall packages if updated. 2018-05-26 16:31:26 +02:00
Dockerfile [Docker] Save results in scratch image 2018-12-26 19:04:39 +01:00
Makefile [Travis] Now using pacman for getting devkitppc, getting dynamic libs via git. 2018-05-26 12:26:34 +02:00
README.md Add information about the docker image to the README 2018-09-21 16:18:43 +02:00

README.md

libutils for WiiU homebrew.

Build Status

This is a library for common functions.

Features

  • FS utility functions
  • Wrapper for easy kernel read/write (KernelCopyData to copy data to any place)
  • Multiple language support via gettext
  • Common system functions (Exception handler, memory functions, Thread wrapper etc.)
  • Built in function patcher engine
  • String tools

(For some features the application need to be loaded from the homebrew_launcher to have kernel access)

Logging usage

To able to use the logging, you need to compile the target application with follow C/C++ flag:

  -D__LOGGING__

Usage in the application:

log_init(); // Enables broadcast logging.
printf("Just prints this text\n");
DEBUG_FUNCTION_LINE("This prints my current function, file and line\n");

Read the logs via the udp_debug_reader.

Usage (TODO)

Link the application with

-lutils -ldynamiclibs

You also need to add the include path to your Makefile. Example:

export INCLUDE	:= [...]  -I$(PORTLIBS)/include/libutils

Check out the header for more information.

Compiling

For compiling and using this lib, you need the dynamic_libs installed to your portlibs folder.

Install this static library into your portlibs folder via:

make && make install

Dependencies

Use the prebuilt files from a Docker image.

The image wiiulegacy/libutils on Docker Hub provides a prebuilt library in the /artifacts directory. Copy it into your DevkitPPC portlibs folder.

Example:

COPY --from=wiiulegacy/libutils:0.1 /artifacts $DEVKITPRO/portlibs

Credits (TODO)

  • Serveral users