There's a merged pull request on the void-packages repository build-style/cmake: pass LIBS as CMAKE_*_STANDARD_LIBRARIES https://github.com/void-linux/void-packages/pull/29028 Description: Normally, we can add them into configure_args directly. However, if we need to link with 2 or more libaries (e.g. -latomic and -lexecinfo on armv6-musl), we have noway to do it properly: - configure_args will be splited on whitespace - cmake denies to recognise CMAKE_*_STANDARD_LIBRARIES as a list, hence denies to split on semicolon (";") Let's pass LIBS as CMAKE_*_STANDARD_LIBRARIES instead. #### General - [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements) #### Have the results of the proposed changes been tested? - [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me - [ ] I generally don't use the affected packages but briefly tested this PR