在Ubuntu系統中,GCC已經作為默認的編譯器存在,而Mingw-w64則提供了在Linux環境下編譯Windows程序的能力。因此,你實際上不需要同時使用它們,但如果你確實需要,可以按照以下步驟進行:
sudo apt update
sudo apt install mingw-w64
sudo apt update
sudo apt install build-essential
gcc --version
i686-w64-mingw32-g++
或x86_64-w64-mingw32-g++
)編譯Windows程序。例如,編譯一個簡單的C程序:i686-w64-mingw32-g++ test.cpp -o test.exe
test.exe
)可以直接在Windows平臺上運行。通過上述步驟,你可以在Ubuntu系統中同時使用Mingw-w64和GCC,根據項目需求選擇合適的編譯工具。