blob: 16b4163254f20e9506a06ea0bfe9e011a4969c70 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<think>
Okay, so I'm trying to figure out whether this bug report about QEMU is user-mode or system-mode related. The error message says "Compiling object tests/fp - Can't create tests/fp Is directory Centos 7." Hmm, let me break this down.
First, the issue seems to be happening when compiling an object file in a test called 'fp'. The error message indicates that it's trying to create something at 'tests/fp', but that path is already a directory. So maybe during compilation, there's a conflict where a file and a directory have the same name.
Now, QEMU can run in two modes: user-mode and system-mode. User-mode is for running individual applications without the full OS, while system-mode emulates an entire operating system with hardware devices.
The error here mentions compiling tests, which might be part of QEMU's own test suite. Since it's about compilation issues within the test environment, I'm thinking this relates more to how the tests are structured or run rather than something related to emulating a full OS.
Also, the fact that it's trying to create an object file but is encountering a directory suggests a problem with the build process or filesystem setup. That feels like it's part of QEMU's internal operations when running tests in user-mode, not necessarily interacting with higher-level system components or peripherals.
So putting it all together, I think this bug falls under 'user' because it's about compiling test files and handling directories within the application itself, rather than dealing with system-level emulation.
</think>
user
|