From f5d3f521bff20a2b5bf6ae22986e748c17b0eb2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abril=20Rinc=C3=B3n=20Blanco?= Date: Thu, 30 Oct 2025 18:39:05 +0100 Subject: [PATCH 1/2] Fix some links that were giving 404 --- examples/dev_flow/debug/debugging_visual.rst | 4 +--- .../tools/autotools/build_project_autotools_toolchain.rst | 2 +- .../google/bazeltoolchain/build_simple_bazel_7x_project.rst | 2 +- .../google/bazeltoolchain/build_simple_bazel_project.rst | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/examples/dev_flow/debug/debugging_visual.rst b/examples/dev_flow/debug/debugging_visual.rst index c5266a81bd09..fe10d903cd5b 100644 --- a/examples/dev_flow/debug/debugging_visual.rst +++ b/examples/dev_flow/debug/debugging_visual.rst @@ -105,7 +105,7 @@ to get information of a DLL, in this case the path where its associated PDB is l in the package to locate its PDB to copy it to the package folder. For more information on how PDBs work with Visual and how we used it to create the hook can be found in the -`hook readme `_. +`hook readme https://github.com/conan-io/conan-extensions/blob/main/extensions/hooks/README.md>`_. Debugging without build files ----------------------------- @@ -178,5 +178,3 @@ Starting the debugger again will allow to step into the code of the dependency a Any modification to the source files will not allow debugging over them, as Visual Studio does a checksum check, so they need to be the exact same files as when the libraries were compiled. - - diff --git a/examples/tools/autotools/build_project_autotools_toolchain.rst b/examples/tools/autotools/build_project_autotools_toolchain.rst index 40a4f91f3f5d..65d8e05bef1f 100644 --- a/examples/tools/autotools/build_project_autotools_toolchain.rst +++ b/examples/tools/autotools/build_project_autotools_toolchain.rst @@ -11,7 +11,7 @@ Build a simple Autotools project with Conan dependencies In this example, we are going to create a string formatter application -that uses one of the most popular C++ libraries: `fmt `_. +that uses one of the most popular C++ libraries: `fmt `_. We'll use `Autotools `_ as build system and `pkg-config `_ as a helper tool in this case, so you should get them installed on Linux and Mac before going forward with this example. diff --git a/examples/tools/google/bazeltoolchain/build_simple_bazel_7x_project.rst b/examples/tools/google/bazeltoolchain/build_simple_bazel_7x_project.rst index 373d3f1e3732..8059f4ee1f02 100644 --- a/examples/tools/google/bazeltoolchain/build_simple_bazel_7x_project.rst +++ b/examples/tools/google/bazeltoolchain/build_simple_bazel_7x_project.rst @@ -8,7 +8,7 @@ Build a simple Bazel 7.x project using Conan This example is Bazel >= 7.1 compatible. In this example, we are going to create a Hello World program -that uses one of the most popular C++ libraries: `fmt `_. +that uses one of the most popular C++ libraries: `fmt `_. .. note:: diff --git a/examples/tools/google/bazeltoolchain/build_simple_bazel_project.rst b/examples/tools/google/bazeltoolchain/build_simple_bazel_project.rst index 0fc63db7baca..21d5355da602 100644 --- a/examples/tools/google/bazeltoolchain/build_simple_bazel_project.rst +++ b/examples/tools/google/bazeltoolchain/build_simple_bazel_project.rst @@ -8,7 +8,7 @@ Build a simple Bazel project using Conan This example is Bazel 6.x compatible. In this example, we are going to create a Hello World program -that uses one of the most popular C++ libraries: `fmt `_. +that uses one of the most popular C++ libraries: `fmt `_. .. note:: From ba1f8bee876f8da962201e8d53ae3c2e65e7e1ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abril=20Rinc=C3=B3n=20Blanco?= <5364255+AbrilRBS@users.noreply.github.com> Date: Thu, 30 Oct 2025 18:50:09 +0100 Subject: [PATCH 2/2] Apply suggestion from @AbrilRBS --- examples/dev_flow/debug/debugging_visual.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/dev_flow/debug/debugging_visual.rst b/examples/dev_flow/debug/debugging_visual.rst index fe10d903cd5b..ad5092da8883 100644 --- a/examples/dev_flow/debug/debugging_visual.rst +++ b/examples/dev_flow/debug/debugging_visual.rst @@ -105,7 +105,7 @@ to get information of a DLL, in this case the path where its associated PDB is l in the package to locate its PDB to copy it to the package folder. For more information on how PDBs work with Visual and how we used it to create the hook can be found in the -`hook readme https://github.com/conan-io/conan-extensions/blob/main/extensions/hooks/README.md>`_. +`hook readme `_. Debugging without build files -----------------------------