in reply to Re^2: Perl install ignores -Dprefix
in thread Perl install ignores -Dprefix
perl444 stands for perl using gcc-4.4.4; the 27 represents the OS which is the 2.6.27 kernel; O1((that's capital O followed by 1) stands for the optimization flag that I will use; lastly, the version number which I'm using. Next, you probably should set the path for your compiler and its library:mv /opt/perl444-27-O1-5.20.0-RC1 /opt
Then change directory:export CC=/opt/444/bin/gcc export LD_LIBRARY_PATH=/usr/local/lib
Now, following Corion's advice:cd /opt/perl444-27-O1-5.20.0-RC1
Hit Enter and it starts the configuration../Configure -Dcc=/opt/444/bin/gcc -Dprefix=/opt/perl444-27-O0-5.20.0-R +C1 -DDEBUGGING
|
---|