CentOS安裝perl時候報錯解決

在CentOS上安裝perl的時候一直提示Failed:

具體執行了執行爲:

make && make test && make install

則會提示報錯,報錯信息如下:

### Since not all tests were successful, you may want to run some of
### them individually and examine any diagnostic messages they produce.
### See the INSTALL document's section on "make test".
### You have a good chance to get more information by running
###   ./perl harness
### in the 't' directory since most (>=80%) of the tests succeeded.
### You may have to set your dynamic library search path,
### LD_LIBRARY_PATH, to point to the build directory:
###   setenv LD_LIBRARY_PATH `pwd`; cd t; ./perl harness
###   LD_LIBRARY_PATH=`pwd`; export LD_LIBRARY_PATH; cd t; ./perl harness
###   export LD_LIBRARY_PATH=`pwd`; cd t; ./perl harness
### for csh-style shells, like tcsh; or for traditional/modern
### Bourne-style shells, like bash, ksh, and zsh, respectively.
u=4.06  s=3.87  cu=396.83  cs=100.49  scripts=2165  tests=493255
make: *** [test] Error 1

目前解決方案是make && make test && make install 分開執行,make  test 指令會報錯,其他兩個則可以執行成功,指令顯示已經成功

perl -v

截圖如下

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章