I am new to systemc in ubuntu 14.04 and I am trying to setup up eclipse for a systemc small project. I followed the the provided README in systemc-2.3.1 and the INSTALL to install the library. I then used tutorial here to set up eclipse.
The problem is that I have a syntax error tell me that sc_signal_resolved could not be resolved.
below is a sample of my code:
#include <systemc.h> int sc_main(int argc, char ** argv) { sc_signal_resolved zero, one; // in the rest of the code I will use the zero and one passing them to some gates. return(0); }
Please how do I solve this. In Windows with visual studio I have no problem.