在centos7中运行vcs时输入./simv-gui后出现Error-[DEBUG-PRCWDBG] DVE/VERDI debug flag error DVE/VERDI debugging is not enabled at compile time Please recompile with '-debug_access+r' to enable minimum DVE/VERDI debugging. For more details, please refer to "Options For Debugging Using DVE and UCLI and VERDI".,应该怎么解决
时间: 2024-02-13 15:03:06 浏览: 183
这个错误提示是因为在编译时没有开启 DVE/VERDI 调试选项导致的。要解决这个问题,你需要在编译时添加 "-debug_access+r" 参数来启用 DVE/VERDI 调试选项。具体操作步骤如下:
1. 打开终端并进入你的工程目录。
2. 修改 Makefile 文件,在 "CFLAGS =" 参数中添加 "-debug_access+r",如下所示:
```
CFLAGS = -full64 -g -O0 -debug_access+r
```
3. 执行以下命令重新编译代码:
```
make clean
make
```
4. 等待编译完成后,再次执行 "./simv-gui" 命令,此时应该不会再出现上述错误提示。
如果你还有其他问题,可以继续向我提问。
相关问题
centos-home -> ../dm-2 是什么意思
"centos-home -> ../dm-2" 意思是将 "centos-home" 这个目录挂载到 "../dm-2" 目录上。这通常用于将一个分区或磁盘映射到另一个目录上,使得可以在另一个目录中访问到原目录中的文件。
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo出现报错
如果报错为 "Permission denied",请使用管理员权限执行该命令,如:
```
sudo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
```
如果报错为 "wget command not found",说明您的系统中没有安装 wget,请先安装 wget,再执行该命令,如:
```
sudo yum install wget -y
sudo wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
```
阅读全文