Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在编译我的 C++ 程序之前,我从命令行export编辑了CXXand 。CXXFLAGS
export
CXX
CXXFLAGS
$ export CXX="/media/space/gcc-dist/bin/g++"
$ export CXXFLAGS="-std=c++0x"
但现在我想看看CXXand的值CXXFLAGS。我怎么做。我正在使用 KUbuntu 11.04
您通常可以在 Linux 系统上通过打开终端并输入
echo $CXX echo $CXXFLAGS