Problem creating empty header file

Technical questions regarding the XTC tools and programming with XMOS.
Post Reply
alwalker
Active Member
Posts: 45
Joined: Sun Apr 08, 2018 11:19 pm

Problem creating empty header file

Post by alwalker »

Hi,

I have an xC application that builds and runs just fine.

In the src folder in the workspace, I created a new c header file that I called dummy.h:


#ifndef DUMMY_H_
#define DUMMY_H_




#endif /* DUMMY_H_ */


I then add an include to my xC application that is also in the src folder:

#include "dummy.h"

If I then do a Clean build with this include statement active, the build completes successfully, but does not produce a bin folder with a .xe executable file.

If I comment out this statement and repeat the Clean build process, it works just fine.

What am I missing please?


Post Reply