Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/docker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Hainke <vincent@systemli.org>2021-11-05 17:49:56 +0300
committerPaul Spooren <mail@aparcar.org>2021-12-13 10:50:41 +0300
commit54849510d7802028b94757051cca6d004a9ca1d1 (patch)
treeecd1730a94ab560dca174a8cc86d1f8585d915c9
parent11452bebf7e38db1fd54bd646d5693b69f96063e (diff)
docker: install g++-multilib
Node fails to compile with: In file included from /usr/include/c++/8/memory:62, from ../deps/v8/src/libplatform/default-foreground-task-runner.h:8, from ../deps/v8/src/libplatform/default-foreground-task-runner.cc:5: /usr/include/c++/8/bits/stl_algobase.h:59:10: fatal error: bits/c++config.h: No such file or directory #include <bits/c++config.h> ^~~~~~~~~~~~~~~~~~ compilation terminated. Add g++-multilib to fix this. Fixes: https://github.com/openwrt/packages/issues/17074 Signed-off-by: Nick Hainke <vincent@systemli.org>
-rw-r--r--Dockerfile.base1
1 files changed, 1 insertions, 0 deletions
diff --git a/Dockerfile.base b/Dockerfile.base
index 77adec9..842a0b8 100644
--- a/Dockerfile.base
+++ b/Dockerfile.base
@@ -7,6 +7,7 @@ RUN apt-get update -qq &&\
clang \
curl \
file \
+ g++-multilib \
gawk \
gcc-multilib \
gettext \