Fix Gauche library building
This commit is contained in:
parent
d0cb1faf2b
commit
16ef33351e
|
|
@ -83,10 +83,10 @@ to being portable by conforming to some specification.
|
|||
|
||||
## Implementation support tables
|
||||
|
||||
Notes:
|
||||
Required versions:
|
||||
|
||||
- STklos
|
||||
- Needed features WIP [https://github.com/Retropikzel/STklos](https://github.com/Retropikzel/STklos)
|
||||
- Guile >= 3
|
||||
- STklos > 2.10
|
||||
|
||||
### Primitives 1 table
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ FROM debian:bookworm AS build
|
|||
RUN apt-get update && apt-get install -y wget build-essential make cmake libgc-dev zlib1g-dev libffi-dev libssl-dev git
|
||||
RUN git clone https://github.com/Retropikzel/chibi-scheme.git --branch=snow-chibi-foreign-depends
|
||||
RUN cd chibi-scheme && make PREFIX=/usr/local-other && make PREFIX=/usr/local-other install
|
||||
RUN wget https://github.com/ktakashi/sagittarius-scheme/archive/refs/tags/version_0.9.12.tar.gz && tar -xf version_0.9.12.tar.gz
|
||||
RUN wget https://github.com/ktakashi/sagittarius-scheme/releases/download/v0.9.13/sagittarius-0.9.13.tar.gz && tar -xf version_0.9.13.tar.gz
|
||||
RUN cd sagittarius-scheme-version_0.9.12 && ./dist.sh gen && mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=/usr/local-other .. && make && make install
|
||||
|
||||
FROM schemers/${COMPILE_R7RS}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
ARG COMPILE_R7RS=chibi
|
||||
FROM schemers/sagittarius AS build
|
||||
RUN apt-get update && apt-get install -y wget build-essential make cmake libgc-dev zlib1g-dev libffi-dev libssl-dev
|
||||
RUN wget https://github.com/ktakashi/sagittarius-scheme/archive/refs/tags/version_0.9.12.tar.gz && tar -xf version_0.9.12.tar.gz
|
||||
RUN wget https://github.com/ktakashi/sagittarius-scheme/releases/download/v0.9.13/sagittarius-0.9.13.tar.gz && tar -xf version_0.9.13.tar.gz
|
||||
RUN cd sagittarius-scheme-version_0.9.12 && ./dist.sh gen && mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=/usr/local-other .. && make && make install
|
||||
|
||||
FROM schemers/${COMPILE_R7RS}
|
||||
|
|
|
|||
Loading…
Reference in New Issue