Skip to content

Instantly share code, notes, and snippets.

@melo
Created February 29, 2012 02:54
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save melo/1937200 to your computer and use it in GitHub Desktop.
Save melo/1937200 to your computer and use it in GitHub Desktop.
Compiling perl 5.14.2 with perlbrew on CentOS 6 64bit with mod_perl support
# the fpic is needed for mod_perl
# so is usesshrplib
# use 64bitall just makes sense as uselargefiles
# the ldflags mimic the settings of the system perl
perlbrew install -j 8 5.14.2 \
-Dcccdlflags=-fPIC \
-Duseshrplib \
-Duse64bitall \
-Duselargefiles \
-Aldflags='-L/lib64 -L/usr/lib64'
Copy link

ghost commented May 27, 2012

Thanks for solution!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment