From: Simon Marlow Date: Sun, 2 Aug 2009 19:05:35 +0000 (+0000) Subject: Deprecate the -#include flag X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=d787ad2f38cf4ee5564b30ebf0ccf2ccd8ccd38b Deprecate the -#include flag --- diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index 0809d04..a1ae15f 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -1241,7 +1241,8 @@ dynamic_flags = [ Flag "n" (NoArg (setDynFlag Opt_DryRun)) Supported , Flag "cpp" (NoArg (setDynFlag Opt_Cpp)) Supported , Flag "F" (NoArg (setDynFlag Opt_Pp)) Supported - , Flag "#include" (HasArg (addCmdlineHCInclude)) Supported + , Flag "#include" (HasArg (addCmdlineHCInclude)) + (Deprecated "No longer has any effect") , Flag "v" (OptIntSuffix setVerbosity) Supported ------- Specific phases --------------------------------------------