We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5202239 commit 9065049Copy full SHA for 9065049
.devcontainer/Dockerfile
@@ -18,6 +18,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
18
# Install xpack ARM GCC toolchain
19
RUN npm install --global @xpack-dev-tools/arm-none-eabi-gcc
20
21
+# Debug: List npm global directories and check installation
22
+RUN npm list -g @xpack-dev-tools/arm-none-eabi-gcc
23
+
24
# Find and symlink the ARM GCC binaries
25
RUN GCC_PATH=$(find /root/.local/xPacks/@xpack-dev-tools/arm-none-eabi-gcc -name "bin" -type d | head -n 1) && \
26
if [ -z "$GCC_PATH" ]; then echo "ARM GCC toolchain not found"; exit 1; fi && \
0 commit comments