您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關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
屏幕上將會顯示
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環境如何配置”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。