Bug vulkan-glfw when linking my engine in shared mode

Hi! I’ve a weird behaviour with the glfwCreateWindowSurface function : no problem in static linking but when I link my librarie in shared, the surface creation fails, and it crash at this line when I want to print the VKResult :

VkResult result = glfwCreateWindowSurface(vkDevice.getInstance(), getWindow(), nullptr, &surface);
std::cout<<"result : "<<result<<std::endl;

This is really strange that I’ve no problem with static linking, but problem with shared linking…

Thanks.

Ok it’s ok I just needed to link glfw on shared…
Solved