File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 11FROM buildpack-deps:stable
22
3- RUN apt-get update && apt-get -y install cmake ninja-build
3+ RUN apt-get update && apt-get -y install cmake ninja-build lzip
44RUN useradd -ms /bin/bash ez80
55USER ez80
66WORKDIR /home/ez80
@@ -18,3 +18,9 @@ RUN cd llvm-project-1b767f5cc45505fb2d6285e717d439c6b1ea2e7f \
1818 -DLLVM_DEFAULT_TARGET_TRIPLE=ez80-none-elf \
1919 ../llvm-project-1b767f5cc45505fb2d6285e717d439c6b1ea2e7f/llvm \
2020 && ninja install
21+ RUN curl -LO https://mirror.freedif.org/GNU/binutils/binutils-2.36.1.tar.lz
22+ RUN tar xf binutils-2.36.1.tar.lz
23+ RUN cd binutils-2.36.1 \
24+ && ./configure --target=z80-none-elf --program-prefix=ez80-none-elf- --prefix=/opt/local/ez80-none-elf \
25+ && make -j4 \
26+ && make install
You can’t perform that action at this time.
0 commit comments