Go to file
Maschell a91e76ff39 Only save artifacts 2018-10-23 14:06:13 +02:00
libs Added missing dependicies 2017-10-29 09:57:33 +01:00
source Add the function _SYSGetSystemApplicationTitleId 2018-10-23 13:55:11 +02:00
.gitattributes :neckbeard: Added .gitattributes & .gitignore files 2016-04-25 20:33:05 +02:00
.gitignore First commit of the static lib version. 2017-10-29 08:28:11 +01:00
.travis.yml [Travis] Only reinstall packages if updated. 2018-05-26 16:29:13 +02:00
Dockerfile Only save artifacts 2018-10-23 14:06:13 +02:00
Makefile [Travis] Fixed caching 2018-05-26 12:17:42 +02:00
README.md Update information about the docker image usage to the README 2018-09-21 16:04:08 +02:00

README.md

Dynamic libs for WiiU homebrew.

Build Status

Compiling

Install this static library into your portlibs folder via:

make && make install

Link the application with:

-ldynamiclibs

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

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

Usage

To be able to use this library, you need to include the header initialize the OS functions.

InitOSFunctionPointers();

After that, you can initialize any lib and use their functions. Example:

InitVPadFunctionPointers();
InitProcUIFunctionPointers();

Check out the header for more information.

Dependencies

All needed dependencies are in the "libs" folder of this repository. Extract the "portlibs.zip" archive into your devkitPro directory.
The archive includes:

  • The "curl" header

Use the prebuilt files from a Docker image.

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

Example:

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

Credits

  • Based on the dynamic_libs from dimok.
  • Various other