mirror of
https://github.com/decompals/wibo.git
synced 2025-08-31 16:00:17 +00:00
* More kernel32 functions implemented poorly * fix a smattering of issues to make cc1n64 work * fix issues breaking psyq aspsx * Return lowercase Windows paths if uppercase path doesnt exist * Add SetStdHandle * Add super naive FormatMessageA * Case insensitive file matching * PR comments * Adding CompareString* + SetEnvironmentVariableA functions Co-authored-by: Ash Wolf <ninji@wuffs.org> Co-authored-by: Simon Lindholm <simon.lindholm10@gmail.com>
24 lines
417 B
Docker
24 lines
417 B
Docker
FROM ubuntu:22.04 as build
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
g++ \
|
|
g++-multilib \
|
|
make
|
|
|
|
COPY . /wibo
|
|
|
|
RUN make -C /wibo
|
|
|
|
|
|
FROM ubuntu:22.04
|
|
|
|
RUN dpkg --add-architecture i386 \
|
|
&& apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
libstdc++6:i386
|
|
|
|
COPY --from=build /wibo/wibo /usr/local/sbin/wibo
|
|
|
|
CMD /usr/local/sbin/wibo
|