|
|
|
|
|
by maccard
2724 days ago
|
|
> While I agree that some Makefiles are terrible, I disagree that make is absolutely horrendous. I agree with the parent on this point (although make is not _the_ C/C++ build system) - makefiles are horrible. Make is arcane, full of quirks that bite you as a beginner, and suffers hugely from being not-portable (gnu make is not the same as other flavours, and make on windows is practically non-existent) > could you point me towards something that is not type safe in C++ Not the parent but [0] is a reasonable example. [0] https://gcc.godbolt.org/z/csjnM4 |
|
A better example of breaking type safety would be to involve a reinterpret_cast or a C-style cast, or maybe pass something through a void*.