i want to move form keil to linux on my some project, I have .uvprojx file and .uvoptx fiels. I want to convert it into makefile and also need to genertate the linker file for the same.
Can any body please help?
sid04 said:Keil uses gcc
Well, it can - if you have configured it to do so.
If you are already using GCC, then you should be good to go; GCC is cross-platform - it will be the same on Linux as on Windows.
sid04 said:nrfmpu
You mean a Nordic Semiconductor nRF chip ?
Note that Nordic supply makefile examples - so you'd probably be best starting from there.
For Nordic specific question, go to https://devzone.nordicsemi.com/
Note that Nordic's "preferred" IDE - for winch they provide all examples - is Segger Embedded Studio (SES). It is cross-platform and uses GCC; I suggest you use that ...
Andy Neil said: Nordic Semiconductor nRF chip ?
Yes I am using a Nordic Chip , and yes it has provided me examples . But I want to execute this https://github.com/Martinsbl/nrf5-mpu-examples , it does not have linker fie as well as make file.
it does have that uvprojx file and .uvoptx files.
I need Makefile
Well, that's a 3rd-party site - nothing to do with Keil ot ARM.
If you want support with that, you will have to contact the author.
But the examples from Nordic should give you enough to understand what to do ...
That site is rather out-of-date now (using SDK 14)
okay thanks for the help
I am trying to make the Makefile by own using that .uvprojx file.
Start with one of the known-working makefiles from Nordic.
Then you just need to add any extras specific to this code.