Update: Ok, so can't use a BEGIN block...
On Windows, exec is simulated in a strange way. Apparently, it's creating a new process and exiting the caller before the new process exits.
(Update 2: On Linux, exec does not start a new process, it loads a new executable into the calling process. From the command shell's point of view, the process it launched is still running, so it's not trying to read STDIN.)Your problem with system is that you need to exit after system returns:
use warnings; use strict; use Module::Load; if(! $ENV{SPRING_WRITEDIR}) { $ENV{SPRING_WRITEDIR}='E:\\test'; system {$^X} ($^X,$0); exit; }
Yes, you will have 2 Perl processes where you had 1, but one of those will be idle while waiting on the other to exit.
Please try:
use warnings; use strict; BEGIN { $ENV{SPRING_WRITEDIR}='E:\\test'; $ENV{PATH}="E:\\springrts;$ENV{PATH}"; } use Module::Load; load("PerlUnitSync"); PerlUnitSync::Init(0,0); my $writeDir=PerlUnitSync::GetWritableDataDirectory(); print "writeDir=$writeDir\n";
This will set the environment before Module::Load is loaded.
In reply to Re^17: Using STDIN after exec() with ActiveState Perl
by RonW
in thread Using STDIN after exec() with ActiveState Perl
by Yaribz
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |