c++ - how to see the value of CXX and CXXFLAG -


before compiling c++ program, exported cxx , cxxflags command line.

$ export cxx="/media/space/gcc-dist/bin/g++"

$ export cxxflags="-std=c++0x"

but want see values of cxx , cxxflags. how do that. i'm using kubuntu 11.04

you can on linux systems opening terminal , entering

echo $cxx echo $cxxflags 

Comments

Popular posts from this blog

php - How can I edit my code to echo the data of child's element where my search term was found in, in XMLReader? -

jQuery Ajax Render Fragments OR Whole Page -

java - Why is BlockingQueue.take() not releasing the thread? -