From 5f4ad5a209cd5bdf70d538d2ffdb62df59ec16a8 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Tue, 4 May 2021 07:32:16 -0400 Subject: [PATCH 1/2] add armv6l-pre16 recipe to build list --- bin/build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/build.sh b/bin/build.sh index 57d6649..1d827e0 100755 --- a/bin/build.sh +++ b/bin/build.sh @@ -13,6 +13,7 @@ recipes=" \ x86 \ musl \ armv6l \ + armv6l-pre16 \ x64-pointer-compression \ x64-usdt \ " From 3e2a9e0a3598714e9d8fac047ba3798bbdc6dbef Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Tue, 4 May 2021 12:51:44 -0400 Subject: [PATCH 2/2] install python3-distutils for armv6l recipe Fixes `ModuleNotFoundError: No module named 'distutils.spawn'` error. --- recipes/armv6l/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/recipes/armv6l/Dockerfile b/recipes/armv6l/Dockerfile index a5d0baf..b81f601 100644 --- a/recipes/armv6l/Dockerfile +++ b/recipes/armv6l/Dockerfile @@ -17,6 +17,7 @@ RUN apt-get update \ g++-8-multilib \ make \ python3 \ + python3-distutils \ ccache \ xz-utils