-
Notifications
You must be signed in to change notification settings - Fork 379
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
Segfault on call to vmaCreateAllocator() when using c++11 #472
Comments
I doubt this is a bug in VMA, but to investigate it further, I would need to know more details about what exactly is crashing and why. |
Are you using Visual Studio? Can you maybe give a callstack or some more information? |
It's using cmake on a raspberry pi (not visual studio), and it crashes on line 12928 via line 15076 (sorry I mistakingly said 15075) if I use For my purposes, I can just use C++17, I am not concerned, I just lost a couple of hours before I stumbled on this workaround, but the actual cause or fix is beyond me. Here is my backtrace:
This is my CMakeLists.txt in case it helps |
I guess it's not really the C++ standard that is used for compiling the program which causes problems in the code, it's more likely that there's some |
Can you paste the code you use to call |
It could actually be an issue with the Vulkan loader code! How do you load Vulkan functions? Do you statically link against Vulkan lib or do you load them dynamically using a library like volk? If that is the case, it might be a bug in volk. |
Please also make sure that |
This is on a raspberry pi 5, clean and up to date, VMA 3.2.1.
I had a consistent segfault on line 12928 in the VmaAllocator_T constructor, called via 15075, and was able to fix it by changing from c++11 to c++17 with set (CMAKE_CXX_STANDARD 17) in my project's CMakeLists.txt.
I'm sorry I don't know enough about c++ to help further, but thought this might be useful, and it could maybe give a compile error instead of a runtime one. Thanks.
The text was updated successfully, but these errors were encountered: