blob: 773a10188c882dac84580795f3c53569846f11b0 [file] [log] [blame]
Philippe Mathieu-Daudé2b7ae6e2025-04-17 17:59:35 +02001/*
2 * QEMU target info stubs (target specific)
3 *
4 * Copyright (c) Linaro
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9#include "qemu/osdep.h"
10#include "qemu/target-info.h"
Philippe Mathieu-Daudé3d881162025-03-23 12:47:37 +010011#include "qemu/target-info-impl.h"
Philippe Mathieu-Daudé2b7ae6e2025-04-17 17:59:35 +020012#include "cpu.h"
13
Philippe Mathieu-Daudé3d881162025-03-23 12:47:37 +010014static const TargetInfo target_info_stub = {
15 .target_name = TARGET_NAME,
16};
17
18const TargetInfo *target_info(void)
19{
20 return &target_info_stub;
21}
22
Philippe Mathieu-Daudé2b7ae6e2025-04-17 17:59:35 +020023const char *target_cpu_type(void)
24{
25 return CPU_RESOLVING_TYPE;
26}