Closed tomrow closed 3 years ago
It seems that the build is missing dependency bc
and also fails to convert a sound file
I made a change to the Dockerfile
which allows it to build successfully:
FROM devkitpro/devkitarm:latest as build
RUN apt update
RUN apt -y install build-essential bsdmainutils sox
RUN mkdir /sm64
WORKDIR /sm64
CMD echo 'usage: docker run --rm --mount type=bind,source="$(pwd)",destination=/sm64 sm64dsi make VERSION=us COMPILER=gcc -j4\n' \
'see https://github.com/Hydr8gon/sm64/blob/nds/README.md for advanced usage'
Changed to:
FROM devkitpro/devkitarm:latest as build
RUN apt update
RUN apt -y install build-essential bsdmainutils sox bc
RUN mkdir /sm64
WORKDIR /sm64
CMD echo 'usage: docker run --rm --mount type=bind,source="$(pwd)",destination=/sm64 sm64dsi make VERSION=us COMPILER=gcc -j4\n' \
'see https://github.com/Hydr8gon/sm64/blob/nds/README.md for advanced usage'
Oops, I had hoped bc
would be preinstalled on most setups but I didn't actually confirm this. I'll actually change it to do the frequency division with python, since that's already a dependency anyway. Thanks for letting me know!