diff options
author | ccatalfo <foxnorth@gmail.com> | 2014-03-11 22:11:11 -0400 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-03-21 12:40:18 -0500 |
commit | 99ef27913dbe55fa57891bbf97d131e0933733e3 (patch) | |
tree | 624652122f5d96d375dc8ce8791a9168e38883b7 /driver | |
parent | 7a1c85113dd082153cc07f4792216beaf34daeeb (diff) | |
download | haskell-99ef27913dbe55fa57891bbf97d131e0933733e3.tar.gz |
Update ghc --help references to --make and a.out (fixes #8600)
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'driver')
-rw-r--r-- | driver/ghc-usage.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/ghc-usage.txt b/driver/ghc-usage.txt index 239b4540d8..9de4090bc4 100644 --- a/driver/ghc-usage.txt +++ b/driver/ghc-usage.txt @@ -5,12 +5,12 @@ Usage: To compile and link a complete Haskell program, run the compiler like so: - $$ --make Main + $$ Main where the module Main is in a file named Main.hs (or Main.lhs) in the current directory. The other modules in the program will be located and compiled automatically, and the linked program will be placed in -the file `a.out' (or `Main.exe' on Windows). +the file `Main' (or `Main.exe' on Windows). Alternatively, $$ can be used to compile files individually. Each input file is guided through (some of the) possible phases of a |