in reply to How to install perl in custom directory on solaris.

You are kind of setting up your compiling environment in a weird way. BUT....

  • Do a which perl and make sure you can find it. Do a gcc -v to confirm it is executable
  • At a minimum, do a sh Configure -Dusedtrace -Dcc=gcc -Dprefix=<your directory>
  • You are going to need to tell Configure that the compiler you want to use is gcc. Configure assumes cc for Solaris.

    • Comment on Re: How to install perl in custom directory on solaris.