diff options
Diffstat (limited to 'target-info-stub.c')
| -rw-r--r-- | target-info-stub.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/target-info-stub.c b/target-info-stub.c new file mode 100644 index 0000000000..e5d2195e89 --- /dev/null +++ b/target-info-stub.c @@ -0,0 +1,16 @@ +/* + * QEMU target info stubs (target specific) + * + * Copyright (c) Linaro + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#include "qemu/osdep.h" +#include "qemu/target-info.h" +#include "cpu.h" + +const char *target_cpu_type(void) +{ + return CPU_RESOLVING_TYPE; +} |