Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
Difference between revisions of "HowTo use the CDT to navigate Linux kernel source"
(Simplified instructions, because of bug-ridden configuration management in Eclipse, and also used Advance Settings so as not to have to stop the indexing.) |
|||
Line 16: | Line 16: | ||
#Select '''Resource''' on the left, and then in the '''Text file encoding''' section, select '''Other''' and '''ISO-8859-1''' in the box, then click '''Apply''' | #Select '''Resource''' on the left, and then in the '''Text file encoding''' section, select '''Other''' and '''ISO-8859-1''' in the box, then click '''Apply''' | ||
#Select '''C/C++ Build''' on the left. | #Select '''C/C++ Build''' on the left. | ||
− | |||
− | |||
− | |||
− | |||
#Open the '''C/C++ General''' selection on the left. | #Open the '''C/C++ General''' selection on the left. | ||
#Click on '''Indexer''' | #Click on '''Indexer''' | ||
Line 25: | Line 21: | ||
#Uncheck '''Index source files not included in the build''' | #Uncheck '''Index source files not included in the build''' | ||
#Clear out the '''Files to index up-front''' box. | #Clear out the '''Files to index up-front''' box. | ||
− | |||
#Click on '''Paths and Symbols''' on the left. | #Click on '''Paths and Symbols''' on the left. | ||
#Select the '''Includes''' tab and then select '''GNU C''' | #Select the '''Includes''' tab and then select '''GNU C''' | ||
Line 40: | Line 35: | ||
#Click '''Add Multiple...''' and then select all of the {{Code|arch/*}} directories in your kernel source that will not be used (i.e. all the ones that are not for the architecture you are using) | #Click '''Add Multiple...''' and then select all of the {{Code|arch/*}} directories in your kernel source that will not be used (i.e. all the ones that are not for the architecture you are using) | ||
#Click '''OK''' and '''OK''' again to dismiss that dialog. | #Click '''OK''' and '''OK''' again to dismiss that dialog. | ||
− | #Click '''OK''' on the Properties dialog. | + | #Click '''OK''' on the Properties dialog. |
− | #Right click on the project | + | #Click '''Finish''' on the C Project dialog. |
+ | #Right click on the project and select '''Index''' then select '''Rebuild''' | ||
#It will take about 20 minutes or so to complete. | #It will take about 20 minutes or so to complete. | ||
Corey Ashford [mailto:cjashfor@us.ibm.com cjashfor@us.ibm.com] | Corey Ashford [mailto:cjashfor@us.ibm.com cjashfor@us.ibm.com] |
Revision as of 16:55, 19 February 2010
Here are some steps that I've found to get the CDT to work well with the Linux kernel source. If you exclude some of these steps, it may still work to a large degree, but some things may not work exactly right; for example it may find the wrong include file for a C file.
Anyway, as you do these steps, I think you may understand how they assist the indexer to do a good job for the Linux kernel source.
Disclaimer: these steps were developed for Eclipse 3.5.1 + CDT 6.0.0.
- Download and install Eclipse plus the CDT.
- Configure and build your kernel. This can be done before or after downloading and installing Eclipse.
- Start up Eclipse.
- Click File->New->C Project
- Fill in a project name like my_kernel
- Uncheck the Use default location box and type in the root directory of your kernel into the Location box.
- In the Project type: pane, click the Makefile project and select Empty Project
- On the right side, select Linux GCC
- Click Advanced settings... and a Properties dialog will pop up.
- Select Resource on the left, and then in the Text file encoding section, select Other and ISO-8859-1 in the box, then click Apply
- Select C/C++ Build on the left.
- Open the C/C++ General selection on the left.
- Click on Indexer
- Checkmark the Enable project specific setttings box.
- Uncheck Index source files not included in the build
- Clear out the Files to index up-front box.
- Click on Paths and Symbols on the left.
- Select the Includes tab and then select GNU C
- Click Add...
- Click Workspace... then select your kernel's include directory
- Do another Add, Workspace and add arch/architecture/include, e.g., arch/powerpc/include
- Click the # Symbols tab
- Click Add...
- Set the name to __KERNEL__
- Set the value to 1 and click OK
- Click the Source Location tab
- Click the twisty for your project.
- Select the Filter item and click Edit Filter...
- Click Add Multiple... and then select all of the arch/* directories in your kernel source that will not be used (i.e. all the ones that are not for the architecture you are using)
- Click OK and OK again to dismiss that dialog.
- Click OK on the Properties dialog.
- Click Finish on the C Project dialog.
- Right click on the project and select Index then select Rebuild
- It will take about 20 minutes or so to complete.
Corey Ashford cjashfor@us.ibm.com