blob: f7fc25075db057b0331a41ad426dd54d617603e0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<think>
Okay, I need to classify this bug report into one of the given categories. Let's look at the problem described.
The user mentioned that when building QEMU with -O3, there are warnings treated as errors due to stringop-overflow. This causes a build failure. The specific error is in xilinx_spips.c where writing 1 byte into a region of size 0.
This looks like a compilation warning turned into an error because of the -Werror flag. It's related to how data is being written, specifically an overflow issue in a string operation. Since it's during the build process and involves compiler warnings, I'm thinking it's not directly related to any specific feature category but rather a build-time issue.
Looking at the possible categories: mistranslation, assembly lowering, device, graphic, etc., none of these seem to fit because the problem isn't about translation or hardware features. Instead, it's about build configuration and warnings during compilation.
The closest category would be 'other' since it doesn't fall into any specific feature-related bug but is a general build issue.
</think>
other
|