0
私はsystemc programmingを初めて利用しています。インストールのために、I followed this tutorial to install and startup.私は簡単なメインプログラムを構築しようとしています。しかし、私はエラーを取得していますsystemcライブラリをvs 2013で開くことができません
エラーLNK1104:ファイル "systemc.lib"を開くことができません。
単純なディレクトリ検索で、私はファイルを見つけることができません。しかし、それを削除すると、より多くの損害を引き起こすようです。 According to this posteチュートリアルがvs2010向けで、vs2013を使用しているということは問題ではないはずです。
どのように私は前方に移動しますか。私は何をすべきか。
// 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);
}