diff --git a/examples/cross_build/toolchain_packages.rst b/examples/cross_build/toolchain_packages.rst index 45fb93f725b0..51323772b583 100644 --- a/examples/cross_build/toolchain_packages.rst +++ b/examples/cross_build/toolchain_packages.rst @@ -31,6 +31,8 @@ Please, first clone the sources to recreate this project. You can find them in t Here, you will find a Conan recipe (and the *test_package*) to package an ARM toolchain for cross-compiling to Linux ARM for both 32 and 64 bits. To simplify a bit, we are assuming that we can just cross-build from Linux x86_64 to Linux ARM, both 32 and 64 bits. +If you're looking for another example, you can explore an additional MacOs to Linux cross-build example right +`here `_ . .. code-block:: bash @@ -485,3 +487,4 @@ architecture of the resulting executable, confirming its alignment with the targ - :ref:`More info on settings_target` - :ref:`Cross-compile your applications using Conan` + - `Another example of cross-compilation from Macos to Linux `_ \ No newline at end of file diff --git a/reference/runners/docker.rst b/reference/runners/docker.rst index 26c385d5e387..c126d0b50e39 100644 --- a/reference/runners/docker.rst +++ b/reference/runners/docker.rst @@ -60,7 +60,11 @@ If you need more control over the build and execution of the container, you can How to run a `conan create` in a runner --------------------------------------- +.. note:: + + The docker runner feature is only supported by ``conan create`` command. The ``conan install --build`` command is not supported. + In the following links you can find some examples about how to use a conan docker runner: - :ref:`Creating a Conan package using a Docker runner` -- :ref:`Using a docker runner configfile to parameterize the Dockerfile base image` \ No newline at end of file +- :ref:`Using a docker runner configfile to parameterize the Dockerfile base image`