Hello!
I try to add new language (Kotlin) in CodeRunner. But I've come across the strange error. I added Kotlin with Python3 check (like C-check). I compiled code successfully, then I try to execute it like this:
output = subprocess.check_output("java -jar program.jar".split(), universal_newlines=True)
But error occurred
[6.077s][warning][os,thread] Failed to start thread - pthread_create failed (EAGAIN) for attributes: stacksize: 1024k, guardsize: 0k, detached.
I don't understand, what should I do, maybe I need to add some environment variables?
Thanks!