▲ | jadenPete 2 days ago | |||||||
It’s always puzzled me that so many languages have their own build systems and package managers. Why aren’t programming language-agnostic build systems like Bazel and Buck more popular? It seems so strange that every new programming language essentially has to reinvent the wheel multiple times, inventing a new build system, package manager, formatter, linter, etc. I wonder if we’ll ever see something like LLVM for these technologies. | ||||||||
▲ | pjc50 2 days ago | parent | next [-] | |||||||
Firstly a strong desire to self-host: write the build system in the language itself. Secondly, often very differently shaped requirements. The dotnet SDK tries to keep its build specification (.csproj) files editable by Visual Studio, which is why most of the stuff in them is just XML properties. You probably could build C#/F# with Bazel but that's not what Microsoft chose, and you kind of need to stay aligned with them and the large amount of MSBuild files in the SDK. | ||||||||
▲ | Rohansi 2 days ago | parent | prev [-] | |||||||
Because there are differences that go beyond just the language syntax. The build processes are very different for C++ vs. C#, vs. F#, etc. C++: invoke compiler for all compilation units, invoke linker to combine object files into executable C#: invoke compiler once with all source files listed F#: same as C# AFAIK, except file order matters! | ||||||||
|