我对开源和许可证有基本的理解问题。有人可以澄清以下情况的一些问题。对不起,如果它是非常基本的
我正在编写一个专有软件,我计划在其中使用一些开源库。我还需要 glibc 和 C 编译器,但不想在我的操作系统中使用默认的 gcc 工具链,所以使用 crosstools-ng 构建了我自己的
现在在 ct-ng 中,我猜 libstdc++ 库是静态链接的(这是用于 c++ 的,我猜在大多数情况下我不会使用它)但是从我的工具链配置来看,我的 libc 是静态链接还是动态链接?如果是这种情况,鉴于 glibc 是 LGPL,并且我可以将它链接到我的专有软件,这种静态链接是否会对我的许可造成任何问题?我的软件仍然可以是封闭源代码吗?还是我必须释放编译的对象。
我的工具链配置如下,如果 glibc 是静态链接或动态链接,有人可以指向我吗?
Target: x86_64-some-linux-gnu
Configured with: /home/balravin/tools/platform/x86/src/gnu/gcc/4.4.7/.build/src/gcc-4.4.7/configure --build=i686-build_pc-linux-gnu --host=i686-build_pc-linux-gnu --target=x86_64-some-linux-gnu --prefix=/home/balravin/tools/platform/x86/obj/gnu/gcc/4.4.7/x86_64-some-linux-gnu --with-sysroot=/home/balravin/tools/platform/x86/obj/gnu/gcc/4.4.7/x86_64-some-linux-gnu/x86_64-some-linux-gnu/sysroot --enable-languages=c,c++,fortran --with-pkgversion='crosstool-NG 1.15.3' --disable-sjlj-exceptions --enable-__cxa_atexit --enable-libmudflap --enable-libgomp --enable-libssp --with-gmp=/home/balravin/tools/platform/x86/src/gnu/gcc/4.4.7/.build/x86_64-some-linux-gnu/buildtools --with-mpfr=/home/balravin/tools/platform/x86/src/gnu/gcc/4.4.7/.build/x86_64-some-linux-gnu/buildtools --with-ppl=/home/balravin/tools/platform/x86/src/gnu/gcc/4.4.7/.build/x86_64-some-linux-gnu/buildtools --with-cloog=/home/balravin/tools/platform/x86/src/gnu/gcc/4.4.7/.build/x86_64-some-linux-gnu/buildtools --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --enable-threads=posix --enable-target-optspace --with-long-double-128 --disable-multilib --with-local-prefix=/home/balravin/tools/platform/x86/obj/gnu/gcc/4.4.7/x86_64-some-linux-gnu/x86_64-some-linux-gnu/sysroot --enable-c99 --enable-long-long
Thread model: posix
gcc version 4.4.7 (crosstool-NG 1.15.3)