Re: Static builds



Paul Davis schrieb:
> The Unix Way for this particular problem is to make your app a tiny
> shell script:
>
> 	#!/bin/sh
> 	
> 	export LD_LIBRARY_PATH=/the/path/to/somewhere/lib:$LD_LIBRARY_PATH
> 	exec /the/path/to/somewhere/bin/yourApp
>
> of course, the hard part is that without an installation step,
> determining /the/path/to/somewhere can be a bit tricky, but its
> certainly doable.
>
>   
Good hint. Thanks.

But still, this means two things:

1)    I'll have to carry around
   the program itself for all the operating systems used
  + the libs for all the operating systems used
  + some working script like the one above for all operating systems used,

 which is a no go.

2)   This is the wrong list for this question :-)

Regards,

    Sebastian Rose



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]