home.social

#cxx — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #cxx, aggregated by home.social.

  1. Most C++ codebases aren't getting rewritten in Rust - but that doesn't mean the two can't work together.

    At Oxidize 2026, @nicofee and Nicolas Qiu Guichard (@kdab) run a practical workshop on Rust/C++ interop using CXX: calling Rust from C++ and vice versa, integrating a Rust library into a CMake project, and pulling a C++ library into a Cargo build.

    🔗 oxidizeconf.com/sessions/rust_

    #Oxidize2026 #RustLang #CPlusPlus #Interop #CXX #SystemsProgramming

  2. Vor 10 Jahren erschütterte ein Foto die Welt: Alan Kurdi, der 2-jährige ertrunken im Mittelmeer ebenso Bruder Ghalib u. Mutter Rehanna. Große Trauer u. Empörung.
    Und die Politik bekannte: Wir müssen helfen!

    Gestern entscheidet die #BuReg, die Förderung für die zivile #Seenotrettung, 2 Mio. €, komplett zu streichen. Signal: Die Rettung von Leben ist Deutschland keinen Cent mehr wert.

    Da muss die #Nächstenliebe der #Cxx-Parteien sein. 😡

    #seaeye #MerzNichtMeinKanzler sea-eye.org/haushalt/?utm_sour

  3. C++ isn't a serious language.

    today's bullshit:

    template<typename T, typename U, U T::* Member>
    struct get_offset {
    static constexpr size_t offset = offsetof(T, Member);
    };

    struct Example {
    int x;
    };

    const size_t N = get_offset<Example, int, &Example::x>::offset;

    This doesn't compile with clang. because...

    1/2

    #cpp #clang #cxx #macros #cpreprocessor #doomed