[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v12 14/15] configure: remove the final bits of --profiler support
|
From: |
Fei Wu |
|
Subject: |
[PATCH v12 14/15] configure: remove the final bits of --profiler support |
|
Date: |
Thu, 18 May 2023 21:57:56 +0800 |
From: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Fei Wu <fei2.wu@intel.com>
---
meson.build | 2 --
meson_options.txt | 2 --
scripts/meson-buildoptions.sh | 3 ---
3 files changed, 7 deletions(-)
diff --git a/meson.build b/meson.build
index 4dddccb890..4be21c9d57 100644
--- a/meson.build
+++ b/meson.build
@@ -1888,7 +1888,6 @@ if numa.found()
dependencies: numa))
endif
config_host_data.set('CONFIG_OPENGL', opengl.found())
-config_host_data.set('CONFIG_PROFILER', get_option('profiler'))
config_host_data.set('CONFIG_RBD', rbd.found())
config_host_data.set('CONFIG_RDMA', rdma.found())
config_host_data.set('CONFIG_SDL', sdl.found())
@@ -3859,7 +3858,6 @@ if 'objc' in all_languages
summary_info += {'QEMU_OBJCFLAGS': ' '.join(qemu_objcflags)}
endif
summary_info += {'QEMU_LDFLAGS': ' '.join(qemu_ldflags)}
-summary_info += {'profiler': get_option('profiler')}
summary_info += {'link-time optimization (LTO)': get_option('b_lto')}
summary_info += {'PIE': get_option('b_pie')}
summary_info += {'static build': config_host.has_key('CONFIG_STATIC')}
diff --git a/meson_options.txt b/meson_options.txt
index 11aec2a441..9692fa7cdc 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -332,8 +332,6 @@ option('qom_cast_debug', type: 'boolean', value: true,
option('gprof', type: 'boolean', value: false,
description: 'QEMU profiling with gprof',
deprecated: true)
-option('profiler', type: 'boolean', value: false,
- description: 'profiler support')
option('slirp_smbd', type : 'feature', value : 'auto',
description: 'use smbd (at path --smbd=*) in slirp networking')
diff --git a/scripts/meson-buildoptions.sh b/scripts/meson-buildoptions.sh
index 52fb079a60..28c7d21a15 100644
--- a/scripts/meson-buildoptions.sh
+++ b/scripts/meson-buildoptions.sh
@@ -38,7 +38,6 @@ meson_options_help() {
printf "%s\n" ' jemalloc/system/tcmalloc)'
printf "%s\n" ' --enable-module-upgrades try to load modules from alternate
paths for'
printf "%s\n" ' upgrades'
- printf "%s\n" ' --enable-profiler profiler support'
printf "%s\n" ' --enable-rng-none dummy RNG, avoid using
/dev/(u)random and'
printf "%s\n" ' getrandom()'
printf "%s\n" ' --enable-strip Strip targets on install'
@@ -386,8 +385,6 @@ _meson_option_parse() {
--with-pkgversion=*) quote_sh "-Dpkgversion=$2" ;;
--enable-png) printf "%s" -Dpng=enabled ;;
--disable-png) printf "%s" -Dpng=disabled ;;
- --enable-profiler) printf "%s" -Dprofiler=true ;;
- --disable-profiler) printf "%s" -Dprofiler=false ;;
--enable-pvrdma) printf "%s" -Dpvrdma=enabled ;;
--disable-pvrdma) printf "%s" -Dpvrdma=disabled ;;
--enable-qcow1) printf "%s" -Dqcow1=enabled ;;
--
2.25.1
- [PATCH v12 06/15] accel/tcg: convert profiling of restore operations to TBStats, (continued)
- [PATCH v12 06/15] accel/tcg: convert profiling of restore operations to TBStats, Fei Wu, 2023/05/18
- [PATCH v12 08/15] accel: adding TB_JIT_TIME and full replacing CONFIG_PROFILER, Fei Wu, 2023/05/18
- [PATCH v12 09/15] debug: add -d tb_stats to control TBStatistics collection:, Fei Wu, 2023/05/18
- [PATCH v12 07/15] accel/tcg: convert profiling of code generation to TBStats, Fei Wu, 2023/05/18
- [PATCH v12 11/15] tb-stats: reset the tracked TBs on a tb_flush, Fei Wu, 2023/05/18
- [PATCH v12 10/15] monitor: adding tb_stats hmp command, Fei Wu, 2023/05/18
- [PATCH v12 12/15] Adding info [tb-list|tb] commands to HMP (WIP), Fei Wu, 2023/05/18
- [PATCH v12 13/15] tb-stats: dump hot TBs at the end of the execution, Fei Wu, 2023/05/18
- [PATCH v12 14/15] configure: remove the final bits of --profiler support,
Fei Wu <=
- [PATCH v12 15/15] docs/tb-stats: add how to, Fei Wu, 2023/05/18