Skip to content

Commit 99ab2c7

Browse files
committed
Use docker_image for musl
1 parent 6809c44 commit 99ab2c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cpython-unix/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ $(OUTDIR)/$(CLANG_FILENAME):
8686
$(RUN_BUILD) --toolchain clang --target-triple $(TARGET_TRIPLE)
8787

8888
$(OUTDIR)/musl-$(MUSL_VERSION)-$(HOST_PLATFORM).tar: $(BASE_TOOLCHAIN_DEPENDS) $(HERE)/build-musl.sh
89-
$(RUN_BUILD) --toolchain musl
89+
$(RUN_BUILD) --toolchain musl --docker-image $(DOCKER_IMAGE_GCC)
9090

9191
ifeq ($(HOST_PLATFORM),linux_x86_64)
9292
TOOLCHAIN_TARGET := $(OUTDIR)/musl-$(MUSL_VERSION)-$(HOST_PLATFORM).tar

cpython-unix/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1110,7 +1110,7 @@ def main():
11101110
elif action == "musl":
11111111
build_musl(
11121112
client,
1113-
get_image(client, ROOT, BUILD, "gcc", host_platform),
1113+
get_image(client, ROOT, BUILD, docker_image, host_platform),
11141114
host_platform,
11151115
target_triple,
11161116
build_options,

0 commit comments

Comments
 (0)