summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2007-08-15 17:27:07 +0000
committerIan Lynagh <igloo@earth.li>2007-08-15 17:27:07 +0000
commitdb7a768882134defdd282bd626b29bead6e62b00 (patch)
treeaad999a15ac316941682f8a0eeec58930c4bd872 /compiler
parent552eb456fcaeee5b69ec70555b5a269dd7daf535 (diff)
downloadhaskell-db7a768882134defdd282bd626b29bead6e62b00.tar.gz
Use a C program for ghc-inplace
Diffstat (limited to 'compiler')
-rw-r--r--compiler/Makefile22
-rw-r--r--compiler/ghc-inplace.c21
2 files changed, 27 insertions, 16 deletions
diff --git a/compiler/Makefile b/compiler/Makefile
index 5ca2c2dbb2..e85706baf1 100644
--- a/compiler/Makefile
+++ b/compiler/Makefile
@@ -709,32 +709,22 @@ SRC_LD_OPTS += -no-link-chk
# See comments in $(FPTOOLS_TOP)/utils/ghc-pkg/Makefile for why we use
# a real binary here rather than a shell script.
-INPLACE_HS = $(odir)/ghc-inplace.hs
+INPLACE_C = ghc-inplace.c
INPLACE_PROG = $(odir)/ghc-inplace$(exeext)
-EXCLUDED_SRCS += $(INPLACE_HS)
+EXCLUDED_SRCS += $(INPLACE_C)
# FPTOOLS_TOP_ABS platform uses backslashes, at least on Cygwin, but that
# will go wrong when we use it in a Haskell string below.
TOP_ABS=$(subst \\,/,$(FPTOOLS_TOP_ABS_PLATFORM))
-ifeq "$(stage)" "1"
-EnvImport = System.Environment
-GetArgs = getArgs
-else
-EnvImport = GHC.Environment
-GetArgs = getFullArgs
-endif
-
-$(INPLACE_HS): Makefile $(FPTOOLS_TOP)/mk/config.mk
- echo "import System.Cmd; import $(EnvImport); import System.Exit" > $@
- echo "main = do args <- $(GetArgs); rawSystem \"$(TOP_ABS)/$(GHC_COMPILER_DIR_REL)/$(GHC_PROG)\" (\"-B$(TOP_ABS)\":\"-fhardwire-lib-paths\":args) >>= exitWith" >> $@
+GHC_PATH=$(TOP_ABS)/$(GHC_COMPILER_DIR_REL)/$(GHC_PROG)
-$(INPLACE_PROG): $(INPLACE_HS)
- $(HC) --make $< -o $@
+$(INPLACE_PROG): $(INPLACE_C)
+ $(HC) -cpp -optc-DGHC_PATH=\"$(GHC_PATH)\" -optc-DTOP_ABS=\"$(TOP_ABS)\" $< -o $@
all :: $(INPLACE_PROG)
-CLEAN_FILES += $(INPLACE_HS) $(INPLACE_PROG)
+CLEAN_FILES += $(INPLACE_PROG)
ifeq "$(stage)" "1"
ghc-inplace : $(INPLACE_PROG)
diff --git a/compiler/ghc-inplace.c b/compiler/ghc-inplace.c
new file mode 100644
index 0000000000..abedefe3cb
--- /dev/null
+++ b/compiler/ghc-inplace.c
@@ -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;
+}