Windows10 VS2017 C++編譯Linux程式

大囚長發表於2018-12-28
#include <cstdio>
#include <iostream>
#include "unistd.h"

using namespace std;

int main()
{
	while (true)
	{
		cout << "hello linux!" << endl;
		sleep(1);
	}
   
    return 0;
}

開啟Linux虛擬機器,執行以上程式碼,彈出連線框,輸入地址,使用者名稱和密碼,Linux需要安裝g++和GDB。
有一些庫和函式include之後vs會報錯,但是編譯可以正常進行。
vs2017持續開啟一定時間後,會提示rsync.exe和devenv.exe需要聯網,這時允許之後,再看編輯提示,報錯消失……

相關文章