buildroot offers to possibility to build
- only static,
- only shared,
- or both shared and static libs
of the selected packages.
The assigned configuration elements are BR2_STATIC_LIBS
, BR2_STATIC_LIBS
, and BR2_SHARED_STATIC_LIBS
.
Question:
Is it possible to build both a shared and static lib for one package only, while building only shared libs for all the other packages?
The one project which I want a static lib of would be an autotools-based package.
My effort:
I did read the manual, but to no avail. I did come up with one idea though, but I think it won't work: I could have buildroot call the configure
script with some arguments defined by me forcing the additional creation of a static lib. However, this would collide with the arguments buildroot is providing, which are forcing configure
to do quite the opposite. (Create shared lib only.)
Thank you!
Unfortunately I can't even tell which version of buildroot I am using, as I did not find a way to get buildroots version number.