dmitris·2 anni fa·discussI like to do `g++ foo.cc |& tee /tmp/out` then you can `less /tmp/out`, grep the file, open it in an editor etc.
dmitris·2 anni fa·discusson a Mac, one can 'brew install qrencode' (from https://fukuchi.org/works/qrencode/index.html.en)
dmitris·3 anni fa·discussAvianca Flight 052 https://en.wikipedia.org/wiki/Avianca_Flight_052 (mentioned above in the comments)
dmitris·3 anni fa·discussIt is possible to use Rust shared objects in C (and other languages) with the "cdylib" or "staticlib" crate types and when the Rust functions are marked with 'extern "C"'. See https://docs.rust-embedded.org/book/interoperability/rust-wi... and https://doc.rust-lang.org/reference/linkage.html. The YouTube video https://www.youtube.com/watch?v=5zmaLhSAkNE has an example/demo and Jon Gjengset has the "Reverse FFI" section in his "Crust of Rust: Build Scripts and Foreign-Function Interfaces (FFI)" video at 2:02:57 https://www.youtube.com/watch?v=pePqWoTnSmQ&t=7378s. Finally, https://prog.world/building-and-using-dynamic-link-libraries... is yes another article on "Building and using dynamic link libraries in Rust".