The wikis are now using the new authentication system.
If you did not migrate your account yet, visit https://idp-portal-info.suse.com/
If you did not migrate your account yet, visit https://idp-portal-info.suse.com/
最基本的编译
make的工作原理就是找到相对应的makefile文件,对脚本内的目标进行处理。所以最简单的单文件编译,直接把shell命令打上即可。以编译c++程序为例,makefile应该这样写:
all: g++ 1000.cpp -g -o 1000.o