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
When compiling a GDExtension to Windows from Linux - or on some Windows installs - types such as long are not considered the correct size.
Ex: using int64_t instead of long will compile but just using long won't compile for Windows builds.
Steps to reproduce
Create a simple GDExtension using long as a variable type in a function (either a return type or a parameter)
Attempt to compile to Windows via scons arch=x86_64 platform=windows target=template_debug
A large amount of errors related to method binding will occur.