From 25a3f52337555261c9e54260f2fc319883ae770a Mon Sep 17 00:00:00 2001 From: simonmar <unknown> Date: Mon, 17 Jul 2000 09:02:18 +0000 Subject: [PATCH] [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) --- ghc/driver/Main.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/ghc/driver/Main.hs b/ghc/driver/Main.hs index b14e4885c48c..39e61eb2ab97 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) ) -- GitLab