From ab27a3115540ebffb15a470e000965498620cc07 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Mon, 10 Jul 2006 08:15:22 +0000 Subject: [PATCH] re-add -fvia-C There are still some fixes required to get the threaded RTS compilable with the NCG, and apparently there are problems on 32-bit archs too. --- rts/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rts/Makefile b/rts/Makefile index ff7d82a..65c2c22 100644 --- a/rts/Makefile +++ b/rts/Makefile @@ -325,6 +325,9 @@ GC_HC_OPTS += -optc-O3 # upd_evacee() assigments get moved before the object copy. SRC_CC_OPTS += -fno-strict-aliasing +# Cmm must be compiled via-C for now, because the NCG can't handle loops +SRC_HC_OPTS += -fvia-C + # We *want* type-checking of hand-written cmm. SRC_HC_OPTS += -dcmm-lint -- 1.7.10.4