-
[error] arm-none-eabi-gdb install 설치에러Share/OS 2024. 9. 17. 15:14
Trial & Error
sudo apt install gdb-arm-none-eabi
Result >
E: Unable to locate package gdb-arm-none-eabi
Solution>
x86- linux version download (Just my case)
2. Download, then Unpack
/usr/share (my case)
sudo tar xjf gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2 -C /usr/share/
3. Make "Symbolic Link"
$ sudo ln -s /usr/share/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc /usr/bin/arm-none-eabi-gcc
$ sudo ln -s /usr/share/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-g++ /usr/bin/arm-none-eabi-g++
$ sudo ln -s /usr/share/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gdb /usr/bin/arm-none-eabi-gdb
$ sudo ln -s /usr/share/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-size /usr/bin/arm-none-eabi-size
4. Check , installation
$ arm-none-eabi-gcc --version
arm-none-eabi-gcc (GNU Arm Embedded Toolchain 10-2020-q4-major) 10.2.1 20201103 (release)
Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
$ arm-none-eabi-g++ --version
arm-none-eabi-g++ (GNU Arm Embedded Toolchain 10-2020-q4-major) 10.2.1 20201103 (release)
Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
$ arm-none-eabi-gdb --version
GNU gdb (GNU Arm Embedded Toolchain 10-2020-q4-major) 10.1.90.20201028-git
Copyright (C) 2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
END.
'Share > OS' 카테고리의 다른 글
macOS pip 설치오류 해결 (invalid syntex) (0) 2021.12.20 [error] apt-get update 에러 , apt install net-tools 설치 에러, could not get lock /var/lib/dpkg/lock (2) 2021.11.23 VirtualBox 해상도 및 복사붙여넣기 에러 (could not get lock dpkg ) dpkg 오류 (0) 2021.10.01 임베디드 OS 개발 [8,9,10장] 요약 (0) 2021.03.27 임베디드 OS 개발 [5장] (0) 2021.03.06