“…/auto/List/Util/Util.so: undefined symbol: PL_stack_sp at …/XSLoader.pm” only when running test suite with CGI::Test _and_ on Travis CI

一世执手 提交于 2019-12-06 13:23:19

Found it myself: It were the #!/usr/bin/perl shebang lines in my example CGI scripts in the test suite (and/or maybe also the same shebang line in t/cgi-test.t).

Changing them to #!/usr/bin/env perl fixed the issue, i.e. the tested CGI scripts were running with the system perl instead of the perlbrew-installed one.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!