qemu-devel
[Top][All Lists]
Advanced

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

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


From: Aurelien Jarno
Subject: Re: [Qemu-devel] [PATCH] Add -static earlier to LDFLAGS for compile_prog()
Date: Sat, 6 Feb 2010 22:23:22 +0100
User-agent: Mutt/1.5.20 (2009-06-14)

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 <address@hidden>
> ---
>  configure |    5 +++--
>  1 files changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/configure b/configure
> index 42ef628..ab6bd8e 100755
> --- a/configure
> +++ b/configure
> @@ -488,7 +488,9 @@ for opt do
>    ;;
>    --enable-gprof) gprof="yes"
>    ;;
> -  --static) static="yes"
> +  --static)
> +    static="yes"
> +    LDFLAGS="-static $LDFLAGS"
>    ;;
>    --sysconfdir) sysconfdir="$optarg"
>    ;;
> @@ -2025,7 +2027,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.5
> 
> 
> 
> 

-- 
Aurelien Jarno                          GPG: 1024D/F1BCDB73
address@hidden                 http://www.aurel32.net




reply via email to

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