我LD_PRELOAD
用来挂钩一个库函数,在 Linux 中它工作得很好。但我不知道如何在 OSX 中做同样的事情。
我在 Linux 上的设置如下:
代码是:
#include <stdio.h>
#include <dlfcn.h>
#include <stdlib.h>
#include <unistd.h>
#include <ruby.h>
void
rb_raise(unsigned long exc, const char *fmt, ...)
{
static void (*libruby_rb_raise)
(unsigned long exc, const char *fmt, ...) = NULL;
void * handle;
char * error;
if (!libruby_rb_raise) {
handle = dlopen("/path/to/libruby.so",
RTLD_LAZY);
if (!handle) {
fputs(dlerror(), stderr);
exit(1);
}
libruby_rb_raise = dlsym(handle, "rb_raise");
if ((error = dlerror()) != NULL) {
fprintf(stderr, "%s\n", error);
exit(1);
}
}
// ...code...
return Qnil;
}
然后我编译:
gcc -Wall -O2 -fpic -shared -ldl -g -I/path/to/includes/ -o raise_shim.so raise_shim.c
然后我执行:
LD_PRELOAD=./raise_shim.so ruby
以上所有内容在 Linux 上运行良好,在 OSX 上运行的每个步骤相当于什么?我已经用谷歌搜索了这个,但由于缺少某些步骤的信息,所以无法让它与提供的信息一起工作。
提前致谢!