-
Notifications
You must be signed in to change notification settings - Fork 37
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
Add workaround for LuaJIT not supporting >47bit pointers #225
Add workaround for LuaJIT not supporting >47bit pointers #225
Conversation
Annoyingly, this makes building with LuaJIT different to building with plain Lua 5.1. |
This comment has been minimized.
This comment has been minimized.
|
With these two changes I mentioned, it loads and passes some simple tests. |
|
d4c8293
to
1e00a82
Compare
OK, I don't know – for now I mainly cared for the define to get triggered. I wanted to do some more testing, but I ran into the same problem in luaossl :-/ |
1e00a82
to
a3029e0
Compare
a3029e0
to
7702dc0
Compare
Cqueues mostly uses lightuserdata as unique keys.
It's hacky, but the best workaround seems to be just masking off the top bits.
Solves #223