571 views
in GUI Development by
When I'm changing native code in my application class, I have to "make clean" before installing the changed application. Without "make clean" the device runs into an HardFault.

1 Answer

0 votes
by

Hi itPenguin,

the reason is that we have no dependency handling in the make process of our current build environment.

To add dependency handling to the make process, please use the attached rules.mk and add following line at the end of the makefile:

include $(wildcard $(patsubst %,%.d,$(basename $(OBJS))))

Best Regards,
Martin

Ask Embedded Wizard - Archive

Welcome to the Ask Embedded Wizard archive. This community forum served us well for many years, but we've evolved our support approach!

Your resources:

The Embedded Wizard Online Documentation provides comprehensive documentation, tutorials, examples and ready-to-use software packages.

For dedicated assistance, explore our Embedded Wizard Product Support.

You can still browse the valuable discussions from our community history here.

Embedded Wizard Website | Privacy Policy | Imprint

...