Hi,
I'm trying to build a small system that installs just the needed libraries.
One of the programs is ACE libs.
ldd shows:
(hardend) goofy catalyst # ldd /usr/lib/libACE-6.0.1.so
In the ebuild there is no mention of runtime dependency like gcc or glibc.
...
COMMON_DEPEND="dev-libs/openssl"
# TODO probably more
RDEPEND="${COMMON_DEPEND}
I have added virtual/libc sys-devel/gcc to RDEPEND, but this will install gcc.
I would like to avoid installing gcc, and would like to install just the libraries.
Is this approach correct?
Why sys-devel/gcc don't have a library version without the actual compiler?