in reply to Re^2: GIMME_V==G_ARRAY anomaly on win32 (5.10 only)
in thread GIMME_V==G_ARRAY anomaly on win32 (5.10 only)

but it does use the same CRT as the compiler that built ActivePerl

My final speculation. Does this change anything?

use warnings; use Inline C => Config => BUILD_NOISY => 1; use Inline C => <<'EOC'; int junk( int val ) { return printf( "%d\n", val ); } void foo() { junk( GIMME_V == G_ARRAY ); } EOC my $x = [foo()];

Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
"I'd rather go naked than blow up my ass"

Replies are listed 'Best First'.
Re^4: GIMME_V==G_ARRAY anomaly on win32 (5.10 only)
by syphilis (Archbishop) on Dec 19, 2009 at 01:31 UTC
    Does this change anything?

    Unfortunately, no :-)

    Cheers,
    Rob