in reply to Re: Re: Re: Problems Compiling Modules.
in thread Problems Compiling Modules.

Well I reinstalled perl using gcc, and I'm still suck, when I use cc to compile to module I get

/usr/ucb/cc: language optional software package not installed

I can't seem to find any packages anywhere for Sun's cc compiler, so I'm getting most frustrated I may have to attempt modifying the Config.pm as suggested earlier, but with my skill level i am hesistant. Once again I thank all here for their help in this matter.

LO
  • Comment on Re: Re: Re: Re: Problems Compiling Modules.

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Problems Compiling Modules.
by davorg (Chancellor) on Dec 14, 2000 at 22:32 UTC

    Hmm... check that the first perl on your path is the one that you've just rebuilt using gcc.

    Also try running perl -V to see the config options that your perl was built with. The 'cc' option should be about eight lines down.

    --
    <http://www.dave.org.uk>

    "Perl makes the fun jobs fun
    and the boring jobs bearable" - me

      You can also see the configuration of specific options, like this:
      % perl -V:cc -V:ccflags cc='cc'; ccflags='-Dbool=char -DHAS_BOOL -I/usr/local/include';