Hello everyone,
I am able to compile; however, when I attempt to run the application I receive the following error:
(glfw:error): error=65544, desc=X11: RandR gamma ramp support seems broken
Rendering with OpenGL Core Profile 3.2
libGL error: No matching fbConfigs or visuals found
libGL error: failed to load driver: swrast
(glfw:error): error=65543, desc=GLX: An OpenGL profile requested but GLX_ARB_create_context_profile is unavailable
Segmentation fault (core dumped)
I am connected to the vm from the host (mac) using X windows forwarding. I have no problem forwarding gedit to the host. Here's my Vagrant configuration:
Vagrant.configure("2") do |config|
config.vm.box = "hashicorp/bionic64"
config.vm.box_version = "1.0.282"
config.ssh.forward_x11 = true
config.vm.provider "virtualbox" do |vb|
vb.memory = 1024
vb.cpus = 2
end
end
I appreciate help that y'all can provide in resolving this issue.
Thanks again,
-- Michael