Skip to content

Commit 83b64f3

Browse files
committed
docker: Install nasm instead of yasm
This is one of the packages which aren't needed by the toolchain build itself, but is provided as a convenience to useres of the image. Many projects that build standalone x86 assembly can use either nasm or yasm, but lately most projects prefer nasm (which has support for newer x86 simd extensions).
1 parent da453b9 commit 83b64f3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:22.04
33
RUN apt-get update -qq && \
44
DEBIAN_FRONTEND="noninteractive" apt-get install -qqy --no-install-recommends \
55
git wget bzip2 file unzip libtool pkg-config cmake build-essential \
6-
automake yasm gettext autopoint vim-tiny python3 \
6+
automake nasm gettext autopoint vim-tiny python3 \
77
ninja-build ca-certificates curl less zip && \
88
apt-get clean -y && \
99
rm -rf /var/lib/apt/lists/*

Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:22.04
33
RUN apt-get update -qq && \
44
DEBIAN_FRONTEND="noninteractive" apt-get install -qqy --no-install-recommends \
55
git wget bzip2 file unzip libtool pkg-config cmake build-essential \
6-
automake yasm gettext autopoint vim-tiny python3 \
6+
automake nasm gettext autopoint vim-tiny python3 \
77
ninja-build ca-certificates curl less zip && \
88
apt-get clean -y && \
99
rm -rf /var/lib/apt/lists/*

Dockerfile.system-clang

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:22.04
33
RUN apt-get update -qq && \
44
DEBIAN_FRONTEND="noninteractive" apt-get install -qqy --no-install-recommends \
55
git wget bzip2 file unzip libtool pkg-config cmake build-essential \
6-
automake yasm gettext autopoint vim-tiny python3 \
6+
automake nasm gettext autopoint vim-tiny python3 \
77
ninja-build ca-certificates curl less zip && \
88
apt-get clean -y && \
99
rm -rf /var/lib/apt/lists/*

Dockerfile.toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:22.04
33
RUN apt-get update -qq && \
44
DEBIAN_FRONTEND="noninteractive" apt-get install -qqy --no-install-recommends \
55
git wget bzip2 file unzip libtool pkg-config cmake build-essential \
6-
automake yasm gettext autopoint vim-tiny python3 \
6+
automake nasm gettext autopoint vim-tiny python3 \
77
ninja-build ca-certificates curl less zip && \
88
apt-get clean -y && \
99
rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)