From: simonmar Date: Mon, 17 Jul 2000 09:02:18 +0000 (+0000) Subject: [project @ 2000-07-17 09:02:18 by simonmar] X-Git-Tag: Approximately_9120_patches~3998 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=25a3f52337555261c9e54260f2fc319883ae770a;p=ghc-hetmet.git [project @ 2000-07-17 09:02:18 by simonmar] accept '-fvia-c' as an alternative capitalisation for '-fvia-C' (the old driver used to do this, and it's documented in the Users' Guide) --- diff --git a/ghc/driver/Main.hs b/ghc/driver/Main.hs index b14e488..39e61eb 100644 --- a/ghc/driver/Main.hs +++ b/ghc/driver/Main.hs @@ -1854,6 +1854,7 @@ opts = , ( "fasm" , OptPrefix (\_ -> writeIORef hsc_lang HscAsm) ) + , ( "fvia-c" , NoArg (writeIORef hsc_lang HscC) ) , ( "fvia-C" , NoArg (writeIORef hsc_lang HscC) ) , ( "fno-asm-mangling" , NoArg (writeIORef do_asm_mangling False) )