Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 578 Bytes

README.md

File metadata and controls

31 lines (27 loc) · 578 Bytes

ARM Embedded GNU Toolchain 8-2019-q3-update (in Docker)

Build

docker build . -t arm-none-eabi

Test assembler

docker run arm-none-eabi \
      arm-none-eabi-as --version

Assemble something by mounting to /src

(Assuming sample.asm exists in HOST_SRC)

docker run \
      -v HOST_SRC:/src \
      arm-none-eabi \
      arm-none-eabi-as \
      /src/sample.asm

Make example

(Assuming sample.asm exists in HOST_SRC)

docker run \
      -v HOST_SRC:/src \
      arm-none-eabi \
      bash -c "cd src && make"