diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-04-29 20:18:03 +0200 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-30 12:51:51 -0700 |
| commit | b113dfa081a6a7e061551a70e6ede7af0941a845 (patch) | |
| tree | 1398a750b534b329320256532be352b9877a79d3 /include/qemu | |
| parent | 28502121be7b1422af55bbed6f65a273b889ef01 (diff) | |
| download | focaccia-qemu-b113dfa081a6a7e061551a70e6ede7af0941a845.tar.gz focaccia-qemu-b113dfa081a6a7e061551a70e6ede7af0941a845.zip | |
qemu/target_info: Add %target_cpu_type field to TargetInfo
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'include/qemu')
| -rw-r--r-- | include/qemu/target-info-impl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/qemu/target-info-impl.h b/include/qemu/target-info-impl.h index d0e8c86176..76766eeaae 100644 --- a/include/qemu/target-info-impl.h +++ b/include/qemu/target-info-impl.h @@ -14,6 +14,8 @@ typedef struct TargetInfo { /* runtime equivalent of TARGET_NAME definition */ const char *target_name; + /* runtime equivalent of CPU_RESOLVING_TYPE definition */ + const char *cpu_type; /* QOM typename machines for this binary must implement */ const char *machine_typename; } TargetInfo; |