Ada 版本的命令行?
我正在寻找命令行来检查我的 Ada 安装版本。有什么帮助吗?
I am looking for a command line to check for the version of my Ada installation. Any help ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在寻找命令行来检查我的 Ada 安装版本。有什么帮助吗?
I am looking for a command line to check for the version of my Ada installation. Any help ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
由于您将
gcc
列为编译器,因此gcc -x Ada --version
应该可以工作。或者,如果您使用 GNAT,
gnatcompile --version
应该可以工作。此命令应该为您提供GNATMAKE
的版本。Since you listed
gcc
as your compiler thisgcc -x Ada --version
should work.Alternatively, if you're using GNAT,
gnat compile --version
should work. This command should give you the version ofGNATMAKE
.推荐方式是:
gnatls -v
,输出如下:或者:
获取Pro、GPL、GCC之间的版本关系,参见此处。
Recommended way is:
gnatls -v
, output would be like this:or:
to get version relations between Pro, GPL and GCC, see here.