2. SystemC Tutorial - Eclipse IDE Setup
This guide shows how to configure SystemC libraries in Eclipse IDE (Mars.1 Release) for C++ development.
Prerequisites
After successfully installing SystemC libraries with Cygwin, you'll have two new directories:
systemc-2.3/include- Header filessystemc-2.3/lib-cygwin- Compiled libraries
Eclipse Configuration
Step 1: Create Project
- Open Eclipse IDE
- Create a new C++ Project
- Select Cygwin GCC in Toolchain
Step 2: Configure Include Path
- Open Project → Properties
- Navigate to C/C++ General → Paths and Symbols
- Under Includes tab, add:
systemc-2.3/include
Step 3: Configure Libraries
- Go to the Libraries tab
- Add libraries:
systemcandm
Step 4: Configure Library Path
- Go to Library Paths tab
- Add:
systemc-2.3/lib-cygwin
Click Apply and you're ready to start developing with SystemC!
Next: Continue to Part 3 - Inverter Gate
Comments (0)
Leave a Comment