http://www.perlmonks.org?node_id=23790

Russ has asked for the wisdom of the Perl Monks concerning the following question:

Question moved from Categorized Q&A
Please do not vote for this node. It will affect the wrong user. Thank you -- Q&AEditors

I have GCC 2.8.1 for windows and ActivePerl 5.6 build 615, and I want to install DBI 1.14.

How can I do this?

Replies are listed 'Best First'.
Re: Installing DBI on Win32 with GCC 2.8.1
by jeorgen (Pilgrim) on Aug 03, 2000 at 15:46 UTC
    Well, I'm not sure, but here are some observations. Anyone more knowledgeable feel free to correct and add info.

    There is a file called "Config.pm" in perl's lib. It contains information on what C compiler to use, and what flags to pass to it when compiling any C code for installing a perl module.

    The data in Config.pm about these things seem to be dependant on what compiler perl itself was compiled with in the first place, for your computer. ActivePerl is a binary distribution and hence precompiled. For ActivePerl 5.005 this is Microsofts C compiler (cl.exe). I guess this is true also for v 5.6 that you are using.

    It should be possible to edit Config.pm and tweak the settings so that you can use gcc instead, e.g. change:

    cc='cl.exe'
    to:
    cc='gcc.exe'
    ... and then go on to change flags in a suitable way. You must also have gcc in your PATH. I tried doing this yesterday, with mingw's gcc and the help of a friend who knows C. It didn't work out,and we resorted to installing Microsoft C++ instead. Then it worked like a breeze, installing Text::CSV_XS for DBD::CSV.

    In order to install a module with C code in it you then do the usual "make", "make test" and "make install". So you need a make program. There is one with gcc but I don't know if it works with perl on Win32, never tried it. There is however a make program from Microsoft called nmake freely available. It works well and you type "nmake", "nmake test" .. etcetera to use it.

    /jeorgen

Installing DBI on Win32 with GCC 2.8.1
by agoth (Chaplain) on Aug 03, 2000 at 15:54 UTC
    Why do you need to use gcc at all?

    Use ppm which comes with activestate and all your problems should be solved

    perldoc ppm or just > ppm at the comand prompt ppm install DBI

    you can even get round firewalls with the right ENV vars, or download the package first then use ppm.

    HTH