Re: undefined symbol: PL_stack_sp

[email protected] Thu, 17 Jul 2014 22:22:23 +1000
Newsgroups perl.inline
Message-ID <4F8979E4D8F847FB98020AD4A04EC66B@OwnerPC311012>
From: demerphq
Sent: Thursday, July 17, 2014 7:25 PM
To: Sisyphus
Cc: [email protected]

> When I moved the scripts out of a perl build tree it started behaving 
> properly. IMO that issue can be left at "so dont do that". :-)

AFAICT, the only difference between building in /git_tree/perl/Porting and 
/somewhere/else is that instead of doing:

cc -c  -I"/git_tree/perl/Porting" -D_REENTRANT [...] FOO_1ef8.c
the build will do:
cc -c  -I"/somewhere/else" -D_REENTRANT [...] FOO_1ef8.c

All other commands that get run would be the same. (You could check this by 
comparing the BUILD_NOISY outputs for both situations.)

So I'm wondering whether, in the running of the above command, something was 
found in "/git_tree/perl/Porting" that really ought not have been found and 
loaded.

Cheers,
Rob