New review comment by ericonr on void-packages repository https://github.com/void-linux/void-packages/pull/28708#discussion_r575683811 Comment: @lfdebrux can you check if their build system doesn't simply disable PIC? By passing `-fno-PIC` to the compiler, for example. If that's the case, what can happen is that it interacts badly with our PIE by default toolchain, and creates a text relocation in the binary. Musl doesn't support those at all. You can check for their presence with `readelf -d ` and seeing if TEXTREL appears in the output.