当前位置: 技术问答>linux和unix
为什么使用了-l但 仍然不能使用C++类库
来源: 互联网 发布时间:2015-06-13
本文导语: g++ -l/usr/include/g++-3 -c -o test.o test.cpp 但仍然不能使用,请问还会是什么原因? | g++ -o test test.cpp -I/usr/include/g++-3 -lstdc++ | -L 指定库所在的路径 -l 指定库 | ...
g++ -l/usr/include/g++-3 -c -o test.o test.cpp
但仍然不能使用,请问还会是什么原因?
但仍然不能使用,请问还会是什么原因?
|
g++ -o test test.cpp -I/usr/include/g++-3 -lstdc++
|
-L 指定库所在的路径
-l 指定库
-l 指定库
|
大写的 -L
|
up