Hi there,
I am using the following command to compile my perl codes. perlcc -B -o "$filename" "$file"
Which works wonderfully. The problem comes in when my programmes are attempting to do the work
I have a file called globals.pl which requires Global_Socket.pl
Program.pl requires globals.pl
Now when all three are compiled I lose the values of some of the variables that are in globals.pl. As soon as Global_Socket.pl is not compiled those values arent lost.
(This is a sample scenario, my real globals requires about 8 different files)
Does anyone know how to get around this? Or for me to be able to compile all files and make sure that they all work.
Thanks in advance