in reply to Re^16: Using STDIN after exec() with ActiveState Perl
in thread Using STDIN after exec() with ActiveState Perl
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.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^18: Using STDIN after exec() with ActiveState Perl
by Yaribz (Beadle) on Jun 23, 2015 at 08:59 UTC | |
by Anonymous Monk on Jun 23, 2015 at 09:21 UTC | |
by Yaribz (Beadle) on Jun 23, 2015 at 09:35 UTC | |
by RonW (Parson) on Jun 23, 2015 at 17:37 UTC | |
by Yaribz (Beadle) on Jun 23, 2015 at 20:04 UTC |