Use a C program for ghc-inplace
[ghc-hetmet.git] / compiler / ghc-inplace.c
diff --git a/compiler/ghc-inplace.c b/compiler/ghc-inplace.c
new file mode 100644 (file)
index 0000000..abedefe
--- /dev/null
@@ -0,0 +1,21 @@
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+
+int main(int argc, char **argv) {
+    char **args;
+    args = malloc(sizeof(char *) * (argc + 3));
+    if (args == NULL) {
+        fprintf(stderr, "Malloc failed\n");
+        exit(1);
+    }
+    args[0] = GHC_PATH;
+    args[1] = "-B" TOP_ABS;
+    args[2] = "-fhardwire-lib-paths";
+    memcpy(args + 3, argv + 1, sizeof(char *) * (argc - 1));
+    args[argc+2] = NULL;
+    execv(GHC_PATH, args);
+    return 0;
+}