PERL: Compile Dari Source: Difference between revisions

From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs)
New page: Lakukan wget http://www.cpan.org/src/5.0/perl-5.14.2.tar.gz tar -xzf perl-5.14.2.tar.gz cd perl-5.14.2 ./Configure -des -Dprefix=$HOME/localperl make make test make install ==Pra...
 
Onnowpurbo (talk | contribs)
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:


  wget http://www.cpan.org/src/5.0/perl-5.14.2.tar.gz
  wget http://www.cpan.org/src/5.0/perl-5.14.2.tar.gz
  tar -xzf perl-5.14.2.tar.gz
  tar zxvf perl-5.14.2.tar.gz
  cd perl-5.14.2
  cd perl-5.14.2
  ./Configure -des -Dprefix=$HOME/localperl
  ./Configure -des
# ./Configure -des -Dprefix=$HOME/localperl
  make
  make
  make test
  make test
  make install
  make install


Kalau 'make test' tidak 100% berhasil kita bisa mengevaluasi menggunakan
export LD_LIBRARY_PATH=`pwd`; cd t; ./perl harness
Untuk instalasi
make install
==Referensi==
* http://www.cpan.org/src/README.html
* http://www.perl.org/get.html


==Pranala Menarik==
==Pranala Menarik==

Latest revision as of 10:09, 12 February 2012

Lakukan

wget http://www.cpan.org/src/5.0/perl-5.14.2.tar.gz
tar zxvf perl-5.14.2.tar.gz
cd perl-5.14.2
./Configure -des
# ./Configure -des -Dprefix=$HOME/localperl
make
make test
make install

Kalau 'make test' tidak 100% berhasil kita bisa mengevaluasi menggunakan

export LD_LIBRARY_PATH=`pwd`; cd t; ./perl harness

Untuk instalasi

make install

Referensi

Pranala Menarik