I am trying to use PAR to build a MacOS X application bundle of a program developed using wxPerl.
If I use "pp -o myprog myprog.pl", it creates a binary that runs OK on my development machine. However, if I try to give it any commandline parameters, it starts to launch and then dies giving me this error:
RegisterProcess failed (error = -50) Abort trap
Also, if I attempt to put this created binary into an application bundle I get the same error in the console.log.
I'll stop there for now and see if anyone has any pointers, maybe I don't have to go any further because someone has already found a solution... My "workaround" was to create a Foundation Tool in XCode that pulls keys from the Info.plist file to know which EXE to launch from the Resources directory of the application bundle and what command line parameters to pass to it. This "sort of works", but I'd love to use PAR to put all the parts together. If I launch the binary created by `pp` in my program I get the same error referenced above.
Thanks!
Steve