2
0
Эх сурвалжийг харах

configure: cleanup creation of tests/tcg target config

Remove the symlink to tests/tcg/config-*.mak, which is possible now
that unused target config files are not created either.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20220929114231.583801-28-alex.bennee@linaro.org>
Paolo Bonzini 2 жил өмнө
parent
commit
c7022a703c
3 өөрчлөгдсөн 7 нэмэгдсэн , 9 устгасан
  1. 1 1
      Makefile
  2. 5 7
      configure
  3. 1 1
      meson.build

+ 1 - 1
Makefile

@@ -221,7 +221,7 @@ qemu-%.tar.bz2:
 distclean: clean recurse-distclean
 distclean: clean recurse-distclean
 	-$(quiet-@)test -f build.ninja && $(NINJA) $(NINJAFLAGS) -t clean -g || :
 	-$(quiet-@)test -f build.ninja && $(NINJA) $(NINJAFLAGS) -t clean -g || :
 	rm -f config-host.mak Makefile.prereqs qemu-bundle
 	rm -f config-host.mak Makefile.prereqs qemu-bundle
-	rm -f tests/tcg/config-*.mak
+	rm -f tests/tcg/*/config-target.mak tests/tcg/config-host.mak
 	rm -f config.status
 	rm -f config.status
 	rm -f roms/seabios/config.mak
 	rm -f roms/seabios/config.mak
 	rm -f qemu-plugins-ld.symbols qemu-plugins-ld64.symbols
 	rm -f qemu-plugins-ld.symbols qemu-plugins-ld64.symbols

+ 5 - 7
configure

@@ -2468,10 +2468,6 @@ tcg_tests_targets=
 for target in $target_list; do
 for target in $target_list; do
   arch=${target%%-*}
   arch=${target%%-*}
 
 
-  config_target_mak=tests/tcg/config-$target.mak
-
-  echo "# Automatically generated by configure - do not modify" > $config_target_mak
-  echo "TARGET_NAME=$arch" >> "$config_target_mak"
   case $target in
   case $target in
     xtensa*-linux-user)
     xtensa*-linux-user)
       # the toolchain is not complete with headers, only build softmmu tests
       # the toolchain is not complete with headers, only build softmmu tests
@@ -2488,13 +2484,15 @@ for target in $target_list; do
 
 
   if probe_target_compiler $target || test -n "$container_image"; then
   if probe_target_compiler $target || test -n "$container_image"; then
       test -n "$container_image" && build_static=y
       test -n "$container_image" && build_static=y
-      write_target_makefile "build-tcg-tests-$target >> "$config_target_mak"
       mkdir -p "tests/tcg/$target"
       mkdir -p "tests/tcg/$target"
+      config_target_mak=tests/tcg/$target/config-target.mak
       ln -sf "$source_path/tests/tcg/Makefile.target" "tests/tcg/$target/Makefile"
       ln -sf "$source_path/tests/tcg/Makefile.target" "tests/tcg/$target/Makefile"
-      ln -sf "../config-$target.mak" "tests/tcg/$target/config-target.mak"
+      echo "# Automatically generated by configure - do not modify" > "$config_target_mak"
+      echo "TARGET_NAME=$arch" >> "$config_target_mak"
       echo "TARGET=$target" >> "$config_target_mak"
       echo "TARGET=$target" >> "$config_target_mak"
-      echo "QEMU=$PWD/$qemu" >> "$config_target_mak"
+      write_target_makefile "build-tcg-tests-$target" >> "$config_target_mak"
       echo "BUILD_STATIC=$build_static" >> "$config_target_mak"
       echo "BUILD_STATIC=$build_static" >> "$config_target_mak"
+      echo "QEMU=$PWD/$qemu" >> "$config_target_mak"
       echo "run-tcg-tests-$target: $qemu\$(EXESUF)" >> Makefile.prereqs
       echo "run-tcg-tests-$target: $qemu\$(EXESUF)" >> Makefile.prereqs
       tcg_tests_targets="$tcg_tests_targets $target"
       tcg_tests_targets="$tcg_tests_targets $target"
   fi
   fi

+ 1 - 1
meson.build

@@ -3764,7 +3764,7 @@ summary(summary_info, bool_yn: true, section: 'Compilation')
 summary_info = {}
 summary_info = {}
 have_cross = false
 have_cross = false
 foreach target: target_dirs
 foreach target: target_dirs
-  tcg_mak = meson.current_build_dir() / 'tests/tcg' / 'config-' + target + '.mak'
+  tcg_mak = meson.current_build_dir() / 'tests/tcg' / target / 'config-target.mak'
   if fs.exists(tcg_mak)
   if fs.exists(tcg_mak)
     config_cross_tcg = keyval.load(tcg_mak)
     config_cross_tcg = keyval.load(tcg_mak)
     if 'CC' in config_cross_tcg
     if 'CC' in config_cross_tcg