個人的なメモを記していくためのページです。
でもAC。
$ ./Configure -de -Accflags="-mcpu=i686 -fomit-frame-pointer -O2" # ちょっと最適化オプションを足した。 $ make # エラーが出るが気にしない。 $ make test # all test pass するはず。した。 $ su # make installこれで perl は もとからある /usr/bin/perl と /usr/local/bin/perlの二つ入ったことになる。 ためしに
$ perl -v
This is perl, version 5.005_03 built for i386-linux
Copyright 1987-1999, Larry Wall
Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5.0 source kit.
Complete documentation for Perl, including FAQ lists, should be found on
this system using `man perl' or `perldoc perl'. If you have access to the
Internet, point your browser at http://www.perl.com/, the Perl Home Page.
あれ? PATHの問題?
$ echo $PATH /usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/home/tito/bin/usr/local/binが二回でているのが愛嬌としてなぜ?そういえば、と思い出して type で確かめる。
$ type perl perl is hashed (/usr/bin/perl)やっぱり。PATHを検索しなおさせるには
$ hash -rこんどは
$ perl -v
This is perl, v5.8.3 built for i686-linux
Copyright 1987-2003, Larry Wall
Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.
Complete documentation for Perl, including FAQ lists, should be found on
this system using `man perl' or `perldoc perl'. If you have access to the
Internet, point your browser at http://www.perl.com/, the Perl Home Page.
と5.8.3が無事動いた。
ぼちぼち新しい perl に慣れていこう。