Ich bin neu in Systemc-Programmierung. Für die Installation, I followed this tutorial to install and startup. Ich versuche, ein einfaches Hauptprogramm zu bauen. Allerdings bekomme ich den FehlerSystemc-Bibliothek kann nicht mit vs 2013 geöffnet werden
Fehler LNK1104: Datei "systemc.lib" kann nicht geöffnet werden.
Jetzt mit einer einfachen Verzeichnissuche, finde ich die Datei nicht. Es scheint jedoch, dass das Entfernen mehr Schäden verursacht. According to this poste Die Tatsache, dass das Tutorial für vs2010 ist und ich vs2013 verwende, sollte kein Problem sein.
Wie bewege ich mich vorwärts? Was soll ich machen. Hier ist der Code:
// Hello_world is module name
SC_MODULE(hello_world) {
SC_CTOR(hello_world) {
// Nothing in constructor
}
void say_hello() {
//Print "Hello World" to the console.
cout << "Hello World.\n";
}
};
// sc_main in top level function like in C++ main
int sc_main(int argc, char* argv[]) {
hello_world hello("HELLO");
// Print the hello world
hello.say_hello();
return(0);
}