Haiku: fix configure C++ error message with -std=c++11#79
Haiku: fix configure C++ error message with -std=c++11#79sezero merged 1 commit intolibxmp:masterfrom
Conversation
In my current Haiku (R1 beta 5) environment, configure will append -std=c++11 to CXX. The CXX check for BeOS/Haiku uses `which "$CXX"`, which breaks when CXX contains options. I got rid of the quotes and switched it to command -v instead. This has not been verified on actual BeOS.
|
Is that Do we have to verify CXX existence, btw? Why not just remove that check? Seems overzealous. |
Agh, nevermind, seems like I tested wrong. This is OK. |
We might be able to replace it with edit: actually, it looks like |
In my current Haiku (R1 beta 5) environment, configure will append
-std=c++11toCXX. TheCXXcheck for BeOS/Haiku useswhich "$CXX", which breaks whenCXXcontains options. I got rid of the quotes and switched it tocommand -vinstead.This has not been verified on actual BeOS, so if possible, please test that (I'm not aware how to, currently). edit: it's supposed to have Bash, but unclear if it's a version that supports -v?
Closes #78.