This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to use gcc-arm-none-eabi to compile coremark for cortex M4?

I have downloaded gcc-arm-none-eabi compiler from ARM website, and coremark source code from github.

How can I compile it and make it work on M4? Thanks

Parents
  • Jinghao,

    Developing a bare-metal program (program with OS) does need to more steps to start, including startup code, linker scripts and printf. But they will be pretty much reusage once setup.

    Released with gcc-arm-none-eabi, there is a samples directory that has some examples of simple project. You can follow either follow the retarget or semihost project to start your project. If there is suggestion to make them more helpful please let us know.

Reply
  • Jinghao,

    Developing a bare-metal program (program with OS) does need to more steps to start, including startup code, linker scripts and printf. But they will be pretty much reusage once setup.

    Released with gcc-arm-none-eabi, there is a samples directory that has some examples of simple project. You can follow either follow the retarget or semihost project to start your project. If there is suggestion to make them more helpful please let us know.

Children