gpt4 book ai didi

使用 -fomit-frame-pointer -mrtd 编译 c 会在自由函数指针上创建段错误

转载 作者:太空宇宙 更新时间:2023-11-04 01:38:05 28 4
gpt4 key购买 nike

如果我使用 -fomit-frame-pointer 和 -mrtd 通过 GCC 编译,此 C 代码会因段错误而崩溃。

我的代码有什么问题吗?其他函数指针按预期工作,但不是在传递自由函数时?我在编译时收到警告,但我不明白为什么或我应该做些什么来修复。 (我通常不在 c 中编码,这个错误来 self 使用的 3d 零件库)

我需要 rtd/stdcall,因为我在 Windows 上,需要使用 ctypes 从 python 调用这个库,并且在使用带有 -O1 的 GCC 编译时默认包含 -fomit-frame-pointer。 (GCC版本是4.6.1,来自TDM/Mingw32)感觉有点奇怪,默认的优化选项会出问题?

C 代码:

#include <stdlib.h>

// void free ( void * ptr );
void test(void* o, void (*freeFunc)(void*)) {
freeFunc(o);
}

int main() {
int *p = (int *)calloc(1, sizeof(int));
test(p, free);
}

编译:

gcc -fomit-frame-pointer -mrtd -c fx.c
gcc -fomit-frame-pointer -mrtd fx.o -o fx.exe

编译警告:

fx.c: In function 'main':
fx.c:11:5: warning: passing argument 2 of 'test' from incompatible pointer type[enabled by default]
fx.c:5:6: note: expected 'void (*)(void *)' but argument is of type 'void (*)(void *)'

最佳答案

来自 -mrtd 的 GCC 手册页:

Warning: this calling convention is incompatible with the one
normally used on Unix, so you cannot use it if you need to call
libraries compiled with the Unix compiler.

警告有点奇怪,但我相信它只是想告诉您,您正在传递一个指向使用不兼容调用约定的函数的指针。我想 libc 中的 free 就是这样一个函数;我很惊讶调用 calloc 完全有效。 (或者可能不是,您看到的是延迟故障!)

关于使用 -fomit-frame-pointer -mrtd 编译 c 会在自由函数指针上创建段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10902348/

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