1. 程式人生 > >linux 編譯c++步驟

linux 編譯c++步驟


直接在命令列中寫入  apt-get install g++ (需取得 root 許可權)
// 取得 root 許可權
ubuntu : su -r
red hat : su root
suse : su root
如果上一部出錯,請嘗試寫入 apt-get update ,
待完成之後再寫入  apt-get install g++  應該就會成功

//編譯使用命令: 
g++ -o exefilename test.cpp //exefilename 命名test.cpp原始碼編譯生成的可執行檔案
//用這個命令執行:
./exefilename.out //exefilename 為上面生成的可執行檔名

至此c++就可一編譯了