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.
BUILD STYLES ============ These shell snippets provide support for multiple build systems, i.e GNU configure, CMake, etc. A build style file must provide at least the following functions: - do_configure - do_build - do_install If a source package defines its own do_xxx() function, the function defined in the build style file is simply ignored.