|
|
|
@ -11,6 +11,7 @@ meson_options_help() { |
|
|
|
printf "%s\n" ' affects only QEMU, not tools like qemu-img)' |
|
|
|
printf "%s\n" ' --datadir=VALUE Data file directory [share]' |
|
|
|
printf "%s\n" ' --disable-coroutine-pool coroutine freelist (better performance)' |
|
|
|
printf "%s\n" ' --disable-debug-info Enable debug symbols and other information' |
|
|
|
printf "%s\n" ' --disable-hexagon-idef-parser' |
|
|
|
printf "%s\n" ' use idef-parser to automatically generate TCG' |
|
|
|
printf "%s\n" ' code for the Hexagon frontend' |
|
|
|
@ -265,6 +266,8 @@ _meson_option_parse() { |
|
|
|
--datadir=*) quote_sh "-Ddatadir=$2" ;; |
|
|
|
--enable-dbus-display) printf "%s" -Ddbus_display=enabled ;; |
|
|
|
--disable-dbus-display) printf "%s" -Ddbus_display=disabled ;; |
|
|
|
--enable-debug-info) printf "%s" -Ddebug=true ;; |
|
|
|
--disable-debug-info) printf "%s" -Ddebug=false ;; |
|
|
|
--enable-debug-graph-lock) printf "%s" -Ddebug_graph_lock=true ;; |
|
|
|
--disable-debug-graph-lock) printf "%s" -Ddebug_graph_lock=false ;; |
|
|
|
--enable-debug-mutex) printf "%s" -Ddebug_mutex=true ;; |
|
|
|
|