Struppi: Wie Modulbibliothek einbinden?

Beitrag lesen

Wie soll das schon einkompiliert sein, wenn das erst beim Installationsvorgang festgelegt wird?

Es ist sowohl als auch.

http://stackoverflow.com/questions/2526804/how-is-perls-inc-constructed-aka-what-are-all-the-ways-of-affecting-where-per

@INC setzt sich zusammen aus:

1. Perl interpreter is compiled with a specific default value of @INC that it was compiled with. To find out this value, run perl -V command and in the out you will see something like this:
..

2. Environmental variable PERL5LIB (or PERLLIB)

3. -I command line parameter

4. Pass it via the use lib pragma

(5. ist im Prinzip nur der direkte Weg von 4.)

Struppi.