首頁 >系統教程 >Linux >Ubuntu下使用STLport講解

Ubuntu下使用STLport講解

WBOY
WBOY轉載
2024-01-08 08:06:10974瀏覽

看了很多文章,編譯安裝stlport之後,總是會提示出現找不到頭文件,或者鏈接不到什麼庫之類的,很是苦惱,今日按照自帶的文檔操作了一次,竟然可以了,神奇啊。

實際上很簡單,步驟如下:

進入stlport目錄,cd stlport/build/lib

#make -f gcc.mak depend

make -f gcc.mak install

接著就可以使用了,不需要包含usr/local 下include.lib目錄,也許在執行make -f gcc.mak install 已經加到環境變數了,也不知道Linux 下有沒有環境變數的概念。

#include

#include

int main()

{

std::vector v1;

v1.push_back(0);

printf("the first element of vector is %d\n",v1[0]);

return 0;

}

www@Ubuntu:~/project$ g -g -o use_stl use_stl.cpp

www@ubuntu:~/project$ ./use_stl

the first element of vector is 0

咦,原來如此簡單,之前費了不少力啊,其實按照文檔走就可以了,嘿嘿,切記切記!

以上是Ubuntu下使用STLport講解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:jb51.net。如有侵權,請聯絡admin@php.cn刪除