Michael Peters wrote: > Matisse Enzer wrote: > >> forgive me but what is the magic variable to get archname? for example, >> on my system archname is >> darwin-thread-multi-2level > > use Config; > $Config{archname}
If you just need to see it and don't need to use it directly in Perl, you can also just: perl -V | grep archname Mark