qemu-devel
[Top][All Lists]
Advanced

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

Re: [PATCH] configure: Only clone softfloat-3 repositories if TCG is ena


From: Paolo Bonzini
Subject: Re: [PATCH] configure: Only clone softfloat-3 repositories if TCG is enabled
Date: Wed, 12 May 2021 09:22:11 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1

On 12/05/21 06:58, Philippe Mathieu-Daudé wrote:
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
  configure | 7 +++++--
  1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/configure b/configure
index 5877a6b2bfe..e0e02623e3e 100755
--- a/configure
+++ b/configure
@@ -257,8 +257,6 @@ if test -e "$source_path/.git"
  then
      git_submodules_action="update"
      git_submodules="ui/keycodemapdb"
-    git_submodules="$git_submodules tests/fp/berkeley-testfloat-3"
-    git_submodules="$git_submodules tests/fp/berkeley-softfloat-3"
  else
      git_submodules_action="ignore"
      git_submodules=""
@@ -2277,6 +2275,11 @@ if test "$solaris" = "yes" ; then
    fi
  fi
+if test "$tcg" = "enabled"; then
+    git_submodules="$git_submodules tests/fp/berkeley-testfloat-3"
+    git_submodules="$git_submodules tests/fp/berkeley-softfloat-3"
+fi
+
  if test -z "${target_list+xxx}" ; then
      default_targets=yes
      for target in $default_target_list; do


Queued, thanks.

Paolo




reply via email to

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