Use of custom make in eclipse IDE for C project #507
Replies: 2 comments
-
The Managed Build Plug-ins focus on managed projects, in other words projects whose build processes are managed by Eclipse, not by the user with manually crafted build configurations, like makefiles. Although it is possible to use Eclipse unmanaged projects, it is a bit tricky to configure the indexer to reflect the actual build configuration defined in the make files. I personally avoided this, so I advise you to google for possible solutions available for Eclipse CDT, and try to apply them to Embedded CDT. |
Beta Was this translation helpful? Give feedback.
-
If you really want to use a Makefile project then this may help. It doesn't deal specifically with the Embedded CDT plugins but the general principles should be very similar. https://mcuoneclipse.com/2017/07/22/tutorial-makefile-projects-with-eclipse/ |
Beta Was this translation helpful? Give feedback.
-
I already have a makefile project in C. There are multiple makefiles that are used through the command line to help automate the build process as multiple folders are available in the project.
How can the same makefiles be used in my Eclipse project for building / compiling the code?
Beta Was this translation helpful? Give feedback.
All reactions