|
|
|
|
|
by weberc2
3123 days ago
|
|
> no compiled language has a native build system, its just that most compiled languages dont separate compilation from linking and also most languages support modules :) Most modern, mainstream compiled languages have a build system that wraps around the compiler and linker. Invoking the compiler and linker are responsibilities of the build system, and frequently modules are compilation units. Modern C++ is a neat language (I used to be a C++ developer) but it's tooling alone makes it unsuitable for any project where rapid iteration is remotely important. |
|
Modern C++ when combined with Qt makes rapid iteration very doable. In my opinion Qt should be the standard c++ model.