Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "HowTo use the CDT to navigate Linux kernel source"

(I actually used this to set up a new workspace and found some flaws in the instructions, which I have now fixed.)
Line 13: Line 13:
 
#In the '''Project type:''' pane, click the '''Makefile project''' and select '''Empty Project'''  
 
#In the '''Project type:''' pane, click the '''Makefile project''' and select '''Empty Project'''  
 
#On the right side, select '''Linux GCC'''  
 
#On the right side, select '''Linux GCC'''  
#Click '''Finish'''
+
#Click '''Advanced settings...''' and a Properties dialog will pop up.
#Eclipse will start indexing the kernel source files, so double click on the little moving "activity" icon in the lower right part of the Eclipse window.  
+
#Click the square red stop button on the indexer.  
+
#Right click the top-level project in the '''Project Explorer''' pane on the left, and select '''Properties''' at the bottom.  
+
 
#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.

Revision as of 17:44, 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.

  1. Download and install Eclipse plus the CDT.
  2. Configure and build your kernel. This can be done before or after downloading and installing Eclipse.
  3. Start up Eclipse.
  4. Click File->New->C Project
  5. Fill in a project name like my_kernel
  6. Uncheck the Use default location box and type in the root directory of your kernel into the Location box.
  7. In the Project type: pane, click the Makefile project and select Empty Project
  8. On the right side, select Linux GCC
  9. Click Advanced settings... and a Properties dialog will pop up.
  10. 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
  11. Select C/C++ Build on the left.
  12. Click the Manage Configurations at the top right.
  13. Click New...
  14. Give it a name like Linux config and a similar description, and click OK
  15. Select your new configuration, and click Set Active and then Apply
  16. Open the C/C++ General selection on the left.
  17. Click on Indexer
  18. Checkmark the Enable project specific setttings box.
  19. Uncheck Index source files not included in the build
  20. Clear out the Files to index up-front box.
  21. Select Use active build configuration at the bottom, and click Apply
  22. Click on Paths and Symbols on the left.
  23. Select the Includes tab and then select GNU C
  24. Click Add...
  25. Click Workspace... then select your kernel's include directory
  26. Do another Add, Workspace and add arch/architecture/include, e.g., arch/powerpc/include
  27. Click the # Symbols tab
  28. Click Add...
  29. Set the name to __KERNEL__
  30. Set the value to 1 and click OK
  31. Click the Source Location tab
  32. Click the twisty for your project.
  33. Select the Filter item and click Edit Filter...
  34. 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)
  35. Click OK and OK again to dismiss that dialog.
  36. Click OK on the Properties dialog.
  37. Right click on the project again and select Index then select Rebuild
  38. It will take about 20 minutes or so to complete.

Corey Ashford cjashfor@us.ibm.com

Back to the top