22f15579fa
Add libffi as a build requirement for TCI. Add libffi to the dockerfiles to satisfy that requirement. Construct an ffi_cif structure for each unique typemask. Record the result in a separate hash table for later lookup; this allows helper_table to stay const. Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
42 lines
780 B
Docker
42 lines
780 B
Docker
FROM centos:8.3.2011
|
|
|
|
RUN dnf -y update
|
|
ENV PACKAGES \
|
|
SDL2-devel \
|
|
bzip2 \
|
|
bzip2-devel \
|
|
dbus-daemon \
|
|
diffutils \
|
|
gcc \
|
|
gcc-c++ \
|
|
genisoimage \
|
|
gettext \
|
|
git \
|
|
glib2-devel \
|
|
libaio-devel \
|
|
libbpf-devel \
|
|
libepoxy-devel \
|
|
libfdt-devel \
|
|
libffi-devel \
|
|
libgcrypt-devel \
|
|
lzo-devel \
|
|
make \
|
|
mesa-libEGL-devel \
|
|
nmap-ncat \
|
|
nettle-devel \
|
|
ninja-build \
|
|
perl-Test-Harness \
|
|
pixman-devel \
|
|
python36 \
|
|
rdma-core-devel \
|
|
spice-glib-devel \
|
|
spice-server \
|
|
systemtap-sdt-devel \
|
|
tar \
|
|
zlib-devel
|
|
|
|
RUN dnf install -y dnf-plugins-core && \
|
|
dnf config-manager --set-enabled powertools && \
|
|
dnf install -y $PACKAGES
|
|
RUN rpm -q $PACKAGES | sort > /packages.txt
|