Re: [Qemu-devel] [PATCH] Add -static earlier to LDFLAGS for compile_prog()

2010-02-06 Thread Aurelien Jarno
On Sun, Jan 31, 2010 at 12:23:45PM +0100, Loïc Minier wrote: > Add -static to LDFLAGS earlier as to run the compile_prog() tests with > this flags, this will avoid turning on features for which a shared > library is available but not a static one. Thanks, applied. > Signed-off-by: Loïc Minier >

[Qemu-devel] [PATCH] Add -static earlier to LDFLAGS for compile_prog()

2010-01-31 Thread Loïc Minier
Add -static to LDFLAGS earlier as to run the compile_prog() tests with this flags, this will avoid turning on features for which a shared library is available but not a static one. Signed-off-by: Loïc Minier --- configure |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git

[Qemu-devel] [PATCH] Add -static earlier to LDFLAGS for compile_prog()

2010-01-17 Thread Loïc Minier
Hi When configure qemu with --static, it might autodetect support for some features by looking at available shared libraries instead of static libraries. e.g. if you have libbluetooth.so, bluez support will be turned on, but the build will fail at link stage. Setting LDFLAGS earlier