summary refs log tree commit diff stats
path: root/results/scraper/fex/2357
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-17 09:10:43 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-07-17 09:10:43 +0200
commitf2ec263023649e596c5076df32c2d328bc9393d2 (patch)
tree5dd86caab46e552bd2e62bf9c4fb1a7504a44db4 /results/scraper/fex/2357
parent63d2e9d409831aa8582787234cae4741847504b7 (diff)
downloadqemu-analysis-main.tar.gz
qemu-analysis-main.zip
add downloaded fex bug-reports HEAD main
Diffstat (limited to 'results/scraper/fex/2357')
-rw-r--r--results/scraper/fex/235712
1 files changed, 12 insertions, 0 deletions
diff --git a/results/scraper/fex/2357 b/results/scraper/fex/2357
new file mode 100644
index 000000000..f02aaa5cd
--- /dev/null
+++ b/results/scraper/fex/2357
@@ -0,0 +1,12 @@
+FEX fails to build on Alpine Linux (musl)
+:wave: Hi!

+

+On Alpine Linux, trying to build FEX results in the compilation halting with the following error:

+```

+/home/user/FEX/Source/Tools/FEXServer/ProcessPipe.cpp:477:60: error: use of undeclared identifier 'POLLREMOVE'

+                  .events = POLLIN | POLLPRI | POLLRDHUP | POLLREMOVE,

+                                                           ^

+```

+`POLLREMOVE` seems to come from the header `poll.h`, which I assume resolves to `/usr/include/poll.h`. `/usr/include/poll.h`, in turn, includes `<bits/poll.h>`. On Fedora with glibc, this file defines `POLLREMOVE`, but on Alpine Linux with musl it seems like this file is empty (like, completely empty) and as such `POLLREMOVE` ends up undefined.

+

+In the FEX 2203 changelog you mentioned musl compilation being fixed (https://fex-emu.com/FEX-2203/). How was this tested? Am I missing something?
\ No newline at end of file