C++——Linux——Hello World! 3年前

#include    //include位置:/usr/include
#include
using namespace std;

int main() {
cout << "Hello World" <  
        return 0;
}
g++ -o test test.cpp //用g++ gcc编译会出错

ldconfig 动态加载so库?!

g++ iga.cpp -lcjson -o iga

gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/python2.7 -c iga.cpp -o build/temp.linux-x86_64-2.7/iga.o -lcjson -lpython2.7
g++ -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-2.7/iga.o -L/usr/lib64 -lpython2.7 -o build/lib.linux-x86_64-2.7/iga.so -lcjson -lpython2.7
python distribute.py
image
日暮星沉
这世间的繁华喧闹,却栖息不下一颗干净的灵魂。在这污灰漫天的人间,欲出淤泥而不染,还真是难。
3
发布数
2
关注者
1811
累计阅读

热门教程文档

Typescript
31小节
PHP
52小节
C
14小节
Swift
54小节
C++
73小节