Re: [OpenWrt-Devel] musl breaks python

2015-06-23 Thread Alexandru Ardelean
@micke.prag : mind to re-test. I could not reproduce it with an x86 VM. I don't have an ar71xx around to test with; i.e. I have pre-CC firmware on them. This issue could be a temp-issue. At the moment the OpenWRT trunk with musl is shifting like an earth-quake, and this could have been fixed alrea

Re: [OpenWrt-Devel] musl breaks python

2015-06-23 Thread Szabolcs Nagy
* micke.p...@telldus.se [2015-06-22 12:37:47 +0200]: > I have discovered that python is broken using musl. When a thread created > using the threading library exists, python segfaults. > > This is a simple example application showing the issue: fwiw i cant reproduce this on alpine-linux so this

Re: [OpenWrt-Devel] musl breaks python

2015-06-22 Thread Alexandru Ardelean
Thanks for reporting this. Will move this to the Github issues, since it belongs there. https://github.com/openwrt/packages/issues/1450 Thanks On Mon, Jun 22, 2015 at 1:37 PM, wrote: > Hi, > > I have discovered that python is broken using musl. When a thread created > using the threading libra

[OpenWrt-Devel] musl breaks python

2015-06-22 Thread micke . prag
Hi, I have discovered that python is broken using musl. When a thread created using the threading library exists, python segfaults. This is a simple example application showing the issue: import time import threading def test(): print("Hello") time.sleep(2) print("wor