Fixed missing / bad header when cross-compiling to i686

It seems that by default the 32-bit headers are not actually installed
when installing development tooling. As we're using gcc headers,
we need to install them as an extra package.

See for reference:
- https://stackoverflow.com/a/54082790
- https://askubuntu.com/a/106092

Also removed the now unused arm tooling
This commit is contained in:
DevJPM 2020-11-15 14:56:18 +01:00
parent a015c21f16
commit b8f682b5e2

View file

@ -2,7 +2,7 @@ FROM ubuntu:18.04
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
g++-arm-linux-gnueabi \
gcc-multilib \
make \
ninja-build \
file \