Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

newlib/libcpp: update commit hash in dockerfile #369

Merged
merged 1 commit into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libc++/docker/docker-libc++-10.5.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN apt install -y libmpc-dev file

# Clone the libtock-c source so we can use the build scripts
RUN git clone https://github.com/tock/libtock-c -b make-precompiled
RUN cd libtock-c && git fetch && git checkout 6dc8907938e7daa307650ba6577a59c25214ef3f
RUN cd libtock-c && git fetch && git checkout d6230f8cb7cef1f1ecdc4f2eb06f5416634ea332

# Actually build the toolchain
RUN cd libtock-c/libc++ && make GCC_VERSION=10.5.0 NEWLIB_VERSION=4.2.0.20211231
2 changes: 1 addition & 1 deletion libc++/docker/docker-libc++-12.3.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN apt install -y libmpc-dev file

# Clone the libtock-c source so we can use the build scripts
RUN git clone https://github.com/tock/libtock-c -b make-precompiled
RUN cd libtock-c && git fetch && git checkout 6dc8907938e7daa307650ba6577a59c25214ef3f
RUN cd libtock-c && git fetch && git checkout d6230f8cb7cef1f1ecdc4f2eb06f5416634ea332

# Actually build the toolchain
RUN cd libtock-c/libc++ && make GCC_VERSION=12.3.0 NEWLIB_VERSION=4.3.0.20230120
2 changes: 1 addition & 1 deletion libc++/docker/docker-libc++-13.2.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN apt install -y libmpc-dev file

# Clone the libtock-c source so we can use the build scripts
RUN git clone https://github.com/tock/libtock-c -b make-precompiled
RUN cd libtock-c && git fetch && git checkout 6dc8907938e7daa307650ba6577a59c25214ef3f
RUN cd libtock-c && git fetch && git checkout d6230f8cb7cef1f1ecdc4f2eb06f5416634ea332

# Actually build the toolchain
RUN cd libtock-c/libc++ && make GCC_VERSION=13.2.0 NEWLIB_VERSION=4.3.0.20230120
2 changes: 1 addition & 1 deletion newlib/docker/docker-newlib-4.2.0.20211231/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN apt install -y git build-essential wget rsync zip

# Clone the libtock-c source so we can use the build scripts
RUN git clone https://github.com/tock/libtock-c -b make-precompiled
RUN cd libtock-c && git fetch && git checkout e8cb1bc98695b36b331ac977124c00ea160ceb76
RUN cd libtock-c && git fetch && git checkout d6230f8cb7cef1f1ecdc4f2eb06f5416634ea332

# Actually build the toolchain
RUN cd libtock-c/newlib && make NEWLIB_VERSION=4.2.0.20211231
2 changes: 1 addition & 1 deletion newlib/docker/docker-newlib-4.3.0.20230120/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN apt install -y git build-essential wget rsync texinfo zip

# Clone the libtock-c source so we can use the build scripts
RUN git clone https://github.com/tock/libtock-c -b make-precompiled
RUN cd libtock-c && git fetch && git checkout e8cb1bc98695b36b331ac977124c00ea160ceb76
RUN cd libtock-c && git fetch && git checkout d6230f8cb7cef1f1ecdc4f2eb06f5416634ea332

# Actually build the toolchain
RUN cd libtock-c/newlib && make NEWLIB_VERSION=4.3.0.20230120
Loading