Comment #0 by timothee.cour2 — 2017-01-05T18:21:01Z
pseudo-code:
```
main.cpp:
dlopen(dlib.so)
dlsym(fun)
dlib.d:
fun(){
dlopen(dlib2.so);
// dlopen: cannot load any more object with static TLS
}
dlib2.d:
void fun2(){}
```
Is there a workaround?
Comment #1 by timothee.cour2 — 2017-01-05T18:36:37Z