如何让 GNAT 生成程序列表?

发布于 2024-08-05 01:30:42 字数 25 浏览 4 评论 0原文

让它看起来像 tasm 生成的列表)

Make it look like tasm-generated listing)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

薆情海 2024-08-12 01:30:42

使用“-S”作为参数之一调用“gnatmake”:

$ cat hello_world.adb
with Ada.Text_IO;

procedure Hello_World is
begin
   Ada.Text_IO.Put_Line ("Hello world!");
end Hello_World;
$ gnatmake -S hello_world
[...]
$ head hello_world.s
        .file       "hello_world.adb"
        .section    .rodata
.LC1:
        .ascii      "Hello world!"
        .align 4
.LC0:
        .long       1
        .long       12
        .text
        .globl      _ada_hello_world

Call 'gnatmake' with '-S' as one of the arguments:

$ cat hello_world.adb
with Ada.Text_IO;

procedure Hello_World is
begin
   Ada.Text_IO.Put_Line ("Hello world!");
end Hello_World;
$ gnatmake -S hello_world
[...]
$ head hello_world.s
        .file       "hello_world.adb"
        .section    .rodata
.LC1:
        .ascii      "Hello world!"
        .align 4
.LC0:
        .long       1
        .long       12
        .text
        .globl      _ada_hello_world
女皇必胜 2024-08-12 01:30:42

根据文档

任何大写或多字符
不是 gnatmake 开关的开关
传递给 gcc(例如 -O、-gnato、
等)

,所以您可能会以与使用 gcc 完全相同的方式执行此操作。

我不知道您指的确切格式,但是 -gnatl 看起来很有趣。

According to the docs,

Any uppercase or multi-character
switch that is not a gnatmake switch
is passed to gcc (e.g. -O, -gnato,
etc.)

, so you would probably do it the exact same way you'd do it with gcc.

I don't know the exact format you refer to, but -gnatl looks interesting.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文