regexes has asked for the wisdom of the Perl Monks concerning the following question:
Output of the program is:#!/usr/bin/perl use strict; use Config; my $os = $^O; my $config = $Config{'archname'}; print "OS -> $os\n"; print "Config -> $config\n";
So.... on an actual AIX host, the program outputs:OS -> aix Config -> aix
If I'm not mistaken, PASE is supposed to emulate the AIX environment for OS400. So... is it safe to assume that the output of $Config{'archname'} on OS400 is valid, i.e. can it be stated that anytime that output is aix, it's not AIX architecture but OS400?OS -> aix Config -> aix-thread-multi
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: OS400 Pace - architecture?
by Fletch (Bishop) on Jun 06, 2007 at 13:19 UTC | |
by regexes (Hermit) on Jun 06, 2007 at 13:42 UTC | |
|
Re: OS400 Pace - architecture?
by chase (Sexton) on Jun 06, 2007 at 16:54 UTC |