From dbdb232a81bf5cb74562766ed77cb65e0b68d822 Mon Sep 17 00:00:00 2001 From: Maschell Date: Mon, 10 Aug 2020 15:25:36 +0200 Subject: [PATCH] Use -lz directly to be compatible to latest wut version --- Dockerfile | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b0f613b..a0b4fbe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM wiiuenv/devkitppc:20200625 +FROM wiiuenv/devkitppc:20200810 COPY --from=wiiuenv/wiiumodulesystem:20200626 /artifacts $DEVKITPRO diff --git a/Makefile b/Makefile index 7e17218..4e58c9c 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ WUMS_ROOT := $(DEVKITPRO)/wums TARGET := payload BUILD := build SOURCES := source \ - source/libelf\ + source/elfio\ source/utils\ source/fs \ source/module @@ -41,7 +41,7 @@ CXXFLAGS := $(CFLAGS) -std=c++17 ASFLAGS := -g $(ARCH) LDFLAGS = -g $(ARCH) $(RPXSPECS) -Wl,-Map,$(notdir $*.map) -LIBS := -lwut +LIBS := -lwut -lz #------------------------------------------------------------------------------- # list of directories containing libraries, this must be the top level