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

Addling libreadline to support abc. closes #1647 #1648

Closed
wants to merge 2 commits into from
Closed
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 deps/crucible
Submodule crucible updated 804 files
2 changes: 1 addition & 1 deletion deps/cryptol
Submodule cryptol updated 449 files
2 changes: 1 addition & 1 deletion deps/cryptol-specs
Submodule cryptol-specs updated 31 files
+0 −29 .github/workflows/ci.yml
+1 −0 Common/EC/PrimeField/PFEC.cry
+0 −309 Common/LUP.cry
+0 −92 Common/pick.cry
+7 −9 Primitive/Asymmetric/Signature/Dilithium/Round1/DilithiumBitVec.cry
+11 −13 Primitive/Asymmetric/Signature/Dilithium/Round1/DilithiumInteger.cry
+6 −9 Primitive/Asymmetric/Signature/Dilithium/Round2/DilithiumParameterized.cry
+5 −5 Primitive/Asymmetric/Signature/Dilithium/Round2/DilithiumRecommended.cry
+5 −5 Primitive/Asymmetric/Signature/Dilithium/Round2/DilithiumVeryhigh.cry
+5 −5 Primitive/Asymmetric/Signature/Dilithium/Round2/DilithiumWeak.cry
+65 −0 Primitive/Asymmetric/Signature/Dilithium/Utils.cry
+239 −0 Primitive/Asymmetric/Signature/trash/DilithiumBv.cry
+144 −144 Primitive/Keyless/Hash/SHA.cry
+32 −32 Primitive/Keyless/Hash/SHA224.cry
+1 −1 Primitive/Keyless/Hash/SHA256.cry
+0 −8 Primitive/Keyless/Hash/SHA3/SHA3.cry
+0 −29 Primitive/Keyless/Hash/SHA3/SHA3_224.cry
+0 −21 Primitive/Keyless/Hash/SHA3/SHA3_256.cry
+0 −17 Primitive/Keyless/Hash/SHA3/SHA3_384.cry
+0 −21 Primitive/Keyless/Hash/SHA3/SHA3_512.cry
+1 −1 Primitive/Keyless/Hash/SHA384.cry
+1 −1 Primitive/Keyless/Hash/SHA512.cry
+1 −1 Primitive/Keyless/Hash/SHA512_224.cry
+1 −1 Primitive/Keyless/Hash/SHA512_256.cry
+0 −34 Primitive/Keyless/Hash/SHAKE/SHAKE128.cry
+0 −32 Primitive/Keyless/Hash/SHAKE/SHAKE256.cry
+74 −0 Primitive/Keyless/Hash/keccak.cry
+0 −8 Primitive/Keyless/Hash/utils.cry
+1 −1 Primitive/Symmetric/Cipher/Block/SHACAL.cry
+1 −1 README.md
+0 −53 scripts/load_all_cry_files.sh
2 changes: 1 addition & 1 deletion deps/dwarf
2 changes: 1 addition & 1 deletion deps/jvm-parser
2 changes: 1 addition & 1 deletion deps/llvm-pretty
2 changes: 1 addition & 1 deletion deps/macaw
Submodule macaw updated 203 files
2 changes: 1 addition & 1 deletion deps/what4
Submodule what4 updated 112 files
2 changes: 1 addition & 1 deletion saw-remote-api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN chown -R root:root /home/saw/rootfs

FROM debian:buster-slim
RUN apt-get update \
&& apt-get install -y libgmp10 libgomp1 libffi6 wget libncurses5 unzip openjdk-11-jdk-headless
&& apt-get install -y libgmp10 libgomp1 libffi6 wget libncurses5 libreadline-dev unzip openjdk-11-jdk-headless
COPY --from=build /home/saw/rootfs /
RUN useradd -m saw && chown -R saw:saw /home/saw
USER saw
Expand Down