We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm unable to run arm-none-eabi-gdb using the devkitpro/devkitarm image. It appears there are a couple issues:
arm-none-eabi-gdb
devkitpro/devkitarm
/opt/devkitpro/devkitARM/bin isn't in the path
/opt/devkitpro/devkitARM/bin
$ docker run -it --rm -v "$PWD:/build" devkitpro/devkitarm # arm-none-eabi-gdb bash: arm-none-eabi-gdb: command not found # find / -name arm-none-eabi-gdb /opt/devkitpro/devkitARM/bin/arm-none-eabi-gdb
Dependencies are missing:
# /opt/devkitpro/devkitARM/bin/arm-none-eabi-gdb /opt/devkitpro/devkitARM/bin/arm-none-eabi-gdb: error while loading shared libraries: libpython2.7.so.1.0: cannot open shared object file: No such file or directory # apt install libtinfo5 ... # /opt/devkitpro/devkitARM/bin/arm-none-eabi-gdb /opt/devkitpro/devkitARM/bin/arm-none-eabi-gdb: error while loading shared libraries: libpython2.7.so.1.0: cannot open shared object file: No such file or directory # apt -y install libpython2.7 ... # /opt/devkitpro/devkitARM/bin/arm-none-eabi-gdb (gdb)
Here's my one-liner workaround for anyone running into this:
docker run -it --rm -v "$PWD:/build" devkitpro/devkitarm sh -c "PATH=/opt/devkitpro/devkitARM/bin:"$PATH"; apt -y install libtinfo5 libpython2.7; arm-none-eabi-gdb"
or:
docker run -it --rm -v "$PWD:/build" devkitpro/devkitarm sh -c "PATH=/opt/devkitpro/devkitARM/bin:"$PATH"; apt -y install libtinfo5 libpython2.7; bash"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm unable to run
arm-none-eabi-gdb
using thedevkitpro/devkitarm
image. It appears there are a couple issues:/opt/devkitpro/devkitARM/bin
isn't in the pathDependencies are missing:
Here's my one-liner workaround for anyone running into this:
or:
The text was updated successfully, but these errors were encountered: