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.
pl帮助如何将cc文件转换为目标文件。需要什么命令以及它将在哪个环境中工作
文件.cc是 C++ 源代码文件的典型扩展名(其他一些包括.cxx和.cpp)。需要编译器将其转换为目标文件。一种非常流行的编码器是g++:
.cc
.cxx
.cpp
g++
g++ -c -o something.o something.cc