-
Notifications
You must be signed in to change notification settings - Fork 14
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
Various issues when building on Windows #69
Comments
If I ask ChatGPT about the errors it says this: Your current compilation output indicates that several warnings are being generated, primarily due to the use of deprecated features and overflow issues. Here’s how you can address these issues: Deprecated std::unary_function Warnings: Before:
After:
Repeat this change for all instances of std::unary_function. Overflow Warning in patch_libultra_math.c: Before: c
c Example Change in audiofile.cpp:
After: cpp
Example Change in patch_libultra_math.c: c c
|
Open the include/PR/gbi.h file. Find the gDPParam macro and modify it to cast the param to uintptr_t. Change this:
To this:
Find the gDPNoOpTag macro and modify it to cast the tag to uintptr_t.
Here is the updated section of gbi.h for clarity:
Making this change seemed to fix it. |
Yup, making that last change worked. It compiled and ran with no issue. |
This doesn't seem correct, but does fix the build according to this comment DarioSamo#69 (comment)
I get all these errors when building with "make RENDER_API=RT64 EXTERNAL_DATA=1" on MINGW64 on Windows 11
The text was updated successfully, but these errors were encountered: