-
Notifications
You must be signed in to change notification settings - Fork 105
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
Can't build master in VS22 Release x64 #103
Comments
I hackishly got master branch to compile but i get a message box saying Seek error on file '...\Temp\A35D.tmp' (error 131: An attempt was made to move the file pointer before the beginning of the file.) I think it's caused by database.cpp line 171 zip.OpenEntry(*entries["minidump.dmp"]) |
Might have been introduced in #98, CC @mojomojomojo |
There's a fix for that problem in #99. |
If you would like to submit your changes needed to get the project to build with your compiler as a pull request, I'll do my best to review and merge it. |
I pull request #105 submitted. -It removes the definition of applyHacks from the x64 build. (The method is only called from x86, compiler under x64 complains that a 32bit value is used for a 64bit pointer) |
Compiler complains that
profiler.cpp lines 115, 139, 145
context.Eip is a 32bit value being cast to a 64bit pointer.
Except.h lines 41, 49
can not construct a char string by passing iterator to wchar string
The text was updated successfully, but these errors were encountered: