On Thu, Jan 16, 2025 at 20:27:17 +0000, Johannes Krottmayer wrote:
> $ g++ -lvulkan -o test test.cpp

If I recall correctly, the library options need to be *after* the object
files that use them.  Thus:

    g++ -o test test.cpp -lvulkan

Reply via email to