|
The reason the a.out isn't working is because it's linked to some sort of library, which is present at compile time but not at run time, you'r nm command will tell you what a.out is trying to get in contact with during it's run.
The way you'd make anything usable on any BSDi box, is to ensure the libraries it needs will be present on the target box, thus using dependensies.
|