You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running the graphical application to create and destroy objects on the heap (Listing 6.9)
creates an endless loop. (ManjaroLinux release: 24.1.1; rustc 1.81.0).
and stops with the error : 'cargo run' terminated by signal SIGSEGV (Address boundary error)
this happens when using a macro like eprintln! or format! etc.
println! makes the application hang.
Running the graphical application to create and destroy objects on the heap (Listing 6.9)
creates an endless loop. (ManjaroLinux release: 24.1.1; rustc 1.81.0).
and stops with the error :
'cargo run' terminated by signal SIGSEGV (Address boundary error)
this happens when using a macro like eprintln! or format! etc.
println! makes the application hang.
With the help from https://users.rust-lang.org (link below) I found a workaround using extern "C" printf:
This works on my system. I don't know if it's still possible that it allocates on the heap for others.
Link to the issue on rust-org
The text was updated successfully, but these errors were encountered: