歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> Linux教程

Ubuntu下使用STLport

看了很多文章,編譯安裝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 下有沒有環境變量的概念。

  1. #include<stdio.h>   
  2. #include<vector>   
  3.   
  4. int main()  
  5. {  
  6.     std::vector<int>  v1;  
  7.     v1.push_back(0);  
  8.     printf("the first element of vector is %d\n",v1[0]);  
  9.     return 0;  
  10. }  

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

www.linuxidc.com@ubuntu:~/project$ ./use_stl

the first element of vector is 0

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

Copyright © Linux教程網 All Rights Reserved