summaryrefslogtreecommitdiff
path: root/utils/mkUserGuidePart/Options/PhasePrograms.hs
diff options
context:
space:
mode:
authorBen Gamari <bgamari.foss@gmail.com>2017-08-24 12:49:06 -0400
committerBen Gamari <ben@smart-cactus.org>2017-08-25 17:23:49 -0400
commit8f19c65c66e38709a8acba8f86015053d2c04126 (patch)
tree23896a094ccdccd4f9531afc79ae2921ed382421 /utils/mkUserGuidePart/Options/PhasePrograms.hs
parent76e59a270118080d61e0c272011d318c68790951 (diff)
downloadhaskell-8f19c65c66e38709a8acba8f86015053d2c04126.tar.gz
Rip out mkUserGuidePart
Reviewers: austin, hvr Subscribers: rwbarton, thomie, erikd Differential Revision: https://phabricator.haskell.org/D3886
Diffstat (limited to 'utils/mkUserGuidePart/Options/PhasePrograms.hs')
-rw-r--r--utils/mkUserGuidePart/Options/PhasePrograms.hs58
1 files changed, 0 insertions, 58 deletions
diff --git a/utils/mkUserGuidePart/Options/PhasePrograms.hs b/utils/mkUserGuidePart/Options/PhasePrograms.hs
deleted file mode 100644
index 9e13fb8b26..0000000000
--- a/utils/mkUserGuidePart/Options/PhasePrograms.hs
+++ /dev/null
@@ -1,58 +0,0 @@
-module Options.PhasePrograms where
-
-import Types
-
-phaseProgramsOptions :: [Flag]
-phaseProgramsOptions =
- [ flag { flagName = "-pgmL ⟨cmd⟩"
- , flagDescription = "Use ⟨cmd⟩ as the literate pre-processor"
- , flagType = DynamicFlag
- }
- , flag { flagName = "-pgmP ⟨cmd⟩"
- , flagDescription =
- "Use ⟨cmd⟩ as the C pre-processor (with ``-cpp`` only)"
- , flagType = DynamicFlag
- }
- , flag { flagName = "-pgmc ⟨cmd⟩"
- , flagDescription = "Use ⟨cmd⟩ as the C compiler"
- , flagType = DynamicFlag
- }
- , flag { flagName = "-pgmlo ⟨cmd⟩"
- , flagDescription = "Use ⟨cmd⟩ as the LLVM optimiser"
- , flagType = DynamicFlag
- }
- , flag { flagName = "-pgmlc ⟨cmd⟩"
- , flagDescription = "Use ⟨cmd⟩ as the LLVM compiler"
- , flagType = DynamicFlag
- }
- , flag { flagName = "-pgms ⟨cmd⟩"
- , flagDescription = "Use ⟨cmd⟩ as the splitter"
- , flagType = DynamicFlag
- }
- , flag { flagName = "-pgma ⟨cmd⟩"
- , flagDescription = "Use ⟨cmd⟩ as the assembler"
- , flagType = DynamicFlag
- }
- , flag { flagName = "-pgml ⟨cmd⟩"
- , flagDescription = "Use ⟨cmd⟩ as the linker"
- , flagType = DynamicFlag
- }
- , flag { flagName = "-pgmdll ⟨cmd⟩"
- , flagDescription = "Use ⟨cmd⟩ as the DLL generator"
- , flagType = DynamicFlag
- }
- , flag { flagName = "-pgmF ⟨cmd⟩"
- , flagDescription = "Use ⟨cmd⟩ as the pre-processor (with ``-F`` only)"
- , flagType = DynamicFlag
- }
- , flag { flagName = "-pgmwindres ⟨cmd⟩"
- , flagDescription =
- "Use ⟨cmd⟩ as the program for embedding manifests on Windows."
- , flagType = DynamicFlag
- }
- , flag { flagName = "-pgmlibtool ⟨cmd⟩"
- , flagDescription =
- "Use ⟨cmd⟩ as the command for libtool (with ``-staticlib`` only)."
- , flagType = DynamicFlag
- }
- ]