1
2
3
4
5
6
|
# libcosmic creates threads Nim knows nothing about (tokio workers, the
# notify-rs inotify watcher). Nim's signal handlers are installed process-wide
# and allocate a string to build a traceback, so a signal delivered to one of
# those threads segfaults inside the handler itself. Let the default action
# stand instead.
-d:noSignalHandler
|