internal/rosa/python: enable openssl
All checks were successful
Test / Create distribution (push) Successful in 2m27s
Test / Sandbox (push) Successful in 5m47s
Test / ShareFS (push) Successful in 7m28s
Test / Sandbox (race detector) (push) Successful in 7m46s
Test / Hpkg (push) Successful in 8m1s
Test / Hakurei (race detector) (push) Successful in 8m57s
Test / Hakurei (push) Successful in 2m39s
Test / Flake checks (push) Successful in 1m41s

This is required by qemu test suite.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-02-17 02:01:57 +09:00
parent 16966043c7
commit 50c9da8b6d

View File

@@ -49,6 +49,10 @@ func (t Toolchain) newPython() pkg.Artifact {
"ld-musl-" + linuxArch() + ".so.1",
},
Configure: [][2]string{
{"with-openssl", "/system"},
},
ScriptEarly: `
export HOME="$(mktemp -d)"
`,
@@ -57,6 +61,7 @@ export HOME="$(mktemp -d)"
},
t.Load(Zlib),
t.Load(Libffi),
t.Load(OpenSSL),
)
}
func init() { artifactsF[Python] = Toolchain.newPython }