-
Notifications
You must be signed in to change notification settings - Fork 92
Open
Labels
Description
I have verified that I am able to compile the example C++ program from SFML docs and run that successfully From Here and compile with the command
g++ -std=c++17 test.cpp -I/opt/homebrew/Cellar/sfml/3.0.0/include -o prog -L/opt/homebrew/Cellar/sfml/3.0.0/lib -lsfml-graphics -lsfml-window -lsfml-system
However, trying to run the example program provided in the rust-sfml docs that were just updated Dec 23 2024 Here causes the c++ code to throw an exception of some sort
fatal runtime error: Rust cannot catch foreign exceptions
zsh: abort cargo run
After trying to add print statements to debug I can see that It crashes on the RenderWindow creation which is the first line of the program