UncleOxidant 23 hours ago

Where does one get this Freestanding Standard Libarry? will it be included in C++ 26?

  • aw1621107 22 hours ago

    At least as far as major C++ implementations go you pretty much already have a freestanding stdlib since the standard-specified freestanding parts are a subset of the hosted parts. It's just a matter of compiling in freestanding "mode" (e.g., passing -ffreestanding to GCC/Clang)

dleslie 1 day ago

This was written by AI, wasn't it?

I feel like it said a whole lot without giving me much to take action on. Like great, you summarized the current state of affairs but it doesn't make clear what I am to do about it.

  • aw1621107 1 day ago

    > I feel like it said a whole lot without giving me much to take action on. Like great, you summarized the current state of affairs but it doesn't make clear what I am to do about it.

    To be fair, not every article is a call to action. Sometimes they exist purely for informational purposes.

  • tialaramex 1 day ago

    Are you making this claim specifically about this one particular post, or about everything on the blog, which dates back about a decade ?

    Like "These Artemis 2 photos were generated by AI" is wrong but "The broadcast footage of the Apollo missions was generated by AI" is incredibly stupid and I want to understand if I'm about to engage with an incredibly stupid opinion.

    • Maxatar 1 day ago

      There is a clear and sudden transition on this blog where prior to a certain date there are zero instances of the em-dash and then suddenly it appears like crazy. Like look at his archived posts from 2023, absolutely no em dashes... now look at every post from 2025 and almost every single one of them are literred with them.

      I don't think it's a coincidence.

      • jandrese 1 day ago

        > Freestanding is not a niche technicality — it’s a foundational distinction in the C++ standard.

        If this line wasn't written by a LLM I'll eat my hat.

        I swear being online these days feels like being one of the dog handlers from the Terminator.

        • thegrim33 23 hours ago

          The fact that the average person is seemingly incapable of detecting LLM text drives me insane. Every aspect of that article screams LLM. The tone, the punctuation, the sentence structure, the overall structure, it's so incredibly obvious. But the average person really is oblivious to it.

          • feelamee 7 hours ago

            why? Before comments about LLM I didn't notice this. After I compared pre-LLM posts and post-LLM and looks like AI was used to write/edit this article. But.. why should I matter? Why my ignorance of this fact insane you?

  • karurosu 1 day ago

    It definitely feels like it was edited with AI, structure and tone seem like the usual AI "polish".

    Lately I've been working on an embedded system with limited access to std lib/libc and this was very interesting but I was hoping to see more information, like how can I tell if something will be supported? what are alternatives? what does implementation specific mean?

    I guess I am used to HN having more in-depth articles.