From d8d6078b7c6abf84cd8ead3f776fccf8ed74d177 Mon Sep 17 00:00:00 2001 From: qrczak Date: Fri, 18 Aug 2000 06:42:37 +0000 Subject: [PATCH] [project @ 2000-08-18 06:42:37 by qrczak] Oops, #include reordering does not work if -#include refers to names from Stg.h. Changes reverted. The original problem requires -optc-Dfoo workaround. --- ghc/driver/Main.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/driver/Main.hs b/ghc/driver/Main.hs index 71e0e67..a5e3c82f 100644 --- a/ghc/driver/Main.hs +++ b/ghc/driver/Main.hs @@ -1,6 +1,6 @@ {-# OPTIONS -W #-} ----------------------------------------------------------------------------- --- $Id: Main.hs,v 1.54 2000/08/18 04:04:48 qrczak Exp $ +-- $Id: Main.hs,v 1.55 2000/08/18 06:42:37 qrczak Exp $ -- -- GHC Driver program -- @@ -1828,7 +1828,7 @@ run_phase cc_phase _basename _suff input_fn output_fn cmdline_includes <- readState cmdline_hc_includes -- -#include options let cc_injects | hcc = unlines (map mk_include - (reverse cmdline_includes ++ c_includes)) + (c_includes ++ reverse cmdline_includes)) | otherwise = "" mk_include h_file = case h_file of -- 1.7.10.4