Skip to content

Commit b8f682b

Browse files
committed
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
1 parent a015c21 commit b8f682b

File tree

1 file changed

+1
-1
lines changed
  • src/ci/docker/host-x86_64/x86_64-gnu-llvm-9

1 file changed

+1
-1
lines changed

src/ci/docker/host-x86_64/x86_64-gnu-llvm-9/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:18.04
22

33
RUN apt-get update && apt-get install -y --no-install-recommends \
44
g++ \
5-
g++-arm-linux-gnueabi \
5+
gcc-multilib \
66
make \
77
ninja-build \
88
file \

0 commit comments

Comments
 (0)