在OSX上与LD_PRELOAD完全等价的是什么?

时间:2011-12-15 03:34:43

标签: macos gcc linker ld-preload

我正在使用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上使用它的每一步都等同于什么?我用谷歌搜索了这个并且无法使用所提供的信息,因为缺少某些步骤的信息。

提前致谢!

1 个答案:

答案 0 :(得分:16)

看看DYLD_INSERT_LIBRARIES。这是你正在寻找的变量。

另见this answer