2019年8月19日 星期一

手動安裝PCRE-8.43

PCRE是Perl Compatible Regular Expression函式庫,安裝完以後,會有下面三個程式:
  • pcregrep:Perl相容的grep
  • pcretest:測試某個regular expression是否是Perl相容
  • pcre-config:用在編譯其他程式而需要鏈結到PCRE library
安裝的函示庫會有:
  • libpcre.so, libpcre16.so, libpcre32.so:支援一般、16, 32-bit character
  • libpcrecpp.so:應該是pcre給cpp用的函示庫
  • libpcreposix.so

手動安裝到指定資料夾(不需要root權限)如下:
$ wget ftp://ftp.pcre.org/pub/pcre/pcre-8.43.tar.bz2
$ md5 pcre-8.43.tar.bz2 
MD5 (pcre-8.43.tar.bz2) = 636222e79e392c3d95dcc545f24f98c4

$ tar jxf pcre-8.43.tar.bz2 && cd pcre-8.43
$ ./configure --prefix=/YOUR/DESTINATION --enable-utf8
$ make -j 16
$ make install
_EOF_

沒有留言:

張貼留言