summaryrefslogtreecommitdiff
path: root/template/ruby-runner.c.in
blob: 56386a8d6fe7c8388707805e3b4cca2897a730cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#define BUILDDIR "@abs_top_builddir@"
#define LIBPATHENV "@LIBPATHENV@"

int
main(int argc, char **argv)
{
    static const char builddir[] = BUILDDIR;
    const char *libpath = getenv(LIBPATHENV);
    if (libpath) {
	size_t n = strlen(libpath);
	char *e = malloc(sizeof(builddir)+n+1);
	memcpy(e, builddir, sizeof(builddir)-1);
	e[sizeof(builddir)-1] = '@PATH_SEPARATOR@';
	memcpy(e+sizeof(builddir), libpath, n+1);
	libpath = e;
    }
    else {
	libpath = builddir;
    }
    setenv(LIBPATHENV, libpath, 1);
    execv(BUILDDIR"/@RUBY_BASE_NAME@", argv);
    return -1;
}