diff options
Diffstat (limited to 'internal/rosa/python.go')
| -rw-r--r-- | internal/rosa/python.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/rosa/python.go b/internal/rosa/python.go index 7c059272..7bb713dc 100644 --- a/internal/rosa/python.go +++ b/internal/rosa/python.go @@ -39,6 +39,10 @@ func (t Toolchain) NewPython() pkg.Artifact { t.NewLibffi(), }, nil, []string{ "EXTRATESTOPTS=-j0 -x " + strings.Join(skipTests, " -x "), + + // _ctypes appears to infer something from the linker name + "LDFLAGS=-Wl,--dynamic-linker=/system/lib/" + + "ld-musl-" + linuxArch() + ".so.1", }, ` # test_synopsis_sourceless assumes this is writable and checks __pycache__ chmod -R +w /usr/src/python/ |
