我正在尝试在MacOS上安装最新版本的GHDL(v0.35)。
我以前安装了0.29,这是HomeBrew安装的那个,但是那个版本给了我一些问题所以我需要升级。
我从发布网页下载了tar文件,发现它包含3个文件夹:lib
,include
和bin
。
我刚刚将这些文件夹的内容复制到/usr/local/{folder}
(文件夹为bin
,include
或lib
),但我想我错过了一些因为我得到了错误说GHDL找不到std
库。
ghdl:warning: library std does not exists for v93
ghdl:warning: library ieee does not exists for v93
ghdl:error: cannot find "std" library
我猜这是一个与路径相关的问题,因为如果我从下载文件夹运行GHDL:
path/to/download/folder/bin/ghdl -a my_file.vhd
它有效。
我做错了什么?