Bring things to new compile-r7rs
This commit is contained in:
parent
3ef686652f
commit
50f5290070
|
|
@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \
|
|||
RUN git clone https://github.com/ashinn/chibi-scheme.git --depth=1
|
||||
RUN cd chibi-scheme && make -j 32
|
||||
RUN git clone https://gitea.scheme.org/Retropikzel/compile-r7rs.git --depth=1
|
||||
RUN cd compile-r7rs --branch=retropikzel-dependency-fixes && make
|
||||
RUN cd compile-r7rs && make
|
||||
|
||||
ARG SCHEME=chibi
|
||||
ARG IMAGE=chibi:head
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ RUN apt-get update && apt-get install -y \
|
|||
ca-certificates \
|
||||
make \
|
||||
libffi-dev
|
||||
RUN mkdir ${HOME}/.snow && echo "()" > ${HOME}/.snow/config.scm
|
||||
RUN mkdir -p ${HOME}/.snow && echo "()" > ${HOME}/.snow/config.scm
|
||||
COPY --from=build /chibi-scheme /chibi-scheme
|
||||
RUN cd /chibi-scheme && make -j 8 install
|
||||
COPY --from=build /compile-r7rs /compile-r7rs
|
||||
|
|
|
|||
|
|
@ -321,14 +321,11 @@
|
|||
(chicken (include-relative "c/main.scm")
|
||||
(include-relative "c/libc.scm")
|
||||
(include-relative "c/c-bytevectors.scm")
|
||||
(include-relative "c/pointer.scm")
|
||||
;(include-relative "c/array.scm")
|
||||
;(include-relative "c/struct.scm")
|
||||
)
|
||||
(include-relative "c/pointer.scm"))
|
||||
(else (include "c/main.scm")
|
||||
(include "c/libc.scm")
|
||||
(include "c/c-bytevectors.scm")
|
||||
(include "c/pointer.scm")
|
||||
(include "c/pointer.scm")))
|
||||
;(include "c/array.scm")
|
||||
;(include "c/struct.scm")
|
||||
)))
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue