is it possible to compile windows exe on a linux box?
After doing this.. if I try to run it on linux (i know i shouldn't), it complains about a module.. so does linking modules not work with the above code? It specifically Complains about DateTime... but thats the first module I've listed... I'm using about 6 of them.
The Ultimate Goal:
I want to create an exe that can run alone on a windows box. I copied this exe to my XP machine and when I run the 3meg file on my box it gives me an error:
Program too big to fit in memory.
What gives? I'm new to pp
Code:
pp -o output.exe myfile.pl
After doing this.. if I try to run it on linux (i know i shouldn't), it complains about a module.. so does linking modules not work with the above code? It specifically Complains about DateTime... but thats the first module I've listed... I'm using about 6 of them.
The Ultimate Goal:
I want to create an exe that can run alone on a windows box. I copied this exe to my XP machine and when I run the 3meg file on my box it gives me an error:
Program too big to fit in memory.
What gives? I'm new to pp