Subject: | clang support |
FreeBSD does not use gcc and g++ starting with version 10, but clang instead. So a binary called "g++" is not available here. To be portable, it's probably better to use "c++", which should resolve to the available C++ compiler: g++ on gcc systems and clang++ on clang systems.
Regards,
Slaven