3

32 ビット マシンの Windows 用 Cygwin にPAR::Packerをインストールしようとしたので、 cpan pp. 次の問題に直面しています。

gcc-4 -c -DPERL_USE_SAFE_PUTENV -U__STRICT_ANSI__ -g -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include  -I/usr/lib/perl5/5.14/i686-cygwin-threads-64int/CORE  -DPARL_EXE=\parl.exe\ -O3 main.c windres -F pei-i386 -i winres\pp.rc -o winres\pp.res
gcc: winrespp.rc: No such file or directory
gcc: warning: '-x c' after last input file has no effect
gcc: no input files
windres: preprocessing failed.
Makefile:735: recipe for target ppresource.coff failed
make[1]: *** [ppresource.coff] Error 1
make[1]: Leaving directory /home/prabhakaran.srinivas/.cpan/build/PAR-Packer-1.013-eTAwxL/myldr
Makefile:594: recipe for target subdirs failed
make: *** [subdirs] Error 2
  RSCHUPP/PAR-Packer-1.013.tar.gz
  make -- NOT OK
CPAN: YAML loaded ok (v0.81)
Running make test
  Can't test without successful make
Running make install
  Make had returned bad status, install seems impossible
4

1 に答える 1

2

問題はmyldr/Makefile.PLにあります:

$pre_res = qq(winres\\pp.res);
$rt_cmd = qq(windres -F pei-i386 -i winres\\pp.rc -o $pre_res);
$res_cmd = qq(windres -o ppresource.coff $pre_res);
$res_section = $res;

以降、

$res_section:
    $rt_cmd
    $res_cmd

Cygwin の bash では、 の代わりにwinres\pp.rcとして解釈されます。正しい方法はwinrespp.rcwinres/pp.rc

$pre_res = catfile(winres => 'pp.res');
$rt_cmd = join ' ' => qw(windres -F pei-i386 -i), catfile(winres => 'pp.rc'), '-o', $pre_res;

于 2012-06-01T17:11:40.870 に答える