2015-10-03 12:28:23 -04:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
2015-10-03 11:09:47 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2016-04-13 21:30:12 -04:00
|
|
|
#include "ruby-runner.h"
|
2015-10-31 19:34:17 -04:00
|
|
|
|
|
|
|
#define STRINGIZE(expr) STRINGIZE0(expr)
|
|
|
|
#define STRINGIZE0(expr) #expr
|
2015-10-03 11:09:47 -04:00
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
static const char builddir[] = BUILDDIR;
|
|
|
|
const char *libpath = getenv(LIBPATHENV);
|
2015-10-31 22:50:59 -04:00
|
|
|
char c = 0;
|
|
|
|
|
2015-10-03 11:09:47 -04:00
|
|
|
if (libpath) {
|
2015-10-31 22:50:59 -04:00
|
|
|
while ((c = *libpath) == PATH_SEP) ++libpath;
|
2015-10-05 02:29:58 -04:00
|
|
|
}
|
2015-10-31 22:50:59 -04:00
|
|
|
if (c) {
|
2015-10-03 11:09:47 -04:00
|
|
|
size_t n = strlen(libpath);
|
|
|
|
char *e = malloc(sizeof(builddir)+n+1);
|
|
|
|
memcpy(e, builddir, sizeof(builddir)-1);
|
2015-10-05 02:29:54 -04:00
|
|
|
e[sizeof(builddir)-1] = PATH_SEP;
|
2015-10-03 11:09:47 -04:00
|
|
|
memcpy(e+sizeof(builddir), libpath, n+1);
|
|
|
|
libpath = e;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
libpath = builddir;
|
|
|
|
}
|
|
|
|
setenv(LIBPATHENV, libpath, 1);
|
2015-10-31 19:34:17 -04:00
|
|
|
execv(BUILDDIR"/"STRINGIZE(RUBY_INSTALL_NAME), argv);
|
2015-10-03 11:09:47 -04:00
|
|
|
return -1;
|
|
|
|
}
|