gpt4 book ai didi

c - 在 Ada 中访问 C 字符串时出现段错误

转载 作者:行者123 更新时间:2023-12-04 00:56:01 33 4
gpt4 key购买 nike

我试图从 Ada 子程序访问在 C 程序中声明的字符串,但出现段错误。谁能帮我解决这个问题?

这是一个失败的例子,似乎段错误来自于 ada_decs.adb 中对 Interfaces.C.Strings.Value 的调用,但我不确定为什么,或者我是如何可以让它发挥作用。

gdb 的回溯显示:

#0  0x00000000004167ea in system.secondary_stack.ss_mark ()
#1 0x00000000004037e6 in ada_print_it (s=0x427244 "Hello") at (...)/ada_decs.adb:2
#2 0x000000000040327c in main (argc=1, argv=0x7fffffffe568) at (...)/main.c:5

((...) 表示完整的文件路径)。

ada_decs.ads:

with Interfaces.C.Strings;
with Ada.Text_IO;
package Ada_Decs is
procedure Print_It (s : Interfaces.C.Strings.chars_ptr) with
Export => True,
Convention => C,
External_Name => "ada_print_it";
end Ada_Decs;

ada_decs.adb:

package body Ada_Decs is
procedure Print_It (s : Interfaces.C.Strings.chars_ptr) is
str : String := Interfaces.C.Strings.Value(s);
begin
Ada.Text_IO.Put_Line(str);
end Print_It;
end Ada_Decs;

主.c:

#include <stdio.h>
extern void ada_print_it (const char *s);

int main(int argc, const char *argv[]) {
const char *hello = "Hello";
ada_print_it(hello);
}

最佳答案

对于用 C 编写的主程序,您需要让 Ada RTS 自行初始化,然后才能使用它的任何功能。并在退出时自行关闭。

adainit()adafinal() 调用将执行此操作。

extern void adainit (void);
extern void adafinal (void);

int main(int argc, const char *argv[]) {

adainit();

const char *hello = "Hello";
ada_print_it(hello);

adafinal();
}

对于用 Ada 编写的主程序。这是由 Binder Gnatbind 自动处理的。

您可能还需要添加链接器参数以让链接器找到这些 RTS 函数:请参阅 Gnat documents (第 3.11 章,混合语言接口(interface))了解更多详情。有一个有效的例子 at the bottom of this page .

gcc9.3 的两个链接;其他 gcc 版本可能略有不同,因此请查看正确的文档。

关于c - 在 Ada 中访问 C 字符串时出现段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62514785/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com