Welcome to mirror list, hosted at ThFree Co, Russian Federation.

launch.c « scripts - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 856f12335b32c22f3d6901a06fe0cacecdc9dfa4 (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
28
29
30
31
32
33
34
35
#define PROFILE_BASE_DIR "/mono/lib/mono/4.0"
#define MONO_BINARY "/mono/bin/mono"
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <malloc.h>

int
main (int argc, char *argv [])
{
	char **nargv = (char **) malloc (sizeof (char *) * (argc + 1));
	char *last = strrchr (argv [0], '/');
	char *command;
	int i, len;

	if (last == NULL){
		fprintf (stderr, "Do not know how to invoke the program given [%s]\n", argv [0]);
		return 1;
	}
	len = strlen (last) + strlen (PROFILE_BASE_DIR) + 1;
	command = malloc (len);
	if (command == NULL){
		fprintf (stderr, "Error allocating memory");
		return 1;
	}
	strcpy (command, PROFILE_BASE_DIR);
	strcat (command, last);
	nargv [0] = command;
	nargv [1] = command;
	
	for (i = 1; i < argc; i++)
		nargv [1+i] = argv [i];
	
	execvp (MONO_BINARY, nargv);
}