in reply to Re: Does Inline::CPP module works with VS 2008(vc 9.0)
in thread Does Inline::CPP module works with VS 2008(vc 9.0)

This node falls below the community's threshold of quality. You may see it by logging in.
  • Comment on Re^2: Does Inline::CPP module works with VS 2008(vc 9.0)

Replies are listed 'Best First'.
Re^3: Does Inline::CPP module works with VS 2008(vc 9.0)
by Corion (Patriarch) on Sep 16, 2009 at 13:20 UTC

    Please read the Writeup Formatting Tips. A reply in bold makes it look as if you're shouting, which I consider impolite. Especially, put your code in between <code> tags and your plain text in between <p> tags.

    The error message means that the dmake program was not found. This is likely because you have either not installed it, or Windows cannot find it in the directories in the PATH environment variable.

    So you or your system administrator will need to fix the setup of your machine in that regard.

      oops Corion, I was simply making the text bold so that its clear to read

      thanks for the advice, but it seems dmake is located at the below mentioned path

      C:\strawberry\c\bin

      is there any way to link this to perl

      thanks

        Yes. Let me suggest to you for a third time to read about the PATH environment variable (%PATH in cmd.exe and $ENV{PATH} in Perl), and how to set it up so it includes certain directories while not including others. If you find problems with that, your system administrator will likely be of assistance in configuring your machine to your needs.

        Normally, the setup of Strawberry Perl sets the environment variable correctly, so you must have done something out of the ordinary to break that.

        See for example my reply to one of your threads, Re^4: Problem running Sample code in Strawberry perl, for a way to programmatically set up the runtime environment for Strawberry Perl.