blob: f211aae84b471468bf03d9b3f009c3423393f93a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Okay, so I'm trying to figure out whether this bug report about QEMU is related to user-mode or system-mode issues. Let me start by understanding the context.
The user is having trouble installing something on OSX Yosemite 10.10.5 using Brew and MacPorts. Specifically, they mention problems with glib not being installable via Brew and a lengthy log file when using MacPorts. They then classify it as a bug report regarding QEMU.
Now, I need to determine if this is a user-mode or system-mode issue. From what I know, user-mode issues are related to applications running on top of the OS without requiring special privileges. System-mode issues involve lower-level stuff like device drivers, kernel modules, or interactions with hardware that require higher privileges.
In this case, the problem seems to be about installation methods and dependencies (glib). Brew and MacPorts are package managers used for installing software packages, often in user space. The issue arises when trying to install QEMU via these tools. Since glib is a library dependency and the log file suggests configuration or installation problems, it's more likely related to how the application is being installed rather than interacting with low-level OS components.
So, this seems like a user-mode issue because it involves installing software packages without needing kernel-level access. The problem isn't about hardware interaction but about dependencies not being met during installation.
</think>
user
|