diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-07-17 09:10:43 +0200 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-07-17 09:10:43 +0200 |
| commit | f2ec263023649e596c5076df32c2d328bc9393d2 (patch) | |
| tree | 5dd86caab46e552bd2e62bf9c4fb1a7504a44db4 /results/scraper/fex/2357 | |
| parent | 63d2e9d409831aa8582787234cae4741847504b7 (diff) | |
| download | qemu-analysis-main.tar.gz qemu-analysis-main.zip | |
Diffstat (limited to 'results/scraper/fex/2357')
| -rw-r--r-- | results/scraper/fex/2357 | 12 |
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 |