-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jester is not working with nim version 2.0.0 #321
Comments
Me too, got this error "SIGSEGV: Illegal storage access. (Attempt to read from nil?)" when trying Nim 2.0.0 Stacktrace
# example.nim
import htmlgen
import jester
routes:
get "/":
resp h1("Hello world")
Try to import import htmlgen
import jester
import std/segfaults
routes:
get "/":
resp h1("Hello world") Result INFO Jester is making jokes at http://0.0.0.0:5000
Starting 12 threads
Listening on port 5000 |
httpbeast You can test whether this solution works by cloning the httpbeast repo by manually installing it:
For jester to use this new PR it requires @dom96 to release a new tag in the httpbeast repo, before jester will use this version of httpbeast. Temporary solution |
@ThomasTJdev Thank you ;) |
thanks |
Reasently I updated to nim version 2.0.0 but all my jester code is not working and is providing the error "Illegal Storage use". It is also showing the error while only creating a "Hello World" page.
The text was updated successfully, but these errors were encountered: