GCC STL中的目录包含什么?

huangapple go评论54阅读模式
英文:

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

huangapple
  • 本文由 发表于 2023年5月13日 16:11:01
  • 转载请务必保留本文链接:https://go.coder-hub.com/76241723.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定