summaryrefslogtreecommitdiff
path: root/utils/runghc
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2007-08-19 00:04:36 +0000
committerIan Lynagh <igloo@earth.li>2007-08-19 00:04:36 +0000
commit4dc5598c02fcdd00b3f9f3f13421b489bafe178f (patch)
treedc69f6e51e02e37dc80a2afd036f2529cbd9c1c9 /utils/runghc
parent764018106c4b9f63edf637c077a50751da68bb5f (diff)
downloadhaskell-4dc5598c02fcdd00b3f9f3f13421b489bafe178f.tar.gz
Improve runghc's argument handling
Diffstat (limited to 'utils/runghc')
-rw-r--r--utils/runghc/runghc.hs39
1 files changed, 29 insertions, 10 deletions
diff --git a/utils/runghc/runghc.hs b/utils/runghc/runghc.hs
index a55fdca07d..707dc62be1 100644
--- a/utils/runghc/runghc.hs
+++ b/utils/runghc/runghc.hs
@@ -39,20 +39,27 @@ import System.Directory ( findExecutable )
main :: IO ()
main = do
args <- getArgs
- case args of
- "-f" : ghc : args' -> doIt ghc args'
- ('-' : 'f' : ghc) : args' -> doIt (dropWhile isSpace ghc) args'
- _ -> do
+ case getGhcLoc args of
+ (Just ghc, args') -> doIt ghc args'
+ (Nothing, args') -> do
mb_ghc <- findExecutable "ghc"
case mb_ghc of
Nothing -> dieProg ("cannot find ghc")
- Just ghc -> doIt ghc args
+ Just ghc -> doIt ghc args'
+
+getGhcLoc :: [String] -> (Maybe FilePath, [String])
+getGhcLoc ("-f" : ghc : args) = (Just ghc, args)
+getGhcLoc (('-' : 'f' : ghc) : args) = (Just ghc, args)
+-- If you need the first GHC flag to be a -f flag then you can pass --
+-- first
+getGhcLoc ("--" : args) = (Nothing, args)
+getGhcLoc args = (Nothing, args)
doIt :: String -> [String] -> IO ()
doIt ghc args = do
- let (ghc_args, rest) = break notArg args
+ let (ghc_args, rest) = getGhcArgs args
case rest of
- [] -> dieProg "syntax: runghc [-f GHCPATH] [GHC-ARGS] FILE ARG..."
+ [] -> dieProg usage
filename : prog_args -> do
let expr = "System.Environment.withProgName " ++ show filename ++
" (System.Environment.withArgs " ++ show prog_args ++
@@ -72,9 +79,18 @@ doIt ghc args = do
-- of the IO in order to show it (see #1200).
exitWith res
-notArg :: String -> Bool
-notArg ('-':_) = False
-notArg _ = True
+getGhcArgs :: [String] -> ([String], [String])
+getGhcArgs args = case break pastArgs args of
+ (xs, "--":ys) -> (xs, ys)
+ (xs, ys) -> (xs, ys)
+
+pastArgs :: String -> Bool
+-- You can use -- to mark the end of the flags, in caes you need to use
+-- a file called -foo.hs for some reason. You almost certainly shouldn't,
+-- though.
+pastArgs "--" = True
+pastArgs ('-':_) = False
+pastArgs _ = True
dieProg :: String -> IO a
dieProg msg = do
@@ -82,3 +98,6 @@ dieProg msg = do
hPutStrLn stderr (p ++ ": " ++ msg)
exitWith (ExitFailure 1)
+usage :: String
+usage = "syntax: runghc [-f GHC-PATH | --] [GHC-ARGS] [--] FILE ARG..."
+