On Fri, Feb 24, 2012 at 14:08, RAPPAZ Francois <francois.rap...@unifr.ch> wrote: > Strangely, I was unable to include the -l > C:\strawberry\perl\site\lib\auto\Pango\Pango.dll & co in the option file > since the dll were not found in that case.
Blame that on Getopt::ArgvFile: the line -l C:\strawberry\perl\site\lib\auto\Pango\Pango.dll comes out in @ARGV as ..., "-l", "C:strawberryperlsitelibautoPangoPango.dll", ... i.e. Getopt::ArgvFile interpolates the backslashes according to Perl quoted string rules. Enclsoe the filename in single quote to suppress that. Cheers, Roderich