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()];
|
|---|
| 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 |