diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-06-04 21:20:13 +0000 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-06-04 21:20:13 +0000 |
| commit | 2773b5e236e2217a35a53dbc298757610c7bbbc6 (patch) | |
| tree | 07b1cfc6ccd3a8f2808ffac94e8a4488079787a6 /results/classifier/008/other/28596630 | |
| parent | 45cde517004371146f7533c59c8005b8b2629291 (diff) | |
| download | qemu-analysis-2773b5e236e2217a35a53dbc298757610c7bbbc6.tar.gz qemu-analysis-2773b5e236e2217a35a53dbc298757610c7bbbc6.zip | |
add new iteration
Diffstat (limited to 'results/classifier/008/other/28596630')
| -rw-r--r-- | results/classifier/008/other/28596630 | 123 |
1 files changed, 123 insertions, 0 deletions
diff --git a/results/classifier/008/other/28596630 b/results/classifier/008/other/28596630 new file mode 100644 index 000000000..852b323cd --- /dev/null +++ b/results/classifier/008/other/28596630 @@ -0,0 +1,123 @@ +device: 0.835 +semantic: 0.814 +performance: 0.797 +permissions: 0.791 +graphic: 0.785 +network: 0.780 +PID: 0.750 +other: 0.707 +debug: 0.704 +socket: 0.697 +vnc: 0.674 +KVM: 0.649 +files: 0.630 +boot: 0.609 + +[Qemu-devel] [BUG] [low severity] a strange appearance of message involving slirp while doing "empty" make + +Folks, + +If qemu tree is already fully built, and "make" is attempted, for 3.1, the +outcome is: + +$ make + CHK version_gen.h +$ + +For 4.0-rc0, the outcome seems to be different: + +$ make +make[1]: Entering directory '/home/build/malta-mips64r6/qemu-4.0/slirp' +make[1]: Nothing to be done for 'all'. +make[1]: Leaving directory '/home/build/malta-mips64r6/qemu-4.0/slirp' + CHK version_gen.h +$ + +Not sure how significant is that, but I report it just in case. + +Yours, +Aleksandar + +On 20/03/2019 22.08, Aleksandar Markovic wrote: +> +Folks, +> +> +If qemu tree is already fully built, and "make" is attempted, for 3.1, the +> +outcome is: +> +> +$ make +> +CHK version_gen.h +> +$ +> +> +For 4.0-rc0, the outcome seems to be different: +> +> +$ make +> +make[1]: Entering directory '/home/build/malta-mips64r6/qemu-4.0/slirp' +> +make[1]: Nothing to be done for 'all'. +> +make[1]: Leaving directory '/home/build/malta-mips64r6/qemu-4.0/slirp' +> +CHK version_gen.h +> +$ +> +> +Not sure how significant is that, but I report it just in case. +It's likely because slirp is currently being reworked to become a +separate project, so the makefiles have been changed a little bit. I +guess the message will go away again once slirp has become a stand-alone +library. + + Thomas + +On Fri, 22 Mar 2019 at 04:59, Thomas Huth <address@hidden> wrote: +> +On 20/03/2019 22.08, Aleksandar Markovic wrote: +> +> $ make +> +> make[1]: Entering directory '/home/build/malta-mips64r6/qemu-4.0/slirp' +> +> make[1]: Nothing to be done for 'all'. +> +> make[1]: Leaving directory '/home/build/malta-mips64r6/qemu-4.0/slirp' +> +> CHK version_gen.h +> +> $ +> +> +> +> Not sure how significant is that, but I report it just in case. +> +> +It's likely because slirp is currently being reworked to become a +> +separate project, so the makefiles have been changed a little bit. I +> +guess the message will go away again once slirp has become a stand-alone +> +library. +Well, we'll still need to ship slirp for the foreseeable future... + +I think the cause of this is that the rule in Makefile for +calling the slirp Makefile is not passing it $(SUBDIR_MAKEFLAGS) +like all the other recursive make invocations. If we do that +then we'll suppress the entering/leaving messages for +non-verbose builds. (Some tweaking will be needed as +it looks like the slirp makefile has picked an incompatible +meaning for $BUILD_DIR, which the SUBDIR_MAKEFLAGS will +also be passing to it.) + +thanks +-- PMM + |