-
Notifications
You must be signed in to change notification settings - Fork 33
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
Data.ByteString
: Implement breakSubstring
, packCString
, packCStringLen
#147
Conversation
`coerce` shouldn't work here (augustss#146)
I think the reason the Hackage CI fails is because its |
When there are changes to the primitives the idea is to update the binary version number. I almost always forget to do it myself. 🙂 |
Do 'make preparedist' to rebuild the mcabal and cpphs .c files. |
You mean the mhs version? As far as I can tell, that is done through updating the version in |
No, I'm referring to |
I'm getting stuck at EDIT: Running |
Also you can do |
I regenerated everything, is there anything left to do? |
Thanks for your ByteString changes. It was exactly what I needed for adding Unicode support. |
Change the
peekCAString
/peekCAStringLen
primitives topackCString
/packCStringLen
, which return a bytestring and changepeekCAString
andpeekCAStringLen
to use those new primitives.