qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 3/5] Add -static earlier to LDFLAGS for compile_prog


From: Juan Quintela
Subject: [Qemu-devel] [PATCH 3/5] Add -static earlier to LDFLAGS for compile_prog()
Date: Wed, 20 Jan 2010 18:27:23 +0100

From: Loïc Minier <address@hidden>

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 <address@hidden>
Signed-off-by: Juan Quintela <address@hidden>
---
 configure |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/configure b/configure
index c671918..83f8b26 100755
--- a/configure
+++ b/configure
@@ -456,7 +456,9 @@ for opt do
   ;;
   --enable-gprof) gprof="yes"
   ;;
-  --static) static="yes"
+  --static)
+    static="yes"
+    LDFLAGS="-static $LDFLAGS"
   ;;
   --disable-sdl) sdl="no"
   ;;
@@ -1977,7 +1979,6 @@ if test "$solaris" = "yes" ; then
 fi
 if test "$static" = "yes" ; then
   echo "CONFIG_STATIC=y" >> $config_host_mak
-  LDFLAGS="-static $LDFLAGS"
 fi
 if test $profiler = "yes" ; then
   echo "CONFIG_PROFILER=y" >> $config_host_mak
-- 
1.6.6





reply via email to

[Prev in Thread] Current Thread [Next in Thread]