欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

Linux系统下SystemC环境配置方法

程序员文章站 2022-06-16 21:24:05
以下为centos7下配置方法下载systemc源码包:systemc (accellera.org)将压缩包放置到用户目录下,并解压tar -zxvf systemc-2.3.3.tar.gz进入到...

以下为centos7下配置方法

下载systemc源码包:systemc (accellera.org)

Linux系统下SystemC环境配置方法

将压缩包放置到用户目录下,并解压

tar -zxvf systemc-2.3.3.tar.gz

进入到systemc-2.3.3文件夹

cd systemc-2.3.3

新建临时文件夹tmp,并进入其中

mkdir tmpcd tmp

运行如下命令

../configure
make
make install

至此,文件夹中生成include与lib-linux64两个文件夹

设置环境变量

export ld_library_path=home/centos7/systemc-2.3.3/lib-linux64 
//其中/home/cnetos7/为文件解压路径,根据自身情况确定

执行该命令只在当前可用,重启后即失效,若需要长期可用,建议在用户目录下的.bashrc下添加该条命令,并需要执行以下命令,重启终端生效。

source .bashrc

运行一个systemc程序进行测试。

test.cpp

//all systemc modules should include systemc.h header file
#inlcude"systemc.h"
//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!!!"<<endl;
	}
}; //此处分号不要忘了
//sc_main in top level function like in c++ main
int sc_main(int argc, char* argv[]){
	hello_world hello("hello");
	return 0;
}

编译并运行

g++ test.cpp  -i/home/cp/simulator/systemc/include -l/home/cp/simulator/systemc/lib-linux64 -o test -lsystemc
./test

屏幕上将会显示

Linux系统下SystemC环境配置方法

makefile

libdir=-l/home/cp/simulator/systemc/lib-linux64
incdir=-i/home/cp/simulator/systemc/include
lib=-lsystemc
all:
	g++ -o test test.cpp $(libdir) $(incdir) $(lib)
clean:
	rm -rf *.o

到此这篇关于linux系统下systemc环境配置方法的文章就介绍到这了,更多相关linux系统systemc环境内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: Linux SystemC