Re: [FFmpeg-devel] [PATCH] configure: add build tree's directories to rpath

2014-10-22 Thread Nicolas George
Le decadi 30 vendémiaire, an CCXXIII, Lukasz Marek a écrit : > Building with static link is much slower. > I agree patch is wrong, it could be controlled by separate option, just > for devel, but nvm. It can be controlled by LD_LIBRARY_PATH, as Derek pointed out. I use this (zsh): libs=($src/li

Re: [FFmpeg-devel] [PATCH] configure: add build tree's directories to rpath

2014-10-21 Thread Lukasz Marek
On 21 October 2014 12:01, Derek Buitenhuis wrote: > On 10/21/2014 8:21 AM, Carl Eugen Hoyos wrote: > > This sounds like a very bad idea to me > > I agree. It's not nice to have remnants of the build process in the > installed binaries. > > If you need to run them during development, use LD_LIBRAR

Re: [FFmpeg-devel] [PATCH] configure: add build tree's directories to rpath

2014-10-21 Thread Derek Buitenhuis
On 10/21/2014 8:21 AM, Carl Eugen Hoyos wrote: > This sounds like a very bad idea to me I agree. It's not nice to have remnants of the build process in the installed binaries. If you need to run them during development, use LD_LIBRARY_PATH or or build statically. - Derek

Re: [FFmpeg-devel] [PATCH] configure: add build tree's directories to rpath

2014-10-21 Thread Carl Eugen Hoyos
Lukasz Marek gmail.com> writes: > if you run > configure --enable-rpath --disable-static --enable-shared > make > make install > then installed binaries of the fftolls will have more > paths defined to look libraries for. This sounds like a very bad idea to me > but The goal is to allow to run

Re: [FFmpeg-devel] [PATCH] configure: add build tree's directories to rpath

2014-10-20 Thread Lukasz Marek
W dniu wtorek, 21 października 2014 Carl Eugen Hoyos napisał(a): > Lukasz Marek gmail.com> writes: > > > This commit allows to run programs linked > > dynamically in build dir without installing. > > Sorry if I misunderstand: > Doesn't this patch change the properties of the > installed binaries

Re: [FFmpeg-devel] [PATCH] configure: add build tree's directories to rpath

2014-10-20 Thread Carl Eugen Hoyos
Lukasz Marek gmail.com> writes: > This commit allows to run programs linked > dynamically in build dir without installing. Sorry if I misunderstand: Doesn't this patch change the properties of the installed binaries? Carl Eugen ___ ffmpeg-devel mai

[FFmpeg-devel] [PATCH] configure: add build tree's directories to rpath

2014-10-20 Thread Lukasz Marek
This commit allows to run programs linked dynamically in build dir without installing. Signed-off-by: Lukasz Marek --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 3e181aa..5cef407 100755 --- a/configure +++ b/configure @@ -5076,6 +5076,7 @@ check_di