|
You must include this into the script you are compiling:
#perl2exe_include Math::BigInt::Calc;
I had put it before the library loading so the final code looked likes like this:
#Perl2Exe
#perl2exe_include Math::BigInt::Calc;
use strict;
use Spreadsheet::WriteExcel;
use Spreadsheet::ParseExcel::Simple;
Afterthat I was able to compile it with perl2exe without any problem.
L243
|