|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
b.cpp
#include<iostream>
#include<sstream>
#include "svdpi.h"
using namespace std;
void reportc(){
cout<<"hello"<<endl;
}
test.sv
import "DPI-C" reportc=taks report();
program main();
initial begin
report();
end
endprogram
compile:
ncvlog -sv test.sv
ncelab main
gcc -fPIC -m32 -shared -o libdpi.so b.cpp -I/eda/candence/ius92/tools/inca/include
ncsim main
报错: OSDLERROR: ./libdpi.rso : undefined symbol: _ZSt4endLicStllchar_traitsIcEERSt13basic_ostreamIT_T0_Es6_
这是什么问题 |
|