Created
February 29, 2012 02:54
Compiling perl 5.14.2 with perlbrew on CentOS 6 64bit with mod_perl support
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for solution!!!