or compiling stage, however, I checked it all the required files
are present in the _Inline folder. I don't understand why it couldn't load it
at run time or compile time!
This is the error.
Had problems bootstrapping Inline module 'Corelis_JTAG_6bd5'
Ca
m using is - 2.510.2.2
There is literally no change between the Desktop Pc & the new laptop with
respect to the content I used to install & the scripts I run. But can't
understand the error. Can you help me to resolve the issue.
Shasi
Had problems bootstrapping Inline module
That is what I get after `perl Makefile.PL && make`. The module obviously
uses Inline::Lua. Makefile.PL follows the Inline-Support documentation
(replace ExtUtils::MakeMaker with Inline::MakeMaker, etc).
I'm stumped. It couldn't possibly be the case that one cannot create a
module package which us
as u said some name mangling had been going on.
I changed the call as chkthrd::thready->new() and added
DISABLE=>'AUTONAME' option to 'use Inline; ' to prevent name mangling.
It worked.Thanks a lot.
On 9/12/06, Jason Stelzer <[EMAIL PROTECTED]> wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash:
Whao, I think it will work ,I can confirm it once my present bug too
vanishes.Thanks a lot for the timely help. Now my code says the module
doesnt return true.Now I am trying to find where 1; should be put and sub
should begin and end in an inline code.
kararu.
On 9/12/06, Eric Wilhelm <[
# from Jason Stelzer
# on Tuesday 12 September 2006 01:26 pm:
>> 2.This code when used as stand alone script with hashbang(#!) line
>> works fine.But when I add 'pachage chkthr; and 1; to make it a
>> module gives error 'cannot locate object method new via package
>> thready.(perhaps you for
eable than myself. If I had to hazard a guess, I'd say that there's some sort of package name mangling going on when Inline::CPP is used within a module. What version of perl is this? I haven't used the CPP inline module, but I'll install it and see if I can get a feel for whats going on. --J.
PGP.sig
Description: This is a digitally signed message part
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Sep 12, 2006, at 9:36 AM, Karthika Arunkumar wrote:
Hi,
I use Inline module to call c++ from perl.It works fine as a
script.Butwhen i name the script file as package and give true value
at end , to use
the script from other file it is not
Hi,
I use Inline module to call c++ from perl.It works fine as a
script.Butwhen i name the script file as package and give true value
at end , to use
the script from other file it is not working.
Why is it? It says Cant locate object method new via package packagename.
Any help pls.
thanks
kararu.
lik wrote:
Hi all,
I was trying to install the Inline module on my Mandrake 10 system.
After making sure that all the dependencies are satisfied, I did "perl
Makefile.PL" and "make", which went fine. However, when I did make
(InlineModules would probably be a good
bet :-)
HTH,
Doug
On Dec 22, 2005, at 2:57 PM, vishal malik wrote:
Hi all,
I was trying to install the Inline module on my Mandrake 10 system.
After making sure that all the dependencies are satisfied, I did
"perl Makefile.PL" an
Hi all,
I was trying to install the Inline module on my Mandrake 10 system.
After making sure that all the dependencies are satisfied, I did "perl
Makefile.PL" and "make", which went fine. However, when I did make
test, I got th
- Original Message -
From: "Nick Wehr" <[EMAIL PROTECTED]>
To:
Sent: Monday, June 06, 2005 2:11 PM
Subject: problem 'use'ing an Inline module from CGI...
> I'm trying to publish my Inline module with AMF::Perl over an Apache
> webserver. I've
I'm trying to publish my Inline module with AMF::Perl over an Apache
webserver. I've installed the Combo.pm module which tests fine. I've
read that the webserver needs write permissions before compiling the
script but since I've already compiled it, I thought this would
w
- Original Message -
From: "Patrick LeBoutillier" <[EMAIL PROTECTED]>
To: "Nicholas Wehr" <[EMAIL PROTECTED]>
Cc:
Sent: Thursday, April 07, 2005 12:04 PM
Subject: Re: 'USE'ing an Inline module from within an Inline module
> I've don
bbit is
>
> the new module version 0.14. It is trying to 'use' an installed module
> 'Turtle' version 1.17. They both use Inline::C. Inline is generating
> this error during make:
>
>
>
> The version '0.14' for module 'Turtle' doe not
This would imply that you (or someone else) will
> have to hack the Inline module source to get it working properly.
>
If it's just a matter of getting the build process to work, go
into'install.al' and change 'croak M41_usage_install_version_mismatch(...'
to '
enerating
this error during make:
The version '0.14' for module 'Turtle' doe not match
the version '1.17' for Inline section 'Turtle'.
Here's the example Inline module:
#!/usr/bin/perl
package Rabbit;
my $VERSION = '0.14';
use Inline C
version 0.14. It is trying to 'use' an installed module
> 'Turtle' version 1.17. They both use Inline::C. Inline is generating
> this error during make:
>
> > The version '0.14' for module 'Turtle' doe not match
> > the version '1.17&
en I try to build an Inline C module that uses
an (already built) Inline C module. Quickest fix I could find was to make
sure both modules have the same version number . not a very satisfactory
solution.
>
>
> Here's the example Inline module:
>
> #!/usr/bin/perl
> pack
4' for module 'Turtle' doe not match
the version '1.17' for Inline section 'Turtle'.
Here's the example Inline module:
#!/usr/bin/perl
package Rabbit;
my $VERSION = '0.14';
use Inline C => 'DATA',
VERSION => '0.14',
NAME
On Tuesday 05 April 2005 17:27, Nicholas Wehr wrote:
> Hello,
>
> When I try to 'use' another module while compiling a new Inline module I
> get the error:
>
> The version '0.14' for module 'Foo' doe not match
> the version '1.17' for
Hello,
When I try to 'use' another module while compiling a new Inline module I
get the error:
The version '0.14' for module 'Foo' doe not match
the version '1.17' for Inline section 'Foo'.
Is there a way I can safely do this? I think
Thanks a lot Ken!
Indeed, our mod_perl was compiled by solaris cc, but Inline was compiled by gcc.
I have tried to rebuild Inline and install a new server with mod_perl and
Inline compiled by the same solaris cc. Now all of program should use solaris
cc to compile into the bin file. But, unfortun
Hi Jun,
I have a feeling that your mod_perl may have been compiled differently
than your original perl. This is often the source of failures with
C-based modules under mod_perl. By some combination of re-compiling
mod_perl and/or Inline, you may be able to get this working.
Also, the example
Thanks for your advice.
I found this function in perldoc Inline::C-Cookbook.
Problem
How do I use Inline with mod_perl?
Solution
package Factorial;
use strict;
use Inline Config =>
DIRECTORY => '/usr/local/apache/
On Wed, Feb 23, 2005 at 04:22:02PM +0800, Jun Ming wrote:
> Hi all,
> We are using Inline-0.44 as a perl module in Apache 2.0.52 with
> mod_perl/1.999.20 in Solaris 2.8. There is some error in Apache's error_log,
> please see the details as reference.
>
> If we use Inline as Example 1, even w
Thank for your response.
But that is all programs in example 1 and 2 we use, I mean this kind of error
happened even when we didn't put any C code in the program at all.
Miyamoto Musashi <[EMAIL PROTECTED]> wrote:
I would recommend reviewing your C code. It seems that segmentation
faults are
I would recommend reviewing your C code. It seems that segmentation
faults are common pitfalls when using the perlapi. Write tests against
the functions to be certain that they perform correctly. If your program
uses standard C library functions - make sure to read the perlclib man
page. Good luck!
Hi all,
We are using Inline-0.44 as a perl module in Apache 2.0.52 with
mod_perl/1.999.20 in Solaris 2.8. There is some error in Apache's error_log,
please see the details as reference.
If we use Inline as Example 1, even without any real C program, Apache server
always reports the previous
Djun Kim wrote:
Hi,
I see that the perl.inline newsgroup/mailing list is
quite active, but the Inline module on CPAN has stagnated.
In particular, I just installed Inline, and discovered
the same problem which was reported/fixed in posting
1820 on perl.inline, in Nov. 2002.
Which bug is that
Hi,
I see that the perl.inline newsgroup/mailing list is
quite active, but the Inline module on CPAN has stagnated.
In particular, I just installed Inline, and discovered
the same problem which was reported/fixed in posting
1820 on perl.inline, in Nov. 2002.
Why has the code on CPAN not
Eike Grote wrote:
>
> Hi,
>
> First, let me thank you for the development of this great module
> named Inline and the presentation at the German Perl Workshop !
>
> I tried it out the following day and it works fine also with
> LinuxPPC (Red Hat variant for PowerPC machines like the ones
> made
David Grunwald wrote:
>
> All,
>
> Can anyone provide me a step by step guide to install the .031 version
> of Inline. I have installed .026 and am running ActiveState Perl
> 5.6.0. I used the ppm install program successfully for the earlier
> version (.026).
>
> Now I need version .031.
> I
All,
Can anyone provide me a step by step guide to install the .031 version
of Inline. I have installed .026 and am running ActiveState Perl
5.6.0. I used the ppm install program successfully for the earlier
version (.026).
Now I need version .031.
I downloaded the zipped version from:
http://
35 matches
Mail list logo