Skip to content

Commit d40bcd8

Browse files
Merge pull request #61 from michaellin01/fix-x86-max
Cherry pick d135f78 ("linux-user: use 'max' instead of 'qemu32' / 'qemu64' by default")
2 parents 847b43a + b980998 commit d40bcd8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

linux-user/i386/target_elf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
#define I386_TARGET_ELF_H
1010
static inline const char *cpu_get_model(uint32_t eflags)
1111
{
12-
return "qemu32";
12+
return "max";
1313
}
1414
#endif

linux-user/x86_64/target_elf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
#define X86_64_TARGET_ELF_H
1010
static inline const char *cpu_get_model(uint32_t eflags)
1111
{
12-
return "qemu64";
12+
return "max";
1313
}
1414
#endif

0 commit comments

Comments
 (0)