Skip to content

Commit dd5f96c

Browse files
committed
Add required libatomic1 package
1 parent 8a88231 commit dd5f96c

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

docker/debian/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ pkgs+=(git) # Required build tool.
4646
pkgs+=(gpg) # Dependency for tools requiring signing or encrypting/decrypting.
4747
pkgs+=(gpg-agent) # Dependency for tools requiring signing or encrypting/decrypting.
4848
pkgs+=(jq) # JSON manipulation.
49+
pkgs+=(libatomic1) # Required by mold linker.
4950
pkgs+=(libc6-dev) # Required build tool.
5051
pkgs+=(ninja-build) # Required build tool.
5152
pkgs+=(python3-venv) # Python environment management tool.

docker/rhel/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pkgs+=(git) # Required build tool.
1717
pkgs+=(gpg) # Dependency for tools requiring signing or encrypting/decrypting.
1818
pkgs+=(gnupg2) # Dependency for tools requiring signing or encrypting/decrypting.
1919
pkgs+=(jq) # JSON manipulation.
20-
pkgs+=(libatomic) # Required to use mold linker.
20+
pkgs+=(libatomic) # Required by mold linker.
2121
pkgs+=(libstdc++-static) # Required to statically link libraries into rippled.
2222
pkgs+=(ninja-build) # Required build tool.
2323
pkgs+=(perl-FindBin) # Required to compile OpenSSL.

docker/ubuntu/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ pkgs+=(git) # Required build tool.
3333
pkgs+=(gpg) # Dependency for tools requiring signing or encrypting/decrypting.
3434
pkgs+=(gpg-agent) # Dependency for tools requiring signing or encrypting/decrypting.
3535
pkgs+=(jq) # JSON manipulation.
36+
pkgs+=(libatomic1) # Required by mold linker.
3637
pkgs+=(libc6-dev) # Required build tool.
3738
pkgs+=(ninja-build) # Required build tool.
3839
pkgs+=(python3-venv) # Python environment management tool.

0 commit comments

Comments
 (0)