Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ncs-zephyr/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,12 @@ RUN echo "if [ -f /etc/bash_completion ]; then" >> ~/.bashrc && \
echo " . /etc/bash_completion" >> ~/.bashrc && \
echo "fi" >> ~/.bashrc

# Fix GDB-PY not working
# We tell GDB to ignore $PYTHONPATH and $PYTHONHOME environment variables
# as they are set to point into the nrfutil toolchain.
# We need GDB-PY to use the system python3.10 and the system python libs
# (Python3.10 is the default python version in Ubuntu 22.04).
RUN echo "set python ignore-environment on" > ~/.gdbearlyinit

#############
# ZSH image #
Expand Down
Loading