我无法在Heroku上安装XML::LibXSLT。看起来所需的库gdbm
没有安装,尽管在Heroku堆栈cedar和cedar-14中被列为已安装的Ubuntu包。类似的问题在这个问题上也有报道,但在Heroku上没有,它不允许安装新的Ubuntu软件包。
要重现错误,请创建一个最小的存储库,需要cpanfile
:中的XML::LibXSLT
$ git init
$ echo 'requires "XML::LibXSLT";' > cpanfile
$ echo 'sub { [200,[], ['Hello World']] }' > app.psgi
$ git add cpanfile app.psgi
$ git commit -m "initial commit"
使用Heroku buildpack perl创建一个新的Heroku应用程序以运行cpanm
:
$ heroku create --stack cedar --buildpack https://github.com/miyagawa/heroku-buildpack-perl.git
$ git push heroku master
错误日志包含
! Installing XML::LibXSLT failed. See /app/.cpanm/work/1412752363.1663/build.log for details. Retry with --force to force install it.
! Installing the dependencies failed: Module 'XML::LibXSLT' is not installed
! Bailing out the installation for ..
要获得更详细的错误消息,请尝试手动安装:
$ heroku run cpanm --verbose XML::LibXSLT
失败,出现以下错误
....
LD_RUN_PATH="/usr/lib" cc -shared -O2 -g -L/usr/local/lib -fstack-protector LibXSLT.o perl-libxml-mm.o -o blib/arch/auto/XML/LibXSLT/LibXSLT.so
-L/usr/lib -lxslt -lxml2 -lz -lm -lexslt -lgdbm -lgdbm_compat -ldl -lm -lpthread -lc -lcrypt
/usr/bin/ld: cannot find -lgdbm
collect2: ld returned 1 exit status
make: *** [blib/arch/auto/XML/LibXSLT/LibXSLT.so] Error 1
FAIL
! Installing XML::LibXSLT failed. See /app/.cpanm/work/1412753360.2/build.log for details. Retry with --force to force install it.
如上所述,Heroku已经安装了Ubuntu包libgdbm3
和libxslt1-dev
(用heroku run dpkg --get-selection
确认),所以我想知道为什么编译仍然失败。
只需尝试安装libgdbm 的开发包
apt-get install libgdbm-dev
CPAN通常需要开发包来安装模块。