英文:
What do the directories in GCC STL contain?
问题
在 gcc/libstdc++-v3/ 中,有一些子目录如下:
- include
- src
- bulid
- include
- src
目录 build/ 和外部目录的内容有何区别?
在 include/ 目录中,子目录如下:
- include
- bits
- std
- tr1
- tr2
这些目录的名称(例如 bits)代表什么含义?
我已扫描了 GNU C 文档,但未发现有关它们的任何信息。
英文:
in gcc/libstdc++-v3/, there are some subdirectories like :
- include
- src
- bulid
- include
- src
What are differences between contents in directory build/ and outer directory?
And in directory include/, subdirectories are like :
- include
- bits
- std
- tr1
- tr2
What do the names of these directories (e.g. bits) mean?
I have scanned the GNU C document, but I found nothing about them.
答案1
得分: 3
- bits: 内部实现某些功能(无法直接包含)
- std: 标准头文件
- tr1: 技术报告 1,C++ 标准的扩展
- tr2: 技术报告 2,附加扩展
英文:
- bits: Internal implementation of some features (cannot be included directly)
- std: Standard headers
- tr1: Technical Report 1, extentions of the C++ norm
- tr2: Technical Report 2, additionnal extentions
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论