6. Using GHC¶
- 6.1. Using GHC
- 6.2. Warnings and sanity-checking
- 6.3. Optimisation (code improvement)
- 6.4. Using Concurrent Haskell
- 6.5. Using SMP parallelism
- 6.6. Flag reference
- 6.6.1. Verbosity options
- 6.6.2. Alternative modes of operation
- 6.6.3. Which phases to run
- 6.6.4. Redirecting output
- 6.6.5. Keeping intermediate files
- 6.6.6. Temporary files
- 6.6.7. Finding imports
- 6.6.8. Interface file options
- 6.6.9. Recompilation checking
- 6.6.10. Interactive-mode options
- 6.6.11. Packages
- 6.6.12. Language options
- 6.6.13. Warnings
- 6.6.14. Optimisation levels
- 6.6.15. Individual optimisations
- 6.6.16. Profiling options
- 6.6.17. Program coverage options
- 6.6.18. C pre-processor options
- 6.6.19. Code generation options
- 6.6.20. Linking options
- 6.6.21. Plugin options
- 6.6.22. Replacing phases
- 6.6.23. Forcing options to particular phases
- 6.6.24. Platform-specific options
- 6.6.25. Compiler debugging options
- 6.6.26. Miscellaneous compiler options
- 6.7. Running a compiled program
- 6.7.1. Setting RTS options
- 6.7.2. Miscellaneous RTS options
- 6.7.3. RTS options to control the garbage collector
- 6.7.4. RTS options to produce runtime statistics
- 6.7.5. RTS options for concurrency and parallelism
- 6.7.6. RTS options for profiling
- 6.7.7. Tracing
- 6.7.8. RTS options for hackers, debuggers, and over-interested souls
- 6.7.9. Getting information about the RTS
- 6.8. Filenames and separate compilation
- 6.8.1. Haskell source files
- 6.8.2. Output files
- 6.8.3. The search path
- 6.8.4. Redirecting the compilation output(s)
- 6.8.5. Keeping Intermediate Files
- 6.8.6. Redirecting temporary files
- 6.8.7. Other options related to interface files
- 6.8.8. The recompilation checker
- 6.8.9. How to compile mutually recursive modules
- 6.8.10. Module signatures
- 6.8.11. Using
make
- 6.8.12. Dependency generation
- 6.8.13. Orphan modules and instance declarations
- 6.9. Packages
- 6.9.1. Using Packages
- 6.9.2. The
main
package - 6.9.3. Consequences of packages for the Haskell language
- 6.9.4. Thinning and renaming modules
- 6.9.5. Package Databases
- 6.9.6. Installed package IDs, dependencies, and broken packages
- 6.9.7. Package management (the
ghc-pkg
command) - 6.9.8. Building a package from Haskell source
- 6.9.9.
InstalledPackageInfo
: a package specification
- 6.10. GHC Backends
- 6.11. Options related to a particular phase
- 6.12. Using shared libraries
- 6.13. Debugging the compiler