We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 362c295 commit 484f3cdCopy full SHA for 484f3cd
loader/CMakeLists.txt
@@ -393,6 +393,10 @@ if(WIN32)
393
set_target_properties(vulkan
394
PROPERTIES
395
PREFIX "")
396
+ # let the linker just fix up the stdcall mangling, like on msvc
397
+ if(CMAKE_SIZEOF_VOID_P EQUAL 4)
398
+ target_link_options(vulkan PRIVATE "-Wl,--enable-stdcall-fixup")
399
+ endif()
400
endif()
401
402
if(MSVC AND ENABLE_WIN10_ONECORE)
0 commit comments