Closed jakirkham closed 7 years ago
On this line, libc++ is being forced in the compiler flags. However if the user selects g++, then this causes problems. It would be better to only set this flag if CXX is unspecified (i.e. default compiler is used).
libc++
g++
CXX
Proposed fix in PR ( https://github.com/lucastheis/cmt/pull/27 ).
On this line,
libc++
is being forced in the compiler flags. However if the user selectsg++
, then this causes problems. It would be better to only set this flag ifCXX
is unspecified (i.e. default compiler is used).