I've only seen this with C# (MSBuild as of 2017, usually invoked through dotnet CLI), Rust (Cargo, technically a "build system" rather than a "build tool"), and Go (go CLI as of v1.11). Swift, D, and Nim also have this according to ChatGPT. NodeJS has NPM, Deno has its own thing, the web has... the web.
A tool that is made and supported by the language creators and tightly integrates package management and build artifact creation seems like an important part of making a language toolchain good.
Did C, C++, and all JVM languages (AFAIK) just miss the boat? Maybe there are some key tradeoffs that make other kinds of build tools worth it? Perhaps this kind of tooling is a product of more recent wisdom?
I believe this is mostly historical. C/C++/Java are pretty old. When the language is designed, there really isn't a rule of thumb in the area.
Other old languages suffer from the same problem of not having a good first-party tool chain. For example: OCaml, Common Lisp.