Skip to content

Commit

Permalink
configure: Only clone softfloat-3 repositories if TCG is enabled
Browse files Browse the repository at this point in the history
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210512045821.3257963-1-philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
  • Loading branch information
philmd authored and bonzini committed May 26, 2021
1 parent 92f8c6f commit 56267b6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions configure
Expand Up @@ -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=""
Expand Down Expand Up @@ -2281,6 +2279,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
Expand Down

0 comments on commit 56267b6

Please sign in to comment.