Skip to content

Commit

Permalink
Fixed missing / bad header when cross-compiling to i686
Browse files Browse the repository at this point in the history
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
  • Loading branch information
DevJPM committed Nov 15, 2020
1 parent a015c21 commit b8f682b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ci/docker/host-x86_64/x86_64-gnu-llvm-9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit b8f682b

Please sign in to comment.