in reply to perldoc for InlineX

Two of us finally managed to locate the missing executable (cl.exe), so the compiler now works. But now comes the semi-infinite loop of searching through the new error messages to try to determine why some include files cannot be found.
I know that I am a beginner with Inline and so forth (although not a perl beginner). But is installing a module and getting it running traditionally this difficult? Please forgive my frustration, but this is the end of the second day, with no apparent success. Thanks for all the help.

Replies are listed 'Best First'.
Re^2: perldoc for InlineX
by almut (Canon) on Oct 09, 2007 at 01:15 UTC

    /me is wondering if maybe you just need to run the vcvars32.bat to set up the appropriate environment for command line builds...

Re^2: perldoc for InlineX
by mwah (Hermit) on Oct 09, 2007 at 07:28 UTC
    As almut noted, there need to be some
    environment variables set for the cl in VC++6 to work properly.

    You may accomplish this by invoking (on a standard install, YMMV)
    C:\Microsoft Visual Studio\VC98\Bin\vcvars32.bat
    as noted in "vcvars invoked?" or by including
    the PATH, INCLUDE, LIB, MSDevDir and MSVCDir "by hand".

    If the environment variables are set properly, all should be fine.
    (This is normally part of the MSVC install process, did you
    deliberately not register the environment variables?)

    For a first check, open a command prompt and
    type "set" (and post the results here)

    Regards

    mwa