您的位置:首页 > 编程语言

UNIX环境高级编程7.7共享库7.9环境变量

2015-01-30 15:23 176 查看




// environ/hello1.c

#include <stdio.h>

int main()
{
printf("hello, world\n");
return 0;
}

// g++ hello1.c -o hello1.a
// g++ -static hello1.c -o hello1.b , error occurs and I didn't find out why
// link error
// /usr/bin/ld: cannot find -lm
// collect2: ld returned 1 exit status












内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: