We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I've been following Development environment. In my case on Ubuntu 20.04, -lXxf86vm and -lXi linker option is not working.
-lXxf86vm
-lXi
$ make test g++ -std=c++17 -O2 -o VulkanTest main.cpp -lglfw -lvulkan -ldl -lpthread -lX11 -lXxf86vm -lXrandr -lXi /usr/bin/ld: cannot find -lXxf86vm /usr/bin/ld: cannot find -lXi collect2: error: ld returned 1 exit status make: *** [Makefile:5: VulkanTest] Error 1
Without these options, I think it works like below.
$ make test g++ -std=c++17 -O2 -o VulkanTest main.cpp -lglfw -lvulkan -ldl -lpthread -lX11 -lXrandr ./VulkanTest 18 extensions supported
Is it better to manually install libraries?
The text was updated successfully, but these errors were encountered:
i think you maybe need check the Library Name on Ubuntu. Ubuntu always chage name of library.
Sorry, something went wrong.
That just means that you are missing the packages libxxf86vm-dev libxi-dev. I'll mention that in the tutorial.
libxxf86vm-dev libxi-dev
5282357
Describe how to install libxxf86vm and libxi (fixes #275)
0fd54b9
No branches or pull requests
I've been following Development environment.
In my case on Ubuntu 20.04,
-lXxf86vm
and-lXi
linker option is not working.Without these options, I think it works like below.
Is it better to manually install libraries?
The text was updated successfully, but these errors were encountered: