From: Renz Christian Bagaporo Date: Tue, 28 May 2019 05:01:09 +0000 (+0800) Subject: docs: remove reference of using link groups X-Git-Tag: v4.0-beta1~298^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b3b6ce2eead84538008d16295ea069b45ed1138c;p=esp-idf docs: remove reference of using link groups --- diff --git a/docs/en/api-guides/build-system-cmake.rst b/docs/en/api-guides/build-system-cmake.rst index a3c068bf90..36c90e6863 100644 --- a/docs/en/api-guides/build-system-cmake.rst +++ b/docs/en/api-guides/build-system-cmake.rst @@ -454,8 +454,6 @@ The order of components in the ``BUILD_COMPONENTS`` variable determines other or - Order that :ref:`project_include.cmake` files are included into the project. - Order that the list of header paths is generated for compilation (via ``-I`` argument). (Note that for a given component's source files, only that component's dependency's header paths are passed to the compiler.) -- Order that component object archives are passed to the linker (note that the build system also passes ``--start-group`` and ``--end-group`` to the linker to allow cycles in linker dependencies, however the basic order is determined by ``BUILD_COMPONENTS``. - Build Process Internals ======================= diff --git a/docs/zh_CN/api-guides/build-system-cmake.rst b/docs/zh_CN/api-guides/build-system-cmake.rst index 96b46aa926..19d766a83f 100644 --- a/docs/zh_CN/api-guides/build-system-cmake.rst +++ b/docs/zh_CN/api-guides/build-system-cmake.rst @@ -451,7 +451,6 @@ ESP-IDF 构建系统会在命令行中添加以下 C 预处理器定义: - 项目导入 :ref:`project_include.cmake` 文件的顺序。 - 生成用于编译(通过 ``-I`` 参数)的头文件路径列表的顺序。请注意,对于给定组件的源文件,仅需将该组件的依赖组件的头文件路径告知编译器。 -- 组件目标归档文件传递给链接器的顺序。请注意,构建系统还会将 ``--start-group`` 和 ``--end-group`` 传递给链接器,以允许链接依赖存在闭环,但其基本顺序还是由 ``BUILD_COMPONENTS`` 决定的。 构建的内部过程 ==============