Skip to content

five-embeddev/modern-cxx-riscv

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Knowledge capture and experiments with low level C++ on RISC-V.

More details at either:

Projects:

  • blinky : Example C++ blinky program for RISC-V

Building

Platform IO is used to build the project locally.

Docker is used to build the project on github.

Docker

The included dockerfile installs the xpack RISC-V GCC toolchain and uses cmake to compile the project.

To build locally using the docker file use these commands:

docker build --tag=my_project:latest .
docker run \
       -it \
       -v `pwd`:/work \
       my_project:latest \
       /work \
       blinky/src \

Releases

No releases published

Packages

No packages published

Languages

  • C++ 98.9%
  • Other 1.1%