You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ut...@apache.org on 2021/07/07 10:23:19 UTC

[mynewt-documentation] branch master updated: native_install: Update link to toolchain for Windows

This is an automated email from the ASF dual-hosted git repository.

utzig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-documentation.git


The following commit(s) were added to refs/heads/master by this push:
     new 9d44d22  native_install: Update link to toolchain for Windows
9d44d22 is described below

commit 9d44d22b14bcb14380f59c810df24b28ad68c446
Author: Magdalena Kasenberg <ma...@codecoup.pl>
AuthorDate: Wed Jul 7 12:01:04 2021 +0200

    native_install: Update link to toolchain for Windows
    
    This fixes error that occurred on Windows at newt create-image command:
    Error: arm-none-eabi-objcopy
    [..]pache-mynewt-nimble/apps/bttester/bttester.hex 64-bit address
    0x4b4fa30000c000 out of range for Intel Hex file
---
 docs/get_started/native_install/cross_tools.rst | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/docs/get_started/native_install/cross_tools.rst b/docs/get_started/native_install/cross_tools.rst
index 0cf1686..c0adc4d 100644
--- a/docs/get_started/native_install/cross_tools.rst
+++ b/docs/get_started/native_install/cross_tools.rst
@@ -64,9 +64,9 @@ https://launchpad.net/~team-gcc-arm-embedded/+archive/ubuntu/ppa.
 Installing the ARM Toolchain for Windows
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-#.  Download and run the `installer <https://developer.arm.com/-/media/Files/downloads/gnu-rm/8-2018q4/gcc-arm-none-eabi-8-2018-q4-major-win32.exe>`__
+#.  Download and run the `installer <https://developer.arm.com/-/media/Files/downloads/gnu-rm/10-2020q4/gcc-arm-none-eabi-10-2020-q4-major-win32.exec>`__
     to install arm-none-eabi-gcc and arm-none-eabi-gdb. Select the default
-    destination folder: **C:\\Program Files (x86)\\GNU Tools ARM Embedded\\8 2018-q4-major**.
+    destination folder: **C:\\Program Files (x86)\\GNU Arm Embedded Toolchain\\10 2020-q4-major**.
 
     **Notes:**
 
@@ -84,9 +84,9 @@ Installing the ARM Toolchain for Windows
     .. code-block:: console
 
         $ which arm-none-eabi-gcc
-        /c/Program Files (x86)/GNU Tools ARM Embedded/8 2018-q4-major/bin/arm-none-eabi-gcc
-        $which arm-none-eabi-gdb
-        /c/Program Files (x86)/GNU Tools ARM Embedded/8 2018-q4-major/bin/arm-none-eabi-gdb
+        /c/Program Files (x86)/GNU Arm Embedded Toolchain/10 2020-q4-major/bin/arm-none-eabi-gcc
+        $ which arm-none-eabi-gdb
+        /c/Program Files (x86)/GNU Arm Embedded Toolchain/10 2020-q4-major/bin/arm-none-eabi-gdb
 
 Installing the Debuggers
 ------------------------