diff options
author | johannst <johannes.stoelp@gmail.com> | 2021-02-26 23:19:03 +0100 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2021-02-26 23:19:03 +0100 |
commit | 0d881bc974b74dff75c00a3cab5d535cbb2ace46 (patch) | |
tree | 35c5892c135d5623879b106e93df4cc235669a8d /docker/Dockerfile | |
parent | 5fbee6be76c8751c282b45c54b8179ae525e00c1 (diff) | |
download | matcha-threads-0d881bc974b74dff75c00a3cab5d535cbb2ace46.tar.gz matcha-threads-0d881bc974b74dff75c00a3cab5d535cbb2ace46.zip |
added implementation for armv7a
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 7a41480..703ee7a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -11,11 +11,13 @@ RUN apt update \ g++ \ gcc-aarch64-linux-gnu \ g++-aarch64-linux-gnu \ + gcc-arm-linux-gnueabi \ + g++-arm-linux-gnueabi \ gdb-multiarch \ qemu-user \ && rm -rf /var/lib/apt/lists/* \ && apt-get clean \ # Remove expensive qemu emulators which are currently not used. - && rm -f $(find /usr/bin -name 'qemu-*' | grep -v 'qemu-aarch64$') + && rm -f $(find /usr/bin -name 'qemu-*' | grep -v 'qemu-aarch64$\|qemu-arm$') WORKDIR /develop |