Suggestion that might make sense for embedded, which is to add an entry for object copy in the Project-Settings ->Common Settings
I'm using Codelite for embedded firmware on AVR and ARM processors. Typically after an the code it comiple and liked to a .elf file, you run objcopy to create an binary file (.hex or .srec). I've been doing this via the post build settings, for example.
arm-none-eabi-objcopy -O srec $(ProjectPath)\Debug\main.elf main.srec
This works, but it it runs even if there is nothing to do.
Add support for objcopy
-
- CodeLite Expert
- Posts: 167
- Joined: Fri Jul 22, 2011 5:32 am
- Genuine User: Yes
- IDE Question: C++
- Contact:
- Jarod42
- CodeLite Expert
- Posts: 240
- Joined: Wed Sep 30, 2009 5:54 pm
- Genuine User: Yes
- IDE Question: C++
- Location: France
- Contact:
Re: Add support for objcopy
There is a possible 'solution' using "Custom Makefile rule" if you know the dependencies...
Note:
You can add more rules by separating them by line (but I see it as a hack)...
Note:
You can add more rules by separating them by line (but I see it as a hack)...