Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Where does the value of CXX in a makefile come from?

I'm currently working on a makefile of a legacy project. The project build successfully with the Makefile.

While inspecting the Makefile, I noticed that it uses ${CXX} macro to call the compiler. However, the CXX is not defined in the makefile, and there's no includes of other makefiles.

I tried to see if CXX is an environmental variable, it is not.

Is there a default value for CXX ?

share|improve this question

marked as duplicate by Mellowcandle, Paul R, Petesh, Pfitz, VMAtm Dec 3 '12 at 11:04

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 3 down vote accepted

It's in the manual:

CXX
    Program for compiling C++ programs; default ‘g++’. 
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.