我正在尝试在 MacOS (v0.35) 上安装最新版本的 GHDL。
我之前安装了 HomeBrew 安装的 0.29,但那个版本给我带来了一些问题,所以我需要升级。
我从发布网页下载了 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
有用。
我究竟做错了什么?