launch.c 845 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #define PROFILE_BASE_DIR "/mono/lib/mono/4.0"
  2. #define MONO_BINARY "/mono/bin/mono"
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <unistd.h>
  6. #include <malloc.h>
  7. int
  8. main (int argc, char *argv [])
  9. {
  10. char **nargv = (char **) malloc (sizeof (char *) * (argc + 1));
  11. char *last = strrchr (argv [0], '/');
  12. char *command;
  13. int i, len;
  14. if (last == NULL){
  15. fprintf (stderr, "Do not know how to invoke the program given [%s]\n", argv [0]);
  16. free (nargv);
  17. return 1;
  18. }
  19. len = strlen (last) + strlen (PROFILE_BASE_DIR) + 1;
  20. command = malloc (len);
  21. if (command == NULL){
  22. fprintf (stderr, "Error allocating memory");
  23. free (nargv);
  24. return 1;
  25. }
  26. strcpy (command, PROFILE_BASE_DIR);
  27. strcat (command, last);
  28. nargv [0] = command;
  29. nargv [1] = command;
  30. for (i = 1; i < argc; i++)
  31. nargv [1+i] = argv [i];
  32. execvp (MONO_BINARY, nargv);
  33. }