New comment by kruceter on void-packages repository https://github.com/void-linux/void-packages/issues/39960#issuecomment-1317659419 Comment: `runawk` does not build on musl with the same result. The problem lays with `mk-configure` which has to be revbumped with gcc 12. mk-configure has a tendency to do its work only when it was built with a compiler of the corresponding version. If compiled with GCC 10.2, it looks for `/usr/share/mk-configure/mk/mkc_imp.cc_gcc-10.2.1.mk` and/or `/usr/share/mk-configure/mk/mkc_imp.cxx_gcc-10.2.1.mk` depending if CC or CXX are used. If used with GCC 12.2 without getting recompiled first, the utility looks for `/usr/share/mk-configure/mk/mkc_imp.cc_gcc-12.2.0.mk` and/or `/usr/share/mk-configure/mk/mkc_imp.cxx_gcc-12.2.0.mk` and finds none because it was never built with GCC 12. Build failure with GCC 12 on musl (x86_64-musl): [runawk.fail.txt](https://github.com/void-linux/void-packages/files/10025637/runawk.fail.txt) mk-configure revbump + rebuild with GCC 12: [mk-configure-rbmp-gcc12.txt](https://github.com/void-linux/void-packages/files/10025645/mk-configure-rbmp-gcc12.txt) Now runawk builds as expected: [runawk.txt](https://github.com/void-linux/void-packages/files/10025648/runawk.txt)