Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Hi all,
I'm new to Inline. I just installed it using ppm and tried the hello program.
I get the following error message.#!/usr/bin/perl -w use Inline C; use strict; hello_inline(); __END__ __C__ #include <stdio.h> void hello_inline( ) { printf( "Hello World. Best Regards from Inline\n" ); }
>C:\...\hello.pl 'nmake' is not recognized as an internal or external command, operable program or batch file. A problem was encountered while attempting to compile and install your + Inline C code. The command that failed was: nmake > out.make 2>&1 The build directory was: C:\...\_Inline\build\hello_pl_3492 To debug the problem, cd to the build directory, and inspect the outpu +t files. at ...\hello.pl line 0 INIT failed--call queue aborted.
I looked through the files created and can't find the nmake command. I'm using the microsoft visual C++ compiler (command line free version).
Thanks
IlanV
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Inline::C installation problem
by CountZero (Bishop) on Mar 29, 2004 at 20:06 UTC | |
|
Re: Inline::C installation problem
by Grygonos (Chaplain) on Mar 29, 2004 at 19:37 UTC | |
|
Re: Inline::C installation problem
by jZed (Prior) on Mar 29, 2004 at 20:03 UTC | |
by Grygonos (Chaplain) on Mar 29, 2004 at 20:13 UTC | |
by jZed (Prior) on Mar 29, 2004 at 20:25 UTC |