交叉开发环境
程序员文章站
2022-04-07 17:22:39
...
交叉开发环境
这里交叉开发环境指,在 Windows 上完成代码编写,在 Ubuntu 中完成编译。
1. Windows 上安装 sublime text 等编辑器。
2. 确保 Ubuntu 安装了gcc编译器。
long@ubuntu:~$ which gcc
/usr/bin/gcc
long@ubuntu:~$ gcc --help
3. 使用 VMware 工具完成 Windows 与 Ubuntu 的文件共享。
安装 VMware Tools 。(见先前文章)
在Windows上创建一个目录,自定义名为“share”
回到虚拟机,“虚拟机(M)” –> “设置(S)”
回到Ubuntu 终端,查看共享目录
long@ubuntu:~$ ls /mnt/hgfs/
share
如果没有,请重新安装 VMware Tools
4. 编译测试
在 Windows 编辑器编写 hello.c
//hello.c
#include <stdio.h>
int main(void)
{
printf("hello !\n");
return 0;
}
回到 Ubuntu 编译
long@ubuntu:~$ cd /mnt/hgfs/share
long@ubuntu:~$ gcc hello.c -o hello
long@ubuntu:~$ ./hello
hello !