-
-
Notifications
You must be signed in to change notification settings - Fork 97
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
Woo won't start on Ubuntu Trusty, SBCL 1.5.6 and gcc 4.8.4-2ubuntu1~14.04.4 #87
Comments
Here is
|
Thank you for reporting. I observed that this issue is occurred since SBCL 1.5.3, not only in Woo but in other projects like lem. I didn't look deeper into this, but this could be a bug of SBCL. Perhaps this commit fixes it? |
Looks like this commit may fix the problem. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When I start the Clack with Woo handler, it tries to compile a grovel file, output the following
commands to stdout:
And raises a condition:
Seems that gcc does not like a
-no-pie
option. Because first command have-fno-pie
and compiles without an error.Moreover, when I tried to execute second command, gcc says:
And replacing it with
-fno-pie
, makes this command pass.Probably, this issue should be reported to the grovel's tracker?
The text was updated successfully, but these errors were encountered: