You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't plan on adding better Windows support nor do I have a good avenue to test Windows software so this issue is mainly for whoever is interested to work on.
The main issue is the lack of support for large input files due to 'long' being 32-bit on Windows.
This whole issue should amount to:
replacing 'long' with 'size_t' where appropriate in the file IO routines
(possibly) compiling with -D__FILE_OFFSET_BITS=64 as @notcancername suggested
The text was updated successfully, but these errors were encountered:
I don't plan on adding better Windows support nor do I have a good avenue to test Windows software so this issue is mainly for whoever is interested to work on.
The main issue is the lack of support for large input files due to 'long' being 32-bit on Windows.
This whole issue should amount to:
-D__FILE_OFFSET_BITS=64
as @notcancername suggestedThe text was updated successfully, but these errors were encountered: