与 glibc 有什么关系?
我知道它是一个标准的c库,但我不明白为什么c没有一个免费的库,而不是lgpl。是否有这样的库,如果没有,那就意味着每个公司/特定开发人员都必须购买最基本的库来开发商业应用程序?
I know it's a standar c library, but I don't understand why c doesn't have a free library, not one that is lgpl. Is there any such library and if not, than that means every company/particular developer has to buy even the most basic libraries to develop commercial apps ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,无论如何他们都必须购买(或免费获得)编译器,而 libc 是附带的。
此外,编写通用 C 库是不可能的,因为
exit()
、setjmp()
等取决于特定的编译器和平台。Well, they have to buy (or get for free) the compiler anyway, and libc comes with it.
Also, writing an universal C library is impossible, since
exit()
,setjmp()
, etc. depend on the particular compiler and platform.