Why this working nice CXXFLAGS := -Wcast-qual -std=c++11 $(EXTRACXXFLAGS)
becomes awful when override CXXFLAGS := -Wcast-qual -std=c++11 $(EXTRACXXFLAGS) due to the destroyed $(EXTRACXXFLAGS) ? What is the culprit, and How to restore or solve it ?
Why this working nice CXXFLAGS := -Wcast-qual -std=c++11 $(EXTRACXXFLAGS)
becomes awful when override CXXFLAGS := -Wcast-qual -std=c++11 $(EXTRACXXFLAGS) due to the destroyed $(EXTRACXXFLAGS) ? What is the culprit, and How to restore or solve it ?