in reply to Override ExtUtils::MakeMaker

Hi,

See ExtUtils::FakeConfig as a means to override Config

I find it much simpler to install my own perl, no Config editing at all :)

  • Comment on Re: Override ExtUtils::MakeMaker (override %Config))

Replies are listed 'Best First'.
Re^2: Override ExtUtils::MakeMaker (override %Config))
by roperl (Beadle) on Jun 01, 2018 at 21:31 UTC
    cool thanks I'll check it out

    I got it to compile without having to change MakeMaker options
    The issue was linking the object files was giving me this error for every symbol
    ld: fatal: symbol 'MQFIELD_STR' is multiply-defined: (file MQSeries.o type=FUNC; file constants.o type=FUNC);

    I added this to the Makefile for the LD variable
    LD = /opt/solarisstudio12.3/bin/cc --allow-multiple-definition

    This allows for the multiply-defined symbols.