New review comment by ericonr on void-packages repository https://github.com/void-linux/void-packages/pull/28328#discussion_r567359352 Comment: For the record, when dealing with execinfo.h, it's a bit more correct to check for glibc, since execinfo.h is not a standard. You will have to add any new platform you port this to the list of conditionals you check, instead of just potentially missing some functionality there. Even better would be to see if the function exists, which should be reaasonably simple, given that you are using CMake. I have an example of checking for a function here: https://github.com/MediaArea/ZenLib/pull/126