Hi,
I started learning Inline::C a few minutes back.
I typed in the following code.
use warnings;
use Inline C => Config =>
BUILD_NOISY => 1;
use Inline C => <<'EOC';
void foo() {
printf("hello\n");
}
EOC
foo;
I got the error
C:\Perl\lib\CORE\perl58.lib : fatal error LNK1106: invalid file or
disk full: cannot seek to 0x45ba0b55
I just removed
use Inline C => Config =>
BUILD_NOISY => 1;
from the above code.
I get nothing on my output screen other than
'Microsoft Program Maintenance Utility Version 1.50'
Any help appreciated.
regards,
jis