annotate runtime/autoload/haskellcomplete.vim @ 19750:aa674de6d813 v8.2.0431

patch 8.2.0431: some compilers don't support using e for Esc Commit: https://github.com/vim/vim/commit/56ba21a156c723d92a1929e2c500be7295efb0a8 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Mar 23 19:17:29 2020 +0100 patch 8.2.0431: some compilers don't support using \e for Esc Problem: Some compilers don't support using \e for Esc. (Yegappan Lakshmanan) Solution: use \033 instead.
author Bram Moolenaar <Bram@vim.org>
date Mon, 23 Mar 2020 19:30:04 +0100
parents 8ac85adee561
children 11b656e74444
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14637
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 " Vim completion script
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2 " Language: Haskell
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3 " Maintainer: Daniel Campoverde <alx@sillybytes.net>
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
4 " URL: https://github.com/alx741/haskellcomplete.vim
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
5 " Last Change: 2019 May 14
14637
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
6
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
7 " Usage: setlocal omnifunc=haskellcomplete#Complete
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
8
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
9
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
10 " Language extensions from:
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
11 " https://hackage.haskell.org/package/Cabal-2.2.0.1/docs/Language-Haskell-Extension.html
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
12 "
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
13 " GHC options from:
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
14 " https://downloads.haskell.org/~ghc/7.0.4/docs/html/users_guide/flag-reference.html
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
15 " https://downloads.haskell.org/~ghc/8.4.3/docs/html/users_guide/flags.html
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
16
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
17
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
18
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
19 " Available completions
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
20 let b:completingLangExtension = 0
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
21 let b:completingOptionsGHC = 0
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
22 let b:completingModule = 0
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
23
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
24 function! haskellcomplete#Complete(findstart, base)
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
25 if a:findstart
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
26 let l:line = getline('.')
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
27 let l:start = col('.') - 1
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
28
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
29 if l:line =~ '^\s*{-#\s*LANGUAGE.*'
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
30 while l:start >= 0 && l:line[l:start - 1] !~ '[, ]'
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
31 let l:start -= 1
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
32 endwhile
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
33 let b:completingLangExtension = 1
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
34 return l:start
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
35
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
36 elseif l:line =~ '^\s*{-#\s*OPTIONS_GHC.*'
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
37 while l:start >= 0 && l:line[l:start - 1] !~ '[, ]'
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
38 let l:start -= 1
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
39 endwhile
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
40 let b:completingOptionsGHC = 1
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
41 return l:start
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
42
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
43 elseif l:line =~ '^\s*import\s*.*'
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
44 while l:start >= 0 && l:line[l:start - 1] !~ ' '
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
45 let l:start -= 1
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
46 endwhile
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
47 let b:completingModule = 1
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
48 return l:start
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
49
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
50 endif
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
51
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
52 return start
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
53 endif
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
54
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
55 if b:completingLangExtension
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
56 if a:base ==? ""
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
57 " Return all posible Lang extensions
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
58 return s:langExtensions
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
59 else
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
60 let l:matches = []
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
61 for extension in s:langExtensions
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
62 if extension =~? '^' . a:base
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
63 call add(l:matches, extension)
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
64 endif
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
65 endfor
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
66 let b:completingLangExtension = 0
14637
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
67 return l:matches
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
68 endif
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
69
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
70
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
71 elseif b:completingOptionsGHC
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
72 if a:base ==? ""
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
73 " Return all posible GHC options
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
74 return s:optionsGHC
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
75 else
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
76 let l:matches = []
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
77 for flag in s:optionsGHC
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
78 if flag =~? '^' . a:base
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
79 call add(l:matches, flag)
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
80 endif
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
81 endfor
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
82 let b:completingOptionsGHC = 0
14637
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
83 return l:matches
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
84 endif
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
85
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
86
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
87 elseif b:completingModule
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
88 if a:base ==? ""
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
89 " Return all posible modules
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
90 return s:commonModules
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
91 else
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
92 let l:matches = []
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
93 for module in s:commonModules
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
94 if module =~? '^' . a:base
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
95 call add(l:matches, module)
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
96 endif
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
97 endfor
18053
8ac85adee561 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 14637
diff changeset
98 let b:completingModule = 0
14637
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
99 return l:matches
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
100 endif
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
101
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
102 endif
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
103
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
104 return -1
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
105 endfunction
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
106
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
107 let s:langExtensions =
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
108 \ [ "OverlappingInstances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
109 \ , "UndecidableInstances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
110 \ , "IncoherentInstances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
111 \ , "DoRec"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
112 \ , "RecursiveDo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
113 \ , "ParallelListComp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
114 \ , "MultiParamTypeClasses"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
115 \ , "MonomorphismRestriction"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
116 \ , "FunctionalDependencies"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
117 \ , "Rank2Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
118 \ , "RankNTypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
119 \ , "PolymorphicComponents"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
120 \ , "ExistentialQuantification"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
121 \ , "ScopedTypeVariables"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
122 \ , "PatternSignatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
123 \ , "ImplicitParams"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
124 \ , "FlexibleContexts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
125 \ , "FlexibleInstances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
126 \ , "EmptyDataDecls"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
127 \ , "CPP"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
128 \ , "KindSignatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
129 \ , "BangPatterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
130 \ , "TypeSynonymInstances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
131 \ , "TemplateHaskell"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
132 \ , "ForeignFunctionInterface"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
133 \ , "Arrows"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
134 \ , "Generics"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
135 \ , "ImplicitPrelude"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
136 \ , "NamedFieldPuns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
137 \ , "PatternGuards"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
138 \ , "GeneralizedNewtypeDeriving"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
139 \ , "ExtensibleRecords"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
140 \ , "RestrictedTypeSynonyms"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
141 \ , "HereDocuments"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
142 \ , "MagicHash"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
143 \ , "TypeFamilies"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
144 \ , "StandaloneDeriving"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
145 \ , "UnicodeSyntax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
146 \ , "UnliftedFFITypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
147 \ , "InterruptibleFFI"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
148 \ , "CApiFFI"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
149 \ , "LiberalTypeSynonyms"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
150 \ , "TypeOperators"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
151 \ , "RecordWildCards"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
152 \ , "RecordPuns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
153 \ , "DisambiguateRecordFields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
154 \ , "TraditionalRecordSyntax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
155 \ , "OverloadedStrings"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
156 \ , "GADTs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
157 \ , "GADTSyntax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
158 \ , "MonoPatBinds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
159 \ , "RelaxedPolyRec"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
160 \ , "ExtendedDefaultRules"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
161 \ , "UnboxedTuples"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
162 \ , "DeriveDataTypeable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
163 \ , "DeriveGeneric"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
164 \ , "DefaultSignatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
165 \ , "InstanceSigs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
166 \ , "ConstrainedClassMethods"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
167 \ , "PackageImports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
168 \ , "ImpredicativeTypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
169 \ , "NewQualifiedOperators"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
170 \ , "PostfixOperators"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
171 \ , "QuasiQuotes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
172 \ , "TransformListComp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
173 \ , "MonadComprehensions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
174 \ , "ViewPatterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
175 \ , "XmlSyntax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
176 \ , "RegularPatterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
177 \ , "TupleSections"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
178 \ , "GHCForeignImportPrim"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
179 \ , "NPlusKPatterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
180 \ , "DoAndIfThenElse"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
181 \ , "MultiWayIf"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
182 \ , "LambdaCase"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
183 \ , "RebindableSyntax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
184 \ , "ExplicitForAll"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
185 \ , "DatatypeContexts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
186 \ , "MonoLocalBinds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
187 \ , "DeriveFunctor"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
188 \ , "DeriveTraversable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
189 \ , "DeriveFoldable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
190 \ , "NondecreasingIndentation"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
191 \ , "SafeImports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
192 \ , "Safe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
193 \ , "Trustworthy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
194 \ , "Unsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
195 \ , "ConstraintKinds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
196 \ , "PolyKinds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
197 \ , "DataKinds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
198 \ , "ParallelArrays"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
199 \ , "RoleAnnotations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
200 \ , "OverloadedLists"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
201 \ , "EmptyCase"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
202 \ , "AutoDeriveTypeable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
203 \ , "NegativeLiterals"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
204 \ , "BinaryLiterals"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
205 \ , "NumDecimals"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
206 \ , "NullaryTypeClasses"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
207 \ , "ExplicitNamespaces"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
208 \ , "AllowAmbiguousTypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
209 \ , "JavaScriptFFI"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
210 \ , "PatternSynonyms"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
211 \ , "PartialTypeSignatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
212 \ , "NamedWildCards"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
213 \ , "DeriveAnyClass"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
214 \ , "DeriveLift"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
215 \ , "StaticPointers"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
216 \ , "StrictData"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
217 \ , "Strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
218 \ , "ApplicativeDo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
219 \ , "DuplicateRecordFields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
220 \ , "TypeApplications"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
221 \ , "TypeInType"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
222 \ , "UndecidableSuperClasses"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
223 \ , "MonadFailDesugaring"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
224 \ , "TemplateHaskellQuotes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
225 \ , "OverloadedLabels"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
226 \ , "TypeFamilyDependencies"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
227 \ , "DerivingStrategies"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
228 \ , "UnboxedSums"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
229 \ , "HexFloatLiterals"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
230 \ ]
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
231
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
232 let s:optionsGHC =
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
233 \ [ "-n"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
234 \ , "-v"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
235 \ , "-vn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
236 \ , "-c"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
237 \ , "-hcsuf"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
238 \ , "-hidir"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
239 \ , "-hisuf"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
240 \ , "-o"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
241 \ , "-odir"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
242 \ , "-ohi"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
243 \ , "-osuf"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
244 \ , "-stubdir"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
245 \ , "-outputdir"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
246 \ , "-keep-hc-file"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
247 \ , "-keep-llvm-file"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
248 \ , "-keep-s-file"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
249 \ , "-keep-raw-s-file"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
250 \ , "-keep-tmp-files"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
251 \ , "-tmpdir"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
252 \ , "-ddump-hi"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
253 \ , "-ddump-hi-diffs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
254 \ , "-ddump-minimal-imports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
255 \ , "-fforce-recomp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
256 \ , "-fno-force-recomp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
257 \ , "-fbreak-on-exception"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
258 \ , "-fno-break-on-exception"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
259 \ , "-fbreak-on-error"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
260 \ , "-fno-break-on-error"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
261 \ , "-fprint-evld-with-show"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
262 \ , "-fno-print-evld-with-show"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
263 \ , "-fprint-bind-result"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
264 \ , "-fno-print-bind-result"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
265 \ , "-fno-print-bind-contents"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
266 \ , "-fno-implicit-import-qualified"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
267 \ , "-package-name"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
268 \ , "-no-auto-link-packages"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
269 \ , "-fglasgow-exts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
270 \ , "-fno-glasgow-exts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
271 \ , "-XOverlappingInstances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
272 \ , "-XNoOverlappingInstances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
273 \ , "-XIncoherentInstances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
274 \ , "-XNoIncoherentInstances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
275 \ , "-XUndecidableInstances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
276 \ , "-XNoUndecidableInstances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
277 \ , "-fcontext-stack=Nn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
278 \ , "-XArrows"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
279 \ , "-XNoArrows"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
280 \ , "-XDisambiguateRecordFields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
281 \ , "-XNoDisambiguateRecordFields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
282 \ , "-XForeignFunctionInterface"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
283 \ , "-XNoForeignFunctionInterface"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
284 \ , "-XGenerics"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
285 \ , "-XNoGenerics"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
286 \ , "-XImplicitParams"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
287 \ , "-XNoImplicitParams"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
288 \ , "-firrefutable-tuples"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
289 \ , "-fno-irrefutable-tuples"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
290 \ , "-XNoImplicitPrelude"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
291 \ , "-XImplicitPrelude"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
292 \ , "-XRebindableSyntax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
293 \ , "-XNoRebindableSyntax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
294 \ , "-XNoMonomorphismRestriction"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
295 \ , "-XMonomorphismRrestriction"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
296 \ , "-XNoNPlusKPatterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
297 \ , "-XNPlusKPatterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
298 \ , "-XNoMonoPatBinds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
299 \ , "-XMonoPatBinds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
300 \ , "-XRelaxedPolyRec"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
301 \ , "-XNoRelaxedPolyRec"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
302 \ , "-XExtendedDefaultRules"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
303 \ , "-XNoExtendedDefaultRules"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
304 \ , "-XOverloadedStrings"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
305 \ , "-XNoOverloadedStrings"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
306 \ , "-XGADTs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
307 \ , "-XNoGADTs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
308 \ , "-XTypeFamilies"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
309 \ , "-XNoTypeFamilies"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
310 \ , "-XScopedTypeVariables"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
311 \ , "-XNoScopedTypeVariables"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
312 \ , "-XMonoLocalBinds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
313 \ , "-XNoMonoLocalBinds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
314 \ , "-XTemplateHaskell"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
315 \ , "-XNoTemplateHaskell"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
316 \ , "-XQuasiQuotes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
317 \ , "-XNoQuasiQuotes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
318 \ , "-XBangPatterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
319 \ , "-XNoBangPatterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
320 \ , "-XCPP"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
321 \ , "-XNoCPP"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
322 \ , "-XPatternGuards"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
323 \ , "-XNoPatternGuards"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
324 \ , "-XViewPatterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
325 \ , "-XNoViewPatterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
326 \ , "-XUnicodeSyntax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
327 \ , "-XNoUnicodeSyntax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
328 \ , "-XMagicHash"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
329 \ , "-XNoMagicHash"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
330 \ , "-XNewQualifiedOperators"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
331 \ , "-XNoNewQualifiedOperators"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
332 \ , "-XExplicitForALl"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
333 \ , "-XNoExplicitForAll"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
334 \ , "-XPolymorphicComponents"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
335 \ , "-XNoPolymorphicComponents"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
336 \ , "-XRank2Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
337 \ , "-XNoRank2Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
338 \ , "-XRankNTypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
339 \ , "-XNoRankNTypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
340 \ , "-XImpredicativeTypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
341 \ , "-XNoImpredicativeTypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
342 \ , "-XExistentialQuantification"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
343 \ , "-XNoExistentialQuantification"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
344 \ , "-XKindSignatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
345 \ , "-XNoKindSignatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
346 \ , "-XEmptyDataDecls"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
347 \ , "-XNoEmptyDataDecls"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
348 \ , "-XParallelListComp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
349 \ , "-XNoParallelListComp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
350 \ , "-XTransformListComp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
351 \ , "-XNoTransformListComp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
352 \ , "-XUnliftedFFITypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
353 \ , "-XNoUnliftedFFITypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
354 \ , "-XLiberalTypeSynonyms"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
355 \ , "-XNoLiberalTypeSynonyms"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
356 \ , "-XTypeOperators"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
357 \ , "-XNoTypeOperators"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
358 \ , "-XDoRec"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
359 \ , "-XNoDoRec"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
360 \ , "-XRecursiveDo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
361 \ , "-XNoRecursiveDo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
362 \ , "-XPArr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
363 \ , "-XNoPArr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
364 \ , "-XRecordWildCards"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
365 \ , "-XNoRecordWildCards"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
366 \ , "-XNamedFieldPuns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
367 \ , "-XNoNamedFieldPuns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
368 \ , "-XDisambiguateRecordFields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
369 \ , "-XNoDisambiguateRecordFields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
370 \ , "-XUnboxedTuples"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
371 \ , "-XNoUnboxedTuples"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
372 \ , "-XStandaloneDeriving"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
373 \ , "-XNoStandaloneDeriving"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
374 \ , "-XDeriveDataTypeable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
375 \ , "-XNoDeriveDataTypeable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
376 \ , "-XGeneralizedNewtypeDeriving"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
377 \ , "-XNoGeneralizedNewtypeDeriving"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
378 \ , "-XTypeSynonymInstances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
379 \ , "-XNoTypeSynonymInstances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
380 \ , "-XFlexibleContexts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
381 \ , "-XNoFlexibleContexts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
382 \ , "-XFlexibleInstances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
383 \ , "-XNoFlexibleInstances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
384 \ , "-XConstrainedClassMethods"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
385 \ , "-XNoConstrainedClassMethods"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
386 \ , "-XMultiParamTypeClasses"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
387 \ , "-XNoMultiParamTypeClasses"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
388 \ , "-XFunctionalDependencies"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
389 \ , "-XNoFunctionalDependencies"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
390 \ , "-XPackageImports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
391 \ , "-XNoPackageImports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
392 \ , "-W"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
393 \ , "-w"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
394 \ , "-w"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
395 \ , "-Wall"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
396 \ , "-w"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
397 \ , "-Werror"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
398 \ , "-Wwarn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
399 \ , "-Wwarn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
400 \ , "-Werror"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
401 \ , "-fwarn-unrecognised-pragmas"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
402 \ , "-fno-warn-unrecognised-pragmas"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
403 \ , "-fwarn-warnings-deprecations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
404 \ , "-fno-warn-warnings-deprecations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
405 \ , "-fwarn-deprecated-flags"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
406 \ , "-fno-warn-deprecated-flags"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
407 \ , "-fwarn-duplicate-exports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
408 \ , "-fno-warn-duplicate-exports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
409 \ , "-fwarn-hi-shadowing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
410 \ , "-fno-warn-hi-shadowing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
411 \ , "-fwarn-implicit-prelude"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
412 \ , "-fno-warn-implicit-prelude"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
413 \ , "-fwarn-incomplete-patterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
414 \ , "-fno-warn-incomplete-patterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
415 \ , "-fwarn-incomplete-record-updates"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
416 \ , "-fno-warn-incomplete-record-updates"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
417 \ , "-fwarn-lazy-unlifted-bindings"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
418 \ , "-fno-warn-lazy-unlifted-bindings"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
419 \ , "-fwarn-missing-fields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
420 \ , "-fno-warn-missing-fields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
421 \ , "-fwarn-missing-import-lists"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
422 \ , "-fnowarn-missing-import-lists"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
423 \ , "-fwarn-missing-methods"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
424 \ , "-fno-warn-missing-methods"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
425 \ , "-fwarn-missing-signatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
426 \ , "-fno-warn-missing-signatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
427 \ , "-fwarn-name-shadowing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
428 \ , "-fno-warn-name-shadowing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
429 \ , "-fwarn-orphans"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
430 \ , "-fno-warn-orphans"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
431 \ , "-fwarn-overlapping-patterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
432 \ , "-fno-warn-overlapping-patterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
433 \ , "-fwarn-tabs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
434 \ , "-fno-warn-tabs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
435 \ , "-fwarn-type-defaults"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
436 \ , "-fno-warn-type-defaults"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
437 \ , "-fwarn-monomorphism-restriction"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
438 \ , "-fno-warn-monomorphism-restriction"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
439 \ , "-fwarn-unused-binds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
440 \ , "-fno-warn-unused-binds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
441 \ , "-fwarn-unused-imports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
442 \ , "-fno-warn-unused-imports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
443 \ , "-fwarn-unused-matches"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
444 \ , "-fno-warn-unused-matches"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
445 \ , "-fwarn-unused-do-bind"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
446 \ , "-fno-warn-unused-do-bind"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
447 \ , "-fwarn-wrong-do-bind"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
448 \ , "-fno-warn-wrong-do-bind"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
449 \ , "-O"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
450 \ , "-O0"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
451 \ , "-On"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
452 \ , "-O0"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
453 \ , "-fcase-merge"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
454 \ , "-fno-case-merge"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
455 \ , "-fmethod-sharing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
456 \ , "-fno-method-sharing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
457 \ , "-fdo-eta-reduction"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
458 \ , "-fno-do-eta-reduction"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
459 \ , "-fdo-lambda-eta-expansion"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
460 \ , "-fno-do-lambda-eta-expansion"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
461 \ , "-fexcess-precision"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
462 \ , "-fno-excess-precision"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
463 \ , "-fignore-asserts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
464 \ , "-fno-ignore-asserts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
465 \ , "-fignore-interface-pragmas"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
466 \ , "-fno-ignore-interface-pragmas"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
467 \ , "-fomit-interface-pragmas"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
468 \ , "-fno-omit-interface-pragmas"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
469 \ , "-fsimplifier-phases"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
470 \ , "-fmax-simplifier-iterations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
471 \ , "-fcse"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
472 \ , "-fno-cse"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
473 \ , "-fspecialise"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
474 \ , "-fno-specialise"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
475 \ , "-ffull-laziness"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
476 \ , "-fno-full-laziness"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
477 \ , "-ffloat-in"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
478 \ , "-fno-float-in"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
479 \ , "-fenable-rewrite-rules"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
480 \ , "-fno-enable-rewrite-rules"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
481 \ , "-fstrictness"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
482 \ , "-fno-strictness"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
483 \ , "-fstrictness=before=n"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
484 \ , "-fspec-constr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
485 \ , "-fno-spec-constr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
486 \ , "-fliberate-case"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
487 \ , "-fno-liberate-case"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
488 \ , "-fstatic-argument-transformation"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
489 \ , "-fno-static-argument-transformation"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
490 \ , "-funbox-strict-fields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
491 \ , "-fno-unbox-strict-fields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
492 \ , "-feager-blackholing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
493 \ , "-auto"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
494 \ , "-no-auto"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
495 \ , "-auto-all"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
496 \ , "-no-auto-all"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
497 \ , "-caf-all"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
498 \ , "-no-caf-all"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
499 \ , "-hpcdir"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
500 \ , "-F"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
501 \ , "-cpp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
502 \ , "-Dsymbol[=value]"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
503 \ , "-Usymbol"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
504 \ , "-Usymbol"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
505 \ , "-Idir"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
506 \ , "-fasm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
507 \ , "-fvia-C"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
508 \ , "-fvia-C"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
509 \ , "-fasm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
510 \ , "-fllvm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
511 \ , "-fasm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
512 \ , "-fno-code"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
513 \ , "-fbyte-code"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
514 \ , "-fobject-code"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
515 \ , "-shared"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
516 \ , "-dynamic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
517 \ , "-framework"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
518 \ , "-framework-path"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
519 \ , "-llib"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
520 \ , "-Ldir"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
521 \ , "-main-is"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
522 \ , "--mk-dll"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
523 \ , "-no-hs-main"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
524 \ , "-rtsopts,"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
525 \ , "-with-rtsopts=opts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
526 \ , "-no-link"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
527 \ , "-split-objs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
528 \ , "-fno-gen-manifest"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
529 \ , "-fno-embed-manifest"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
530 \ , "-fno-shared-implib"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
531 \ , "-dylib-install-name"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
532 \ , "-pgmL"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
533 \ , "-pgmP"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
534 \ , "-pgmc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
535 \ , "-pgmm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
536 \ , "-pgms"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
537 \ , "-pgma"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
538 \ , "-pgml"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
539 \ , "-pgmdll"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
540 \ , "-pgmF"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
541 \ , "-pgmwindres"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
542 \ , "-optL"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
543 \ , "-optP"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
544 \ , "-optF"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
545 \ , "-optc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
546 \ , "-optlo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
547 \ , "-optlc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
548 \ , "-optm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
549 \ , "-opta"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
550 \ , "-optl"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
551 \ , "-optdll"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
552 \ , "-optwindres"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
553 \ , "-msse2"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
554 \ , "-monly-[432]-regs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
555 \ , "-fext-core"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
556 \ , "-dcore-lint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
557 \ , "-ddump-asm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
558 \ , "-ddump-bcos"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
559 \ , "-ddump-cmm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
560 \ , "-ddump-cpranal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
561 \ , "-ddump-cse"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
562 \ , "-ddump-deriv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
563 \ , "-ddump-ds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
564 \ , "-ddump-flatC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
565 \ , "-ddump-foreign"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
566 \ , "-ddump-hpc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
567 \ , "-ddump-inlinings"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
568 \ , "-ddump-llvm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
569 \ , "-ddump-occur-anal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
570 \ , "-ddump-opt-cmm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
571 \ , "-ddump-parsed"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
572 \ , "-ddump-prep"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
573 \ , "-ddump-rn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
574 \ , "-ddump-rules"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
575 \ , "-ddump-simpl"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
576 \ , "-ddump-simpl-phases"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
577 \ , "-ddump-simpl-iterations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
578 \ , "-ddump-spec"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
579 \ , "-ddump-splices"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
580 \ , "-ddump-stg"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
581 \ , "-ddump-stranal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
582 \ , "-ddump-tc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
583 \ , "-ddump-types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
584 \ , "-ddump-worker-wrapper"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
585 \ , "-ddump-if-trace"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
586 \ , "-ddump-tc-trace"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
587 \ , "-ddump-rn-trace"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
588 \ , "-ddump-rn-stats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
589 \ , "-ddump-simpl-stats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
590 \ , "-dsource-stats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
591 \ , "-dcmm-lint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
592 \ , "-dstg-lint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
593 \ , "-dstg-stats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
594 \ , "-dverbose-core2core"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
595 \ , "-dverbose-stg2stg"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
596 \ , "-dshow-passes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
597 \ , "-dfaststring-stats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
598 \ , "-fno-asm-mangling"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
599 \ , "-fno-ghci-sandbox"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
600 \ , "-fdiagnostics-color="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
601 \ , "-fdiagnostics-show-caret"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
602 \ , "-fno-diagnostics-show-caret"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
603 \ , "-ferror-spans"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
604 \ , "-fhide-source-paths"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
605 \ , "-fprint-equality-relations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
606 \ , "-fno-print-equality-relations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
607 \ , "-fprint-expanded-synonyms"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
608 \ , "-fno-print-expanded-synonyms"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
609 \ , "-fprint-explicit-coercions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
610 \ , "-fno-print-explicit-coercions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
611 \ , "-fprint-explicit-foralls"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
612 \ , "-fno-print-explicit-foralls"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
613 \ , "-fprint-explicit-kinds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
614 \ , "-fno-print-explicit-kinds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
615 \ , "-fprint-explicit-runtime-rep"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
616 \ , "-fno-print-explicit-runtime-reps"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
617 \ , "-fprint-explicit-runtime-reps"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
618 \ , "-fno-print-explicit-runtime-reps"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
619 \ , "-fprint-potential-instances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
620 \ , "-fno-print-potential-instances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
621 \ , "-fprint-typechecker-elaboration"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
622 \ , "-fno-print-typechecker-elaboration"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
623 \ , "-fprint-unicode-syntax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
624 \ , "-fno-print-unicode-syntax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
625 \ , "-fshow-hole-constraints"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
626 \ , "-Rghc-timing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
627 \ , "-v"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
628 \ , "-v"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
629 \ , "-F"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
630 \ , "-x"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
631 \ , "--exclude-module="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
632 \ , "-ddump-mod-cycles"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
633 \ , "-dep-makefile"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
634 \ , "-dep-suffix"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
635 \ , "-dumpdir"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
636 \ , "-hcsuf"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
637 \ , "-hidir"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
638 \ , "-hisuf"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
639 \ , "-include-pkg-deps"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
640 \ , "-o"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
641 \ , "-odir"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
642 \ , "-ohi"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
643 \ , "-osuf"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
644 \ , "-outputdir"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
645 \ , "-stubdir"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
646 \ , "-keep-hc-file,"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
647 \ , "-keep-hi-files"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
648 \ , "-no-keep-hi-files"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
649 \ , "-keep-llvm-file,"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
650 \ , "-keep-o-files"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
651 \ , "-no-keep-o-files"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
652 \ , "-keep-s-file,"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
653 \ , "-keep-tmp-files"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
654 \ , "-tmpdir"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
655 \ , "-i"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
656 \ , "-i[:]*"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
657 \ , "-ddump-hi"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
658 \ , "-ddump-hi-diffs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
659 \ , "-ddump-minimal-imports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
660 \ , "-fforce-recomp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
661 \ , "-fno-force-recomp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
662 \ , "-fignore-hpc-changes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
663 \ , "-fno-ignore-hpc-changes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
664 \ , "-fignore-optim-changes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
665 \ , "-fno-ignore-optim-changes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
666 \ , "-fbreak-on-error"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
667 \ , "-fno-break-on-error"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
668 \ , "-fbreak-on-exception"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
669 \ , "-fno-break-on-exception"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
670 \ , "-fghci-hist-size="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
671 \ , "-flocal-ghci-history"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
672 \ , "-fno-local-ghci-history"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
673 \ , "-fprint-bind-result"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
674 \ , "-fno-print-bind-result"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
675 \ , "-fshow-loaded-modules"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
676 \ , "-ghci-script"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
677 \ , "-ignore-dot-ghci"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
678 \ , "-interactive-print"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
679 \ , "-clear-package-db"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
680 \ , "-distrust"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
681 \ , "-distrust-all-packages"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
682 \ , "-fpackage-trust"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
683 \ , "-global-package-db"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
684 \ , "-hide-all-packages"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
685 \ , "-hide-package"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
686 \ , "-ignore-package"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
687 \ , "-no-auto-link-packages"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
688 \ , "-no-global-package-db"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
689 \ , "-no-user-package-db"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
690 \ , "-package"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
691 \ , "-package-db"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
692 \ , "-package-env"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
693 \ , "-package-id"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
694 \ , "-this-unit-id"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
695 \ , "-trust"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
696 \ , "-user-package-db"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
697 \ , "-fdefer-out-of-scope-variables"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
698 \ , "-fno-defer-out-of-scope-variables"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
699 \ , "-fdefer-type-errors"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
700 \ , "-fno-defer-type-errors"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
701 \ , "-fdefer-typed-holes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
702 \ , "-fno-defer-typed-holes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
703 \ , "-fhelpful-errors"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
704 \ , "-fno-helpful-errors"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
705 \ , "-fmax-pmcheck-iterations="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
706 \ , "-fshow-warning-groups"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
707 \ , "-fno-show-warning-groups"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
708 \ , "-W"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
709 \ , "-w"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
710 \ , "-w"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
711 \ , "-Wall"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
712 \ , "-w"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
713 \ , "-Wall-missed-specialisations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
714 \ , "-Wno-all-missed-specialisations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
715 \ , "-Wamp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
716 \ , "-Wno-amp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
717 \ , "-Wcompat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
718 \ , "-Wno-compat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
719 \ , "-Wcpp-undef"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
720 \ , "-Wdeferred-out-of-scope-variables"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
721 \ , "-Wno-deferred-out-of-scope-variables"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
722 \ , "-Wdeferred-type-errors"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
723 \ , "-Wno-deferred-type-errors"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
724 \ , "-Wdeprecated-flags"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
725 \ , "-Wno-deprecated-flags"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
726 \ , "-Wdeprecations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
727 \ , "-Wno-deprecations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
728 \ , "-Wdodgy-exports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
729 \ , "-Wno-dodgy-exports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
730 \ , "-Wdodgy-foreign-imports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
731 \ , "-Wno-dodgy-foreign-import"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
732 \ , "-Wdodgy-imports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
733 \ , "-Wno-dodgy-imports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
734 \ , "-Wduplicate-constraints"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
735 \ , "-Wno-duplicate-constraints"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
736 \ , "-Wduplicate-exports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
737 \ , "-Wno-duplicate-exports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
738 \ , "-Wempty-enumerations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
739 \ , "-Wno-empty-enumerations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
740 \ , "-Werror"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
741 \ , "-Wwarn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
742 \ , "-Weverything"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
743 \ , "-Whi-shadowing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
744 \ , "-Wno-hi-shadowing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
745 \ , "-Widentities"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
746 \ , "-Wno-identities"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
747 \ , "-Wimplicit-prelude"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
748 \ , "-Wno-implicit-prelude"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
749 \ , "-Wincomplete-patterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
750 \ , "-Wno-incomplete-patterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
751 \ , "-Wincomplete-record-updates"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
752 \ , "-Wno-incomplete-record-updates"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
753 \ , "-Wincomplete-uni-patterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
754 \ , "-Wno-incomplete-uni-patterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
755 \ , "-Winline-rule-shadowing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
756 \ , "-Wno-inline-rule-shadowing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
757 \ , "-Wmissed-specialisations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
758 \ , "-Wno-missed-specialisations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
759 \ , "-Wmissing-export-lists"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
760 \ , "-fnowarn-missing-export-lists"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
761 \ , "-Wmissing-exported-signatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
762 \ , "-Wno-missing-exported-signatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
763 \ , "-Wmissing-exported-sigs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
764 \ , "-Wno-missing-exported-sigs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
765 \ , "-Wmissing-fields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
766 \ , "-Wno-missing-fields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
767 \ , "-Wmissing-home-modules"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
768 \ , "-Wno-missing-home-modules"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
769 \ , "-Wmissing-import-lists"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
770 \ , "-fnowarn-missing-import-lists"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
771 \ , "-Wmissing-local-signatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
772 \ , "-Wno-missing-local-signatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
773 \ , "-Wmissing-local-sigs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
774 \ , "-Wno-missing-local-sigs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
775 \ , "-Wmissing-methods"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
776 \ , "-Wno-missing-methods"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
777 \ , "-Wmissing-monadfail-instances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
778 \ , "-Wno-missing-monadfail-instances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
779 \ , "-Wmissing-pattern-synonym-signatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
780 \ , "-Wno-missing-pattern-synonym-signatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
781 \ , "-Wmissing-signatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
782 \ , "-Wno-missing-signatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
783 \ , "-Wmonomorphism-restriction"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
784 \ , "-Wno-monomorphism-restriction"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
785 \ , "-Wname-shadowing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
786 \ , "-Wno-name-shadowing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
787 \ , "-Wno-compat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
788 \ , "-Wcompat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
789 \ , "-Wnoncanonical-monad-instances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
790 \ , "-Wno-noncanonical-monad-instances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
791 \ , "-Wnoncanonical-monadfail-instances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
792 \ , "-Wno-noncanonical-monadfail-instances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
793 \ , "-Wnoncanonical-monoid-instances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
794 \ , "-Wno-noncanonical-monoid-instances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
795 \ , "-Worphans"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
796 \ , "-Wno-orphans"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
797 \ , "-Woverflowed-literals"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
798 \ , "-Wno-overflowed-literals"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
799 \ , "-Woverlapping-patterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
800 \ , "-Wno-overlapping-patterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
801 \ , "-Wpartial-fields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
802 \ , "-Wno-partial-fields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
803 \ , "-Wpartial-type-signatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
804 \ , "-Wno-partial-type-signatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
805 \ , "-Wredundant-constraints"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
806 \ , "-Wno-redundant-constraints"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
807 \ , "-Wsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
808 \ , "-Wno-safe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
809 \ , "-Wsemigroup"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
810 \ , "-Wno-semigroup"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
811 \ , "-Wsimplifiable-class-constraints"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
812 \ , "-Wno-overlapping-patterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
813 \ , "-Wtabs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
814 \ , "-Wno-tabs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
815 \ , "-Wtrustworthy-safe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
816 \ , "-Wno-safe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
817 \ , "-Wtype-defaults"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
818 \ , "-Wno-type-defaults"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
819 \ , "-Wtyped-holes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
820 \ , "-Wno-typed-holes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
821 \ , "-Wunbanged-strict-patterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
822 \ , "-Wno-unbanged-strict-patterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
823 \ , "-Wunrecognised-pragmas"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
824 \ , "-Wno-unrecognised-pragmas"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
825 \ , "-Wunrecognised-warning-flags"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
826 \ , "-Wno-unrecognised-warning-flags"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
827 \ , "-Wunsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
828 \ , "-Wno-unsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
829 \ , "-Wunsupported-calling-conventions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
830 \ , "-Wno-unsupported-calling-conventions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
831 \ , "-Wunsupported-llvm-version"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
832 \ , "-Wno-monomorphism-restriction"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
833 \ , "-Wunticked-promoted-constructors"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
834 \ , "-Wno-unticked-promoted-constructors"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
835 \ , "-Wunused-binds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
836 \ , "-Wno-unused-binds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
837 \ , "-Wunused-do-bind"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
838 \ , "-Wno-unused-do-bind"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
839 \ , "-Wunused-foralls"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
840 \ , "-Wno-unused-foralls"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
841 \ , "-Wunused-imports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
842 \ , "-Wno-unused-imports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
843 \ , "-Wunused-local-binds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
844 \ , "-Wno-unused-local-binds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
845 \ , "-Wunused-matches"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
846 \ , "-Wno-unused-matches"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
847 \ , "-Wunused-pattern-binds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
848 \ , "-Wno-unused-pattern-binds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
849 \ , "-Wunused-top-binds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
850 \ , "-Wno-unused-top-binds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
851 \ , "-Wunused-type-patterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
852 \ , "-Wno-unused-type-patterns"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
853 \ , "-Wwarn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
854 \ , "-Werror"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
855 \ , "-Wwarnings-deprecations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
856 \ , "-Wno-warnings-deprecations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
857 \ , "-Wwrong-do-bind"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
858 \ , "-Wno-wrong-do-bind"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
859 \ , "-O,"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
860 \ , "-O0"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
861 \ , "-O0"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
862 \ , "-O2"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
863 \ , "-O0"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
864 \ , "-Odph"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
865 \ , "-fcall-arity"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
866 \ , "-fno-call-arity"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
867 \ , "-fcase-folding"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
868 \ , "-fno-case-folding"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
869 \ , "-fcase-merge"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
870 \ , "-fno-case-merge"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
871 \ , "-fcmm-elim-common-blocks"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
872 \ , "-fno-cmm-elim-common-blocks"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
873 \ , "-fcmm-sink"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
874 \ , "-fno-cmm-sink"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
875 \ , "-fcpr-anal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
876 \ , "-fno-cpr-anal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
877 \ , "-fcross-module-specialise"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
878 \ , "-fno-cross-module-specialise"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
879 \ , "-fcse"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
880 \ , "-fno-cse"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
881 \ , "-fdicts-cheap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
882 \ , "-fno-dicts-cheap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
883 \ , "-fdicts-strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
884 \ , "-fno-dicts-strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
885 \ , "-fdmd-tx-dict-sel"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
886 \ , "-fno-dmd-tx-dict-sel"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
887 \ , "-fdo-eta-reduction"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
888 \ , "-fno-do-eta-reduction"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
889 \ , "-fdo-lambda-eta-expansion"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
890 \ , "-fno-do-lambda-eta-expansion"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
891 \ , "-feager-blackholing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
892 \ , "-fenable-rewrite-rules"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
893 \ , "-fno-enable-rewrite-rules"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
894 \ , "-fexcess-precision"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
895 \ , "-fno-excess-precision"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
896 \ , "-fexitification"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
897 \ , "-fno-exitification"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
898 \ , "-fexpose-all-unfoldings"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
899 \ , "-fno-expose-all-unfoldings"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
900 \ , "-ffloat-in"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
901 \ , "-fno-float-in"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
902 \ , "-ffull-laziness"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
903 \ , "-fno-full-laziness"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
904 \ , "-ffun-to-thunk"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
905 \ , "-fno-fun-to-thunk"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
906 \ , "-fignore-asserts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
907 \ , "-fno-ignore-asserts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
908 \ , "-fignore-interface-pragmas"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
909 \ , "-fno-ignore-interface-pragmas"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
910 \ , "-flate-dmd-anal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
911 \ , "-fno-late-dmd-anal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
912 \ , "-fliberate-case"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
913 \ , "-fno-liberate-case"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
914 \ , "-fliberate-case-threshold="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
915 \ , "-fno-liberate-case-threshold"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
916 \ , "-fllvm-pass-vectors-in-regs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
917 \ , "-fno-llvm-pass-vectors-in-regs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
918 \ , "-floopification"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
919 \ , "-fno-loopification"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
920 \ , "-fmax-inline-alloc-size="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
921 \ , "-fmax-inline-memcpy-insns="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
922 \ , "-fmax-inline-memset-insns="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
923 \ , "-fmax-relevant-binds="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
924 \ , "-fno-max-relevant-bindings"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
925 \ , "-fmax-simplifier-iterations="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
926 \ , "-fmax-uncovered-patterns="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
927 \ , "-fmax-valid-substitutions="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
928 \ , "-fno-max-valid-substitutions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
929 \ , "-fmax-worker-args="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
930 \ , "-fno-opt-coercion"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
931 \ , "-fno-pre-inlining"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
932 \ , "-fno-state-hack"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
933 \ , "-fomit-interface-pragmas"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
934 \ , "-fno-omit-interface-pragmas"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
935 \ , "-fomit-yields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
936 \ , "-fno-omit-yields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
937 \ , "-foptimal-applicative-do"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
938 \ , "-fno-optimal-applicative-do"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
939 \ , "-fpedantic-bottoms"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
940 \ , "-fno-pedantic-bottoms"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
941 \ , "-fregs-graph"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
942 \ , "-fno-regs-graph"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
943 \ , "-fregs-iterative"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
944 \ , "-fno-regs-iterative"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
945 \ , "-fsimpl-tick-factor="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
946 \ , "-fsimplifier-phases="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
947 \ , "-fsolve-constant-dicts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
948 \ , "-fno-solve-constant-dicts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
949 \ , "-fspec-constr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
950 \ , "-fno-spec-constr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
951 \ , "-fspec-constr-count="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
952 \ , "-fno-spec-constr-count"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
953 \ , "-fspec-constr-keen"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
954 \ , "-fno-spec-constr-keen"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
955 \ , "-fspec-constr-threshold="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
956 \ , "-fno-spec-constr-threshold"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
957 \ , "-fspecialise"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
958 \ , "-fno-specialise"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
959 \ , "-fspecialise-aggressively"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
960 \ , "-fno-specialise-aggressively"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
961 \ , "-fstatic-argument-transformation"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
962 \ , "-fno-static-argument-transformation"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
963 \ , "-fstg-cse"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
964 \ , "-fno-stg-cse"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
965 \ , "-fstrictness"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
966 \ , "-fno-strictness"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
967 \ , "-fstrictness-before="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
968 \ , "-funbox-small-strict-fields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
969 \ , "-fno-unbox-small-strict-fields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
970 \ , "-funbox-strict-fields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
971 \ , "-fno-unbox-strict-fields"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
972 \ , "-funfolding-creation-threshold="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
973 \ , "-funfolding-dict-discount="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
974 \ , "-funfolding-fun-discount="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
975 \ , "-funfolding-keeness-factor="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
976 \ , "-funfolding-use-threshold="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
977 \ , "-fvectorisation-avoidance"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
978 \ , "-fno-vectorisation-avoidance"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
979 \ , "-fvectorise"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
980 \ , "-fno-vectorise"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
981 \ , "-fno-prof-auto"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
982 \ , "-fprof-auto"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
983 \ , "-fno-prof-cafs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
984 \ , "-fprof-cafs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
985 \ , "-fno-prof-count-entries"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
986 \ , "-fprof-count-entries"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
987 \ , "-fprof-auto"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
988 \ , "-fno-prof-auto"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
989 \ , "-fprof-auto-calls"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
990 \ , "-fno-prof-auto-calls"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
991 \ , "-fprof-auto-exported"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
992 \ , "-fno-prof-auto"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
993 \ , "-fprof-auto-top"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
994 \ , "-fno-prof-auto"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
995 \ , "-fprof-cafs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
996 \ , "-fno-prof-cafs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
997 \ , "-prof"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
998 \ , "-ticky"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
999 \ , "-fhpc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1000 \ , "-cpp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1001 \ , "-D[=]"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1002 \ , "-U"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1003 \ , "-I"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1004 \ , "-U"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1005 \ , "-dynamic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1006 \ , "-too"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1007 \ , "-fasm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1008 \ , "-fllvm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1009 \ , "-fbyte-code"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1010 \ , "-fllvm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1011 \ , "-fasm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1012 \ , "-fno-code"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1013 \ , "-fobject-code"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1014 \ , "-fPIC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1015 \ , "-fPIE"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1016 \ , "-fwrite-interface"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1017 \ , "-debug"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1018 \ , "-dylib-install-name"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1019 \ , "-dynamic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1020 \ , "-dynload"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1021 \ , "-eventlog"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1022 \ , "-fno-embed-manifest"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1023 \ , "-fno-gen-manifest"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1024 \ , "-fno-shared-implib"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1025 \ , "-framework"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1026 \ , "-framework-path"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1027 \ , "-fwhole-archive-hs-libs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1028 \ , "-L"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1029 \ , "-l"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1030 \ , "-main-is"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1031 \ , "-no-hs-main"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1032 \ , "-no-rtsopts-suggestions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1033 \ , "-package"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1034 \ , "-pie"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1035 \ , "-rdynamic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1036 \ , "-rtsopts[=]"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1037 \ , "-shared"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1038 \ , "-split-objs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1039 \ , "-split-sections"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1040 \ , "-static"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1041 \ , "-staticlib"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1042 \ , "-threaded"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1043 \ , "-with-rtsopts="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1044 \ , "-fplugin-opt=:"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1045 \ , "-fplugin="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1046 \ , "-hide-all-plugin-packages"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1047 \ , "-plugin-package"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1048 \ , "-plugin-package-id"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1049 \ , "-pgma"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1050 \ , "-pgmc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1051 \ , "-pgmdll"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1052 \ , "-pgmF"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1053 \ , "-pgmi"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1054 \ , "-pgmL"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1055 \ , "-pgml"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1056 \ , "-pgmlc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1057 \ , "-pgmlibtool"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1058 \ , "-pgmlo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1059 \ , "-pgmP"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1060 \ , "-pgms"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1061 \ , "-pgmwindres"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1062 \ , "-opta"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1063 \ , "-optc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1064 \ , "-optdll"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1065 \ , "-optF"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1066 \ , "-opti"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1067 \ , "-optL"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1068 \ , "-optl"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1069 \ , "-optlc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1070 \ , "-optlo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1071 \ , "-optP"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1072 \ , "-optwindres"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1073 \ , "-msse2"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1074 \ , "-msse4.2"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1075 \ , "-dcmm-lint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1076 \ , "-dcore-lint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1077 \ , "-ddump-asm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1078 \ , "-ddump-asm-expanded"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1079 \ , "-ddump-asm-liveness"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1080 \ , "-ddump-asm-native"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1081 \ , "-ddump-asm-regalloc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1082 \ , "-ddump-asm-regalloc-stages"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1083 \ , "-ddump-asm-stats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1084 \ , "-ddump-bcos"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1085 \ , "-ddump-cmm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1086 \ , "-ddump-cmm-caf"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1087 \ , "-ddump-cmm-cbe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1088 \ , "-ddump-cmm-cfg"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1089 \ , "-ddump-cmm-cps"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1090 \ , "-ddump-cmm-from-stg"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1091 \ , "-ddump-cmm-info"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1092 \ , "-ddump-cmm-proc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1093 \ , "-ddump-cmm-procmap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1094 \ , "-ddump-cmm-raw"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1095 \ , "-ddump-cmm-sink"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1096 \ , "-ddump-cmm-sp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1097 \ , "-ddump-cmm-split"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1098 \ , "-ddump-cmm-switch"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1099 \ , "-ddump-cmm-verbose"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1100 \ , "-ddump-core-stats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1101 \ , "-ddump-cse"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1102 \ , "-ddump-deriv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1103 \ , "-ddump-ds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1104 \ , "-ddump-ec-trace"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1105 \ , "-ddump-foreign"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1106 \ , "-ddump-if-trace"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1107 \ , "-ddump-inlinings"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1108 \ , "-ddump-json"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1109 \ , "-ddump-llvm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1110 \ , "-ddump-occur-anal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1111 \ , "-ddump-opt-cmm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1112 \ , "-ddump-parsed"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1113 \ , "-ddump-parsed-ast"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1114 \ , "-ddump-prep"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1115 \ , "-ddump-rn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1116 \ , "-ddump-rn-ast"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1117 \ , "-ddump-rn-stats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1118 \ , "-ddump-rn-trace"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1119 \ , "-ddump-rule-firings"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1120 \ , "-ddump-rule-rewrites"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1121 \ , "-ddump-rules"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1122 \ , "-ddump-simpl"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1123 \ , "-ddump-simpl-iterations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1124 \ , "-ddump-simpl-stats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1125 \ , "-ddump-spec"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1126 \ , "-ddump-splices"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1127 \ , "-ddump-stg"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1128 \ , "-ddump-str-signatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1129 \ , "-ddump-stranal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1130 \ , "-ddump-tc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1131 \ , "-ddump-tc-ast"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1132 \ , "-ddump-tc-trace"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1133 \ , "-ddump-timings"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1134 \ , "-ddump-to-file"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1135 \ , "-ddump-types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1136 \ , "-ddump-vect"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1137 \ , "-ddump-vt-trace"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1138 \ , "-ddump-worker-wrapper"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1139 \ , "-dfaststring-stats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1140 \ , "-dinitial-unique="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1141 \ , "-dno-debug-output"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1142 \ , "-ddebug-output"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1143 \ , "-dppr-case-as-let"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1144 \ , "-dppr-cols="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1145 \ , "-dppr-debug"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1146 \ , "-dppr-user-length"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1147 \ , "-dshow-passes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1148 \ , "-dstg-lint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1149 \ , "-dsuppress-all"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1150 \ , "-dsuppress-coercions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1151 \ , "-dsuppress-idinfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1152 \ , "-dsuppress-module-prefixes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1153 \ , "-dsuppress-stg-free-vars"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1154 \ , "-dsuppress-ticks"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1155 \ , "-dsuppress-type-applications"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1156 \ , "-dsuppress-type-signatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1157 \ , "-dsuppress-unfoldings"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1158 \ , "-dsuppress-uniques"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1159 \ , "-dsuppress-var-kinds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1160 \ , "-dth-dec-file="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1161 \ , "-dunique-increment="
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1162 \ , "-dverbose-core2core"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1163 \ , "-dverbose-stg2stg"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1164 \ , "-falignment-sanitisation"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1165 \ , "-fcatch-bottoms"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1166 \ , "-fllvm-fill-undef-with-garbage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1167 \ , "-g,"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1168 \ , "-fexternal-interpreter"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1169 \ , "-fglasgow-exts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1170 \ , "-fno-glasgow-exts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1171 \ , "-ghcversion-file"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1172 \ , "-H"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1173 \ , "-j[]"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1174 \ ]
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1175
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1176 let s:commonModules =
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1177 \ [ "Distribution.Backpack"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1178 \ , "Distribution.Backpack.ComponentsGraph"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1179 \ , "Distribution.Backpack.Configure"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1180 \ , "Distribution.Backpack.ConfiguredComponent"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1181 \ , "Distribution.Backpack.DescribeUnitId"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1182 \ , "Distribution.Backpack.FullUnitId"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1183 \ , "Distribution.Backpack.LinkedComponent"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1184 \ , "Distribution.Backpack.ModSubst"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1185 \ , "Distribution.Backpack.ModuleShape"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1186 \ , "Distribution.Backpack.PreModuleShape"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1187 \ , "Distribution.CabalSpecVersion"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1188 \ , "Distribution.Compat.Binary"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1189 \ , "Distribution.Compat.CharParsing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1190 \ , "Distribution.Compat.CreatePipe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1191 \ , "Distribution.Compat.DList"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1192 \ , "Distribution.Compat.Directory"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1193 \ , "Distribution.Compat.Environment"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1194 \ , "Distribution.Compat.Exception"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1195 \ , "Distribution.Compat.Graph"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1196 \ , "Distribution.Compat.Internal.TempFile"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1197 \ , "Distribution.Compat.Lens"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1198 \ , "Distribution.Compat.Map.Strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1199 \ , "Distribution.Compat.Newtype"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1200 \ , "Distribution.Compat.Parsing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1201 \ , "Distribution.Compat.Prelude.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1202 \ , "Distribution.Compat.ReadP"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1203 \ , "Distribution.Compat.Semigroup"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1204 \ , "Distribution.Compat.Stack"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1205 \ , "Distribution.Compat.Time"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1206 \ , "Distribution.Compiler"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1207 \ , "Distribution.FieldGrammar"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1208 \ , "Distribution.FieldGrammar.Class"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1209 \ , "Distribution.FieldGrammar.FieldDescrs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1210 \ , "Distribution.FieldGrammar.Parsec"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1211 \ , "Distribution.FieldGrammar.Pretty"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1212 \ , "Distribution.InstalledPackageInfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1213 \ , "Distribution.License"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1214 \ , "Distribution.Make"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1215 \ , "Distribution.ModuleName"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1216 \ , "Distribution.Package"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1217 \ , "Distribution.PackageDescription"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1218 \ , "Distribution.PackageDescription.Check"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1219 \ , "Distribution.PackageDescription.Configuration"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1220 \ , "Distribution.PackageDescription.FieldGrammar"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1221 \ , "Distribution.PackageDescription.Parsec"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1222 \ , "Distribution.PackageDescription.PrettyPrint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1223 \ , "Distribution.PackageDescription.Quirks"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1224 \ , "Distribution.PackageDescription.Utils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1225 \ , "Distribution.ParseUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1226 \ , "Distribution.Parsec.Class"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1227 \ , "Distribution.Parsec.Common"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1228 \ , "Distribution.Parsec.ConfVar"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1229 \ , "Distribution.Parsec.Field"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1230 \ , "Distribution.Parsec.FieldLineStream"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1231 \ , "Distribution.Parsec.Lexer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1232 \ , "Distribution.Parsec.LexerMonad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1233 \ , "Distribution.Parsec.Newtypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1234 \ , "Distribution.Parsec.ParseResult"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1235 \ , "Distribution.Parsec.Parser"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1236 \ , "Distribution.Pretty"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1237 \ , "Distribution.PrettyUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1238 \ , "Distribution.ReadE"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1239 \ , "Distribution.SPDX"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1240 \ , "Distribution.SPDX.License"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1241 \ , "Distribution.SPDX.LicenseExceptionId"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1242 \ , "Distribution.SPDX.LicenseExpression"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1243 \ , "Distribution.SPDX.LicenseId"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1244 \ , "Distribution.SPDX.LicenseReference"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1245 \ , "Distribution.Simple"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1246 \ , "Distribution.Simple.Bench"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1247 \ , "Distribution.Simple.Build"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1248 \ , "Distribution.Simple.Build.Macros"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1249 \ , "Distribution.Simple.Build.PathsModule"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1250 \ , "Distribution.Simple.BuildPaths"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1251 \ , "Distribution.Simple.BuildTarget"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1252 \ , "Distribution.Simple.BuildToolDepends"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1253 \ , "Distribution.Simple.CCompiler"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1254 \ , "Distribution.Simple.Command"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1255 \ , "Distribution.Simple.Compiler"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1256 \ , "Distribution.Simple.Configure"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1257 \ , "Distribution.Simple.Doctest"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1258 \ , "Distribution.Simple.GHC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1259 \ , "Distribution.Simple.GHCJS"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1260 \ , "Distribution.Simple.Haddock"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1261 \ , "Distribution.Simple.HaskellSuite"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1262 \ , "Distribution.Simple.Hpc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1263 \ , "Distribution.Simple.Install"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1264 \ , "Distribution.Simple.InstallDirs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1265 \ , "Distribution.Simple.JHC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1266 \ , "Distribution.Simple.LHC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1267 \ , "Distribution.Simple.LocalBuildInfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1268 \ , "Distribution.Simple.PackageIndex"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1269 \ , "Distribution.Simple.PreProcess"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1270 \ , "Distribution.Simple.PreProcess.Unlit"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1271 \ , "Distribution.Simple.Program"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1272 \ , "Distribution.Simple.Program.Ar"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1273 \ , "Distribution.Simple.Program.Builtin"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1274 \ , "Distribution.Simple.Program.Db"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1275 \ , "Distribution.Simple.Program.Find"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1276 \ , "Distribution.Simple.Program.GHC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1277 \ , "Distribution.Simple.Program.HcPkg"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1278 \ , "Distribution.Simple.Program.Hpc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1279 \ , "Distribution.Simple.Program.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1280 \ , "Distribution.Simple.Program.Ld"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1281 \ , "Distribution.Simple.Program.ResponseFile"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1282 \ , "Distribution.Simple.Program.Run"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1283 \ , "Distribution.Simple.Program.Script"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1284 \ , "Distribution.Simple.Program.Strip"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1285 \ , "Distribution.Simple.Program.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1286 \ , "Distribution.Simple.Register"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1287 \ , "Distribution.Simple.Setup"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1288 \ , "Distribution.Simple.SrcDist"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1289 \ , "Distribution.Simple.Test"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1290 \ , "Distribution.Simple.Test.ExeV10"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1291 \ , "Distribution.Simple.Test.LibV09"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1292 \ , "Distribution.Simple.Test.Log"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1293 \ , "Distribution.Simple.UHC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1294 \ , "Distribution.Simple.UserHooks"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1295 \ , "Distribution.Simple.Utils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1296 \ , "Distribution.System"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1297 \ , "Distribution.TestSuite"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1298 \ , "Distribution.Text"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1299 \ , "Distribution.Types.AbiDependency"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1300 \ , "Distribution.Types.AbiHash"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1301 \ , "Distribution.Types.AnnotatedId"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1302 \ , "Distribution.Types.Benchmark"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1303 \ , "Distribution.Types.Benchmark.Lens"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1304 \ , "Distribution.Types.BenchmarkInterface"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1305 \ , "Distribution.Types.BenchmarkType"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1306 \ , "Distribution.Types.BuildInfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1307 \ , "Distribution.Types.BuildInfo.Lens"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1308 \ , "Distribution.Types.BuildType"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1309 \ , "Distribution.Types.Component"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1310 \ , "Distribution.Types.ComponentId"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1311 \ , "Distribution.Types.ComponentInclude"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1312 \ , "Distribution.Types.ComponentLocalBuildInfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1313 \ , "Distribution.Types.ComponentName"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1314 \ , "Distribution.Types.ComponentRequestedSpec"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1315 \ , "Distribution.Types.CondTree"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1316 \ , "Distribution.Types.Condition"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1317 \ , "Distribution.Types.Dependency"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1318 \ , "Distribution.Types.DependencyMap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1319 \ , "Distribution.Types.ExeDependency"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1320 \ , "Distribution.Types.Executable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1321 \ , "Distribution.Types.Executable.Lens"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1322 \ , "Distribution.Types.ExecutableScope"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1323 \ , "Distribution.Types.ExposedModule"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1324 \ , "Distribution.Types.ForeignLib"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1325 \ , "Distribution.Types.ForeignLib.Lens"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1326 \ , "Distribution.Types.ForeignLibOption"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1327 \ , "Distribution.Types.ForeignLibType"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1328 \ , "Distribution.Types.GenericPackageDescription"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1329 \ , "Distribution.Types.GenericPackageDescription.Lens"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1330 \ , "Distribution.Types.HookedBuildInfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1331 \ , "Distribution.Types.IncludeRenaming"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1332 \ , "Distribution.Types.InstalledPackageInfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1333 \ , "Distribution.Types.InstalledPackageInfo.FieldGrammar"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1334 \ , "Distribution.Types.InstalledPackageInfo.Lens"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1335 \ , "Distribution.Types.LegacyExeDependency"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1336 \ , "Distribution.Types.Lens"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1337 \ , "Distribution.Types.Library"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1338 \ , "Distribution.Types.Library.Lens"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1339 \ , "Distribution.Types.LocalBuildInfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1340 \ , "Distribution.Types.Mixin"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1341 \ , "Distribution.Types.Module"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1342 \ , "Distribution.Types.ModuleReexport"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1343 \ , "Distribution.Types.ModuleRenaming"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1344 \ , "Distribution.Types.MungedPackageId"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1345 \ , "Distribution.Types.MungedPackageName"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1346 \ , "Distribution.Types.PackageDescription"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1347 \ , "Distribution.Types.PackageDescription.Lens"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1348 \ , "Distribution.Types.PackageId"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1349 \ , "Distribution.Types.PackageId.Lens"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1350 \ , "Distribution.Types.PackageName"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1351 \ , "Distribution.Types.PkgconfigDependency"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1352 \ , "Distribution.Types.PkgconfigName"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1353 \ , "Distribution.Types.SetupBuildInfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1354 \ , "Distribution.Types.SetupBuildInfo.Lens"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1355 \ , "Distribution.Types.SourceRepo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1356 \ , "Distribution.Types.SourceRepo.Lens"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1357 \ , "Distribution.Types.TargetInfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1358 \ , "Distribution.Types.TestSuite"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1359 \ , "Distribution.Types.TestSuite.Lens"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1360 \ , "Distribution.Types.TestSuiteInterface"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1361 \ , "Distribution.Types.TestType"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1362 \ , "Distribution.Types.UnitId"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1363 \ , "Distribution.Types.UnqualComponentName"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1364 \ , "Distribution.Types.Version"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1365 \ , "Distribution.Types.VersionInterval"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1366 \ , "Distribution.Types.VersionRange"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1367 \ , "Distribution.Utils.Generic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1368 \ , "Distribution.Utils.IOData"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1369 \ , "Distribution.Utils.LogProgress"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1370 \ , "Distribution.Utils.MapAccum"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1371 \ , "Distribution.Utils.NubList"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1372 \ , "Distribution.Utils.Progress"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1373 \ , "Distribution.Utils.ShortText"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1374 \ , "Distribution.Verbosity"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1375 \ , "Distribution.Version"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1376 \ , "Language.Haskell.Extension"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1377 \ , "Graphics.GLU"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1378 \ , "Graphics.GLU.Callbacks"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1379 \ , "Graphics.GLU.Functions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1380 \ , "Graphics.GLU.Tokens"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1381 \ , "Graphics.GLU.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1382 \ , "Graphics.UI.GLUT"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1383 \ , "Graphics.UI.GLUT.Begin"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1384 \ , "Graphics.UI.GLUT.Callbacks"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1385 \ , "Graphics.UI.GLUT.Callbacks.Global"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1386 \ , "Graphics.UI.GLUT.Callbacks.Window"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1387 \ , "Graphics.UI.GLUT.Colormap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1388 \ , "Graphics.UI.GLUT.Debugging"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1389 \ , "Graphics.UI.GLUT.DeviceControl"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1390 \ , "Graphics.UI.GLUT.Fonts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1391 \ , "Graphics.UI.GLUT.GameMode"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1392 \ , "Graphics.UI.GLUT.Initialization"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1393 \ , "Graphics.UI.GLUT.Menu"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1394 \ , "Graphics.UI.GLUT.Objects"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1395 \ , "Graphics.UI.GLUT.Overlay"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1396 \ , "Graphics.UI.GLUT.State"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1397 \ , "Graphics.UI.GLUT.Window"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1398 \ , "Network.Browser"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1399 \ , "Network.BufferType"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1400 \ , "Network.HTTP"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1401 \ , "Network.HTTP.Auth"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1402 \ , "Network.HTTP.Base"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1403 \ , "Network.HTTP.Cookie"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1404 \ , "Network.HTTP.HandleStream"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1405 \ , "Network.HTTP.Headers"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1406 \ , "Network.HTTP.Proxy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1407 \ , "Network.HTTP.Stream"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1408 \ , "Network.Stream"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1409 \ , "Network.StreamDebugger"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1410 \ , "Network.StreamSocket"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1411 \ , "Network.TCP"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1412 \ , "Test.HUnit"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1413 \ , "Test.HUnit.Base"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1414 \ , "Test.HUnit.Lang"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1415 \ , "Test.HUnit.Terminal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1416 \ , "Test.HUnit.Text"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1417 \ , "Data.ObjectName"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1418 \ , "Graphics.Rendering.OpenGL"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1419 \ , "Graphics.Rendering.OpenGL.GL"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1420 \ , "Graphics.Rendering.OpenGL.GL.Antialiasing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1421 \ , "Graphics.Rendering.OpenGL.GL.BeginEnd"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1422 \ , "Graphics.Rendering.OpenGL.GL.Bitmaps"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1423 \ , "Graphics.Rendering.OpenGL.GL.BufferObjects"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1424 \ , "Graphics.Rendering.OpenGL.GL.Clipping"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1425 \ , "Graphics.Rendering.OpenGL.GL.ColorSum"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1426 \ , "Graphics.Rendering.OpenGL.GL.Colors"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1427 \ , "Graphics.Rendering.OpenGL.GL.ConditionalRendering"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1428 \ , "Graphics.Rendering.OpenGL.GL.CoordTrans"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1429 \ , "Graphics.Rendering.OpenGL.GL.DebugOutput"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1430 \ , "Graphics.Rendering.OpenGL.GL.DisplayLists"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1431 \ , "Graphics.Rendering.OpenGL.GL.Evaluators"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1432 \ , "Graphics.Rendering.OpenGL.GL.Feedback"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1433 \ , "Graphics.Rendering.OpenGL.GL.FlushFinish"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1434 \ , "Graphics.Rendering.OpenGL.GL.Fog"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1435 \ , "Graphics.Rendering.OpenGL.GL.Framebuffer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1436 \ , "Graphics.Rendering.OpenGL.GL.FramebufferObjects"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1437 \ , "Graphics.Rendering.OpenGL.GL.FramebufferObjects.Attachments"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1438 \ , "Graphics.Rendering.OpenGL.GL.FramebufferObjects.FramebufferObjects"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1439 \ , "Graphics.Rendering.OpenGL.GL.FramebufferObjects.Queries"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1440 \ , "Graphics.Rendering.OpenGL.GL.FramebufferObjects.RenderbufferObjects"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1441 \ , "Graphics.Rendering.OpenGL.GL.Hints"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1442 \ , "Graphics.Rendering.OpenGL.GL.LineSegments"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1443 \ , "Graphics.Rendering.OpenGL.GL.PerFragment"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1444 \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1445 \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles.ColorTable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1446 \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles.Convolution"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1447 \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles.Histogram"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1448 \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles.Minmax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1449 \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles.PixelMap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1450 \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles.PixelStorage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1451 \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles.PixelTransfer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1452 \ , "Graphics.Rendering.OpenGL.GL.PixelRectangles.Rasterization"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1453 \ , "Graphics.Rendering.OpenGL.GL.PixellikeObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1454 \ , "Graphics.Rendering.OpenGL.GL.Points"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1455 \ , "Graphics.Rendering.OpenGL.GL.Polygons"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1456 \ , "Graphics.Rendering.OpenGL.GL.PrimitiveMode"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1457 \ , "Graphics.Rendering.OpenGL.GL.QueryObjects"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1458 \ , "Graphics.Rendering.OpenGL.GL.RasterPos"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1459 \ , "Graphics.Rendering.OpenGL.GL.ReadCopyPixels"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1460 \ , "Graphics.Rendering.OpenGL.GL.Rectangles"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1461 \ , "Graphics.Rendering.OpenGL.GL.SavingState"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1462 \ , "Graphics.Rendering.OpenGL.GL.Selection"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1463 \ , "Graphics.Rendering.OpenGL.GL.Shaders"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1464 \ , "Graphics.Rendering.OpenGL.GL.Shaders.Attribs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1465 \ , "Graphics.Rendering.OpenGL.GL.Shaders.Limits"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1466 \ , "Graphics.Rendering.OpenGL.GL.Shaders.ProgramBinaries"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1467 \ , "Graphics.Rendering.OpenGL.GL.Shaders.ProgramObjects"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1468 \ , "Graphics.Rendering.OpenGL.GL.Shaders.ShaderBinaries"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1469 \ , "Graphics.Rendering.OpenGL.GL.Shaders.ShaderObjects"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1470 \ , "Graphics.Rendering.OpenGL.GL.Shaders.Uniform"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1471 \ , "Graphics.Rendering.OpenGL.GL.StringQueries"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1472 \ , "Graphics.Rendering.OpenGL.GL.SyncObjects"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1473 \ , "Graphics.Rendering.OpenGL.GL.Tensor"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1474 \ , "Graphics.Rendering.OpenGL.GL.Texturing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1475 \ , "Graphics.Rendering.OpenGL.GL.Texturing.Application"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1476 \ , "Graphics.Rendering.OpenGL.GL.Texturing.Environments"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1477 \ , "Graphics.Rendering.OpenGL.GL.Texturing.Objects"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1478 \ , "Graphics.Rendering.OpenGL.GL.Texturing.Parameters"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1479 \ , "Graphics.Rendering.OpenGL.GL.Texturing.Queries"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1480 \ , "Graphics.Rendering.OpenGL.GL.Texturing.Specification"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1481 \ , "Graphics.Rendering.OpenGL.GL.TransformFeedback"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1482 \ , "Graphics.Rendering.OpenGL.GL.VertexArrayObjects"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1483 \ , "Graphics.Rendering.OpenGL.GL.VertexArrays"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1484 \ , "Graphics.Rendering.OpenGL.GL.VertexSpec"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1485 \ , "Graphics.Rendering.OpenGL.GLU"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1486 \ , "Graphics.Rendering.OpenGL.GLU.Errors"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1487 \ , "Graphics.Rendering.OpenGL.GLU.Initialization"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1488 \ , "Graphics.Rendering.OpenGL.GLU.Matrix"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1489 \ , "Graphics.Rendering.OpenGL.GLU.Mipmapping"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1490 \ , "Graphics.Rendering.OpenGL.GLU.NURBS"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1491 \ , "Graphics.Rendering.OpenGL.GLU.Quadrics"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1492 \ , "Graphics.Rendering.OpenGL.GLU.Tessellation"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1493 \ , "Graphics.GL"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1494 \ , "Graphics.GL.AMD"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1495 \ , "Graphics.GL.AMD.BlendMinmaxFactor"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1496 \ , "Graphics.GL.AMD.DebugOutput"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1497 \ , "Graphics.GL.AMD.DepthClampSeparate"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1498 \ , "Graphics.GL.AMD.DrawBuffersBlend"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1499 \ , "Graphics.GL.AMD.FramebufferMultisampleAdvanced"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1500 \ , "Graphics.GL.AMD.FramebufferSamplePositions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1501 \ , "Graphics.GL.AMD.GPUShaderHalfFloat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1502 \ , "Graphics.GL.AMD.GPUShaderInt64"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1503 \ , "Graphics.GL.AMD.InterleavedElements"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1504 \ , "Graphics.GL.AMD.MultiDrawIndirect"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1505 \ , "Graphics.GL.AMD.NameGenDelete"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1506 \ , "Graphics.GL.AMD.OcclusionQueryEvent"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1507 \ , "Graphics.GL.AMD.PerformanceMonitor"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1508 \ , "Graphics.GL.AMD.PinnedMemory"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1509 \ , "Graphics.GL.AMD.QueryBufferObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1510 \ , "Graphics.GL.AMD.SamplePositions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1511 \ , "Graphics.GL.AMD.SeamlessCubemapPerTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1512 \ , "Graphics.GL.AMD.SparseTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1513 \ , "Graphics.GL.AMD.StencilOperationExtended"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1514 \ , "Graphics.GL.AMD.TransformFeedback4"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1515 \ , "Graphics.GL.AMD.VertexShaderTessellator"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1516 \ , "Graphics.GL.APPLE"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1517 \ , "Graphics.GL.APPLE.AuxDepthStencil"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1518 \ , "Graphics.GL.APPLE.ClientStorage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1519 \ , "Graphics.GL.APPLE.ElementArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1520 \ , "Graphics.GL.APPLE.Fence"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1521 \ , "Graphics.GL.APPLE.FloatPixels"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1522 \ , "Graphics.GL.APPLE.FlushBufferRange"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1523 \ , "Graphics.GL.APPLE.ObjectPurgeable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1524 \ , "Graphics.GL.APPLE.RGB422"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1525 \ , "Graphics.GL.APPLE.RowBytes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1526 \ , "Graphics.GL.APPLE.SpecularVector"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1527 \ , "Graphics.GL.APPLE.TextureRange"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1528 \ , "Graphics.GL.APPLE.TransformHint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1529 \ , "Graphics.GL.APPLE.VertexArrayObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1530 \ , "Graphics.GL.APPLE.VertexArrayRange"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1531 \ , "Graphics.GL.APPLE.VertexProgramEvaluators"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1532 \ , "Graphics.GL.APPLE.YCbCr422"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1533 \ , "Graphics.GL.ARB"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1534 \ , "Graphics.GL.ARB.BaseInstance"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1535 \ , "Graphics.GL.ARB.BindlessTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1536 \ , "Graphics.GL.ARB.BlendFuncExtended"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1537 \ , "Graphics.GL.ARB.BufferStorage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1538 \ , "Graphics.GL.ARB.CLEvent"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1539 \ , "Graphics.GL.ARB.ClearBufferObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1540 \ , "Graphics.GL.ARB.ClearTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1541 \ , "Graphics.GL.ARB.ClipControl"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1542 \ , "Graphics.GL.ARB.ColorBufferFloat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1543 \ , "Graphics.GL.ARB.CompressedTexturePixelStorage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1544 \ , "Graphics.GL.ARB.ComputeShader"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1545 \ , "Graphics.GL.ARB.ComputeVariableGroupSize"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1546 \ , "Graphics.GL.ARB.ConditionalRenderInverted"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1547 \ , "Graphics.GL.ARB.CopyBuffer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1548 \ , "Graphics.GL.ARB.CopyImage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1549 \ , "Graphics.GL.ARB.CullDistance"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1550 \ , "Graphics.GL.ARB.DebugOutput"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1551 \ , "Graphics.GL.ARB.DepthBufferFloat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1552 \ , "Graphics.GL.ARB.DepthClamp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1553 \ , "Graphics.GL.ARB.DepthTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1554 \ , "Graphics.GL.ARB.DirectStateAccess"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1555 \ , "Graphics.GL.ARB.DrawBuffers"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1556 \ , "Graphics.GL.ARB.DrawBuffersBlend"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1557 \ , "Graphics.GL.ARB.DrawElementsBaseVertex"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1558 \ , "Graphics.GL.ARB.DrawIndirect"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1559 \ , "Graphics.GL.ARB.DrawInstanced"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1560 \ , "Graphics.GL.ARB.ES2Compatibility"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1561 \ , "Graphics.GL.ARB.ES31Compatibility"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1562 \ , "Graphics.GL.ARB.ES32Compatibility"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1563 \ , "Graphics.GL.ARB.ES3Compatibility"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1564 \ , "Graphics.GL.ARB.EnhancedLayouts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1565 \ , "Graphics.GL.ARB.ExplicitUniformLocation"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1566 \ , "Graphics.GL.ARB.FragmentProgram"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1567 \ , "Graphics.GL.ARB.FragmentShader"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1568 \ , "Graphics.GL.ARB.FramebufferNoAttachments"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1569 \ , "Graphics.GL.ARB.FramebufferObjectCompatibility"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1570 \ , "Graphics.GL.ARB.FramebufferObjectCore"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1571 \ , "Graphics.GL.ARB.FramebufferSRGB"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1572 \ , "Graphics.GL.ARB.GPUShader5"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1573 \ , "Graphics.GL.ARB.GPUShaderFP64"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1574 \ , "Graphics.GL.ARB.GPUShaderInt64"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1575 \ , "Graphics.GL.ARB.GeometryShader4"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1576 \ , "Graphics.GL.ARB.GetProgramBinary"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1577 \ , "Graphics.GL.ARB.GetTextureSubImage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1578 \ , "Graphics.GL.ARB.GlSpirv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1579 \ , "Graphics.GL.ARB.HalfFloatPixel"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1580 \ , "Graphics.GL.ARB.HalfFloatVertex"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1581 \ , "Graphics.GL.ARB.ImagingCompatibility"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1582 \ , "Graphics.GL.ARB.ImagingCore"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1583 \ , "Graphics.GL.ARB.IndirectParameters"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1584 \ , "Graphics.GL.ARB.InstancedArrays"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1585 \ , "Graphics.GL.ARB.InternalformatQuery"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1586 \ , "Graphics.GL.ARB.InternalformatQuery2"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1587 \ , "Graphics.GL.ARB.InvalidateSubdata"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1588 \ , "Graphics.GL.ARB.MapBufferAlignment"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1589 \ , "Graphics.GL.ARB.MapBufferRange"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1590 \ , "Graphics.GL.ARB.MatrixPalette"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1591 \ , "Graphics.GL.ARB.MultiBind"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1592 \ , "Graphics.GL.ARB.MultiDrawIndirect"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1593 \ , "Graphics.GL.ARB.Multisample"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1594 \ , "Graphics.GL.ARB.Multitexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1595 \ , "Graphics.GL.ARB.OcclusionQuery"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1596 \ , "Graphics.GL.ARB.OcclusionQuery2"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1597 \ , "Graphics.GL.ARB.ParallelShaderCompile"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1598 \ , "Graphics.GL.ARB.PipelineStatisticsQuery"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1599 \ , "Graphics.GL.ARB.PixelBufferObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1600 \ , "Graphics.GL.ARB.PointParameters"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1601 \ , "Graphics.GL.ARB.PointSprite"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1602 \ , "Graphics.GL.ARB.PolygonOffsetClamp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1603 \ , "Graphics.GL.ARB.ProgramInterfaceQuery"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1604 \ , "Graphics.GL.ARB.ProvokingVertex"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1605 \ , "Graphics.GL.ARB.QueryBufferObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1606 \ , "Graphics.GL.ARB.RobustnessCompatibility"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1607 \ , "Graphics.GL.ARB.RobustnessCore"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1608 \ , "Graphics.GL.ARB.SampleLocations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1609 \ , "Graphics.GL.ARB.SampleShading"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1610 \ , "Graphics.GL.ARB.SamplerObjects"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1611 \ , "Graphics.GL.ARB.SeamlessCubeMap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1612 \ , "Graphics.GL.ARB.SeamlessCubemapPerTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1613 \ , "Graphics.GL.ARB.SeparateShaderObjects"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1614 \ , "Graphics.GL.ARB.ShaderAtomicCounters"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1615 \ , "Graphics.GL.ARB.ShaderImageLoadStore"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1616 \ , "Graphics.GL.ARB.ShaderObjects"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1617 \ , "Graphics.GL.ARB.ShaderStorageBufferObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1618 \ , "Graphics.GL.ARB.ShaderSubroutine"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1619 \ , "Graphics.GL.ARB.ShadingLanguage100"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1620 \ , "Graphics.GL.ARB.ShadingLanguageInclude"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1621 \ , "Graphics.GL.ARB.Shadow"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1622 \ , "Graphics.GL.ARB.ShadowAmbient"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1623 \ , "Graphics.GL.ARB.SparseBuffer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1624 \ , "Graphics.GL.ARB.SparseTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1625 \ , "Graphics.GL.ARB.SpirvExtensions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1626 \ , "Graphics.GL.ARB.StencilTexturing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1627 \ , "Graphics.GL.ARB.Sync"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1628 \ , "Graphics.GL.ARB.TessellationShader"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1629 \ , "Graphics.GL.ARB.TextureBarrier"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1630 \ , "Graphics.GL.ARB.TextureBorderClamp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1631 \ , "Graphics.GL.ARB.TextureBufferObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1632 \ , "Graphics.GL.ARB.TextureBufferObjectRGB32"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1633 \ , "Graphics.GL.ARB.TextureBufferRange"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1634 \ , "Graphics.GL.ARB.TextureCompression"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1635 \ , "Graphics.GL.ARB.TextureCompressionBPTC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1636 \ , "Graphics.GL.ARB.TextureCompressionRGTC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1637 \ , "Graphics.GL.ARB.TextureCubeMap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1638 \ , "Graphics.GL.ARB.TextureCubeMapArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1639 \ , "Graphics.GL.ARB.TextureEnvCombine"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1640 \ , "Graphics.GL.ARB.TextureEnvDot3"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1641 \ , "Graphics.GL.ARB.TextureFilterAnisotropic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1642 \ , "Graphics.GL.ARB.TextureFilterMinmax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1643 \ , "Graphics.GL.ARB.TextureFloat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1644 \ , "Graphics.GL.ARB.TextureGather"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1645 \ , "Graphics.GL.ARB.TextureMirrorClampToEdge"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1646 \ , "Graphics.GL.ARB.TextureMirroredRepeat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1647 \ , "Graphics.GL.ARB.TextureMultisample"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1648 \ , "Graphics.GL.ARB.TextureRG"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1649 \ , "Graphics.GL.ARB.TextureRGB10A2UI"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1650 \ , "Graphics.GL.ARB.TextureRectangle"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1651 \ , "Graphics.GL.ARB.TextureStencil8"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1652 \ , "Graphics.GL.ARB.TextureStorage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1653 \ , "Graphics.GL.ARB.TextureStorageMultisample"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1654 \ , "Graphics.GL.ARB.TextureSwizzle"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1655 \ , "Graphics.GL.ARB.TextureView"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1656 \ , "Graphics.GL.ARB.TimerQuery"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1657 \ , "Graphics.GL.ARB.TransformFeedback2"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1658 \ , "Graphics.GL.ARB.TransformFeedback3"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1659 \ , "Graphics.GL.ARB.TransformFeedbackInstanced"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1660 \ , "Graphics.GL.ARB.TransformFeedbackOverflowQuery"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1661 \ , "Graphics.GL.ARB.TransposeMatrix"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1662 \ , "Graphics.GL.ARB.UniformBufferObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1663 \ , "Graphics.GL.ARB.VertexArrayBGRA"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1664 \ , "Graphics.GL.ARB.VertexArrayObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1665 \ , "Graphics.GL.ARB.VertexAttrib64Bit"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1666 \ , "Graphics.GL.ARB.VertexAttribBinding"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1667 \ , "Graphics.GL.ARB.VertexBlend"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1668 \ , "Graphics.GL.ARB.VertexBufferObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1669 \ , "Graphics.GL.ARB.VertexProgram"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1670 \ , "Graphics.GL.ARB.VertexShader"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1671 \ , "Graphics.GL.ARB.VertexType10f11f11fRev"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1672 \ , "Graphics.GL.ARB.VertexType2101010RevCompatibility"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1673 \ , "Graphics.GL.ARB.VertexType2101010RevCore"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1674 \ , "Graphics.GL.ARB.ViewportArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1675 \ , "Graphics.GL.ARB.WindowPos"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1676 \ , "Graphics.GL.ATI"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1677 \ , "Graphics.GL.ATI.DrawBuffers"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1678 \ , "Graphics.GL.ATI.ElementArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1679 \ , "Graphics.GL.ATI.EnvmapBumpmap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1680 \ , "Graphics.GL.ATI.FragmentShader"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1681 \ , "Graphics.GL.ATI.MapObjectBuffer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1682 \ , "Graphics.GL.ATI.Meminfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1683 \ , "Graphics.GL.ATI.PNTriangles"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1684 \ , "Graphics.GL.ATI.PixelFormatFloat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1685 \ , "Graphics.GL.ATI.SeparateStencil"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1686 \ , "Graphics.GL.ATI.TextFragmentShader"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1687 \ , "Graphics.GL.ATI.TextureEnvCombine3"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1688 \ , "Graphics.GL.ATI.TextureFloat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1689 \ , "Graphics.GL.ATI.TextureMirrorOnce"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1690 \ , "Graphics.GL.ATI.VertexArrayObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1691 \ , "Graphics.GL.ATI.VertexAttribArrayObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1692 \ , "Graphics.GL.ATI.VertexStreams"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1693 \ , "Graphics.GL.Compatibility30"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1694 \ , "Graphics.GL.Compatibility31"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1695 \ , "Graphics.GL.Compatibility32"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1696 \ , "Graphics.GL.Compatibility33"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1697 \ , "Graphics.GL.Compatibility40"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1698 \ , "Graphics.GL.Compatibility41"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1699 \ , "Graphics.GL.Compatibility42"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1700 \ , "Graphics.GL.Compatibility43"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1701 \ , "Graphics.GL.Compatibility44"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1702 \ , "Graphics.GL.Compatibility45"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1703 \ , "Graphics.GL.Compatibility46"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1704 \ , "Graphics.GL.Core30"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1705 \ , "Graphics.GL.Core31"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1706 \ , "Graphics.GL.Core32"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1707 \ , "Graphics.GL.Core33"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1708 \ , "Graphics.GL.Core40"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1709 \ , "Graphics.GL.Core41"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1710 \ , "Graphics.GL.Core42"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1711 \ , "Graphics.GL.Core43"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1712 \ , "Graphics.GL.Core44"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1713 \ , "Graphics.GL.Core45"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1714 \ , "Graphics.GL.Core46"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1715 \ , "Graphics.GL.EXT"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1716 \ , "Graphics.GL.EXT.ABGR"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1717 \ , "Graphics.GL.EXT.BGRA"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1718 \ , "Graphics.GL.EXT.BindableUniform"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1719 \ , "Graphics.GL.EXT.BlendColor"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1720 \ , "Graphics.GL.EXT.BlendEquationSeparate"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1721 \ , "Graphics.GL.EXT.BlendFuncSeparate"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1722 \ , "Graphics.GL.EXT.BlendMinmax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1723 \ , "Graphics.GL.EXT.BlendSubtract"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1724 \ , "Graphics.GL.EXT.CMYKA"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1725 \ , "Graphics.GL.EXT.ClipVolumeHint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1726 \ , "Graphics.GL.EXT.ColorSubtable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1727 \ , "Graphics.GL.EXT.CompiledVertexArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1728 \ , "Graphics.GL.EXT.Convolution"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1729 \ , "Graphics.GL.EXT.CoordinateFrame"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1730 \ , "Graphics.GL.EXT.CopyTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1731 \ , "Graphics.GL.EXT.CullVertex"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1732 \ , "Graphics.GL.EXT.DebugLabel"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1733 \ , "Graphics.GL.EXT.DebugMarker"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1734 \ , "Graphics.GL.EXT.DepthBoundsTest"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1735 \ , "Graphics.GL.EXT.DirectStateAccess"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1736 \ , "Graphics.GL.EXT.DrawBuffers2"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1737 \ , "Graphics.GL.EXT.DrawInstanced"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1738 \ , "Graphics.GL.EXT.DrawRangeElements"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1739 \ , "Graphics.GL.EXT.EglImageStorage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1740 \ , "Graphics.GL.EXT.ExternalBuffer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1741 \ , "Graphics.GL.EXT.FogCoord"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1742 \ , "Graphics.GL.EXT.FourTwoTwoPixels"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1743 \ , "Graphics.GL.EXT.FramebufferBlit"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1744 \ , "Graphics.GL.EXT.FramebufferMultisample"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1745 \ , "Graphics.GL.EXT.FramebufferMultisampleBlitScaled"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1746 \ , "Graphics.GL.EXT.FramebufferObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1747 \ , "Graphics.GL.EXT.FramebufferSRGB"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1748 \ , "Graphics.GL.EXT.GPUProgramParameters"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1749 \ , "Graphics.GL.EXT.GPUShader4"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1750 \ , "Graphics.GL.EXT.GeometryShader4"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1751 \ , "Graphics.GL.EXT.Histogram"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1752 \ , "Graphics.GL.EXT.IndexArrayFormats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1753 \ , "Graphics.GL.EXT.IndexFunc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1754 \ , "Graphics.GL.EXT.IndexMaterial"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1755 \ , "Graphics.GL.EXT.LightTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1756 \ , "Graphics.GL.EXT.MemoryObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1757 \ , "Graphics.GL.EXT.MemoryObjectFd"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1758 \ , "Graphics.GL.EXT.MemoryObjectWin32"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1759 \ , "Graphics.GL.EXT.MultiDrawArrays"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1760 \ , "Graphics.GL.EXT.Multisample"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1761 \ , "Graphics.GL.EXT.PackedDepthStencil"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1762 \ , "Graphics.GL.EXT.PackedFloat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1763 \ , "Graphics.GL.EXT.PackedPixels"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1764 \ , "Graphics.GL.EXT.PalettedTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1765 \ , "Graphics.GL.EXT.PixelBufferObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1766 \ , "Graphics.GL.EXT.PixelTransform"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1767 \ , "Graphics.GL.EXT.PointParameters"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1768 \ , "Graphics.GL.EXT.PolygonOffset"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1769 \ , "Graphics.GL.EXT.PolygonOffsetClamp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1770 \ , "Graphics.GL.EXT.ProvokingVertex"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1771 \ , "Graphics.GL.EXT.RasterMultisample"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1772 \ , "Graphics.GL.EXT.RescaleNormal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1773 \ , "Graphics.GL.EXT.SecondaryColor"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1774 \ , "Graphics.GL.EXT.Semaphore"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1775 \ , "Graphics.GL.EXT.SemaphoreFd"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1776 \ , "Graphics.GL.EXT.SemaphoreWin32"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1777 \ , "Graphics.GL.EXT.SeparateShaderObjects"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1778 \ , "Graphics.GL.EXT.SeparateSpecularColor"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1779 \ , "Graphics.GL.EXT.ShaderFramebufferFetch"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1780 \ , "Graphics.GL.EXT.ShaderFramebufferFetchNonCoherent"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1781 \ , "Graphics.GL.EXT.ShaderImageLoadStore"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1782 \ , "Graphics.GL.EXT.SharedTexturePalette"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1783 \ , "Graphics.GL.EXT.StencilClearTag"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1784 \ , "Graphics.GL.EXT.StencilTwoSide"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1785 \ , "Graphics.GL.EXT.StencilWrap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1786 \ , "Graphics.GL.EXT.Subtexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1787 \ , "Graphics.GL.EXT.Texture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1788 \ , "Graphics.GL.EXT.Texture3D"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1789 \ , "Graphics.GL.EXT.TextureArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1790 \ , "Graphics.GL.EXT.TextureBufferObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1791 \ , "Graphics.GL.EXT.TextureCompressionLATC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1792 \ , "Graphics.GL.EXT.TextureCompressionRGTC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1793 \ , "Graphics.GL.EXT.TextureCompressionS3TC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1794 \ , "Graphics.GL.EXT.TextureCubeMap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1795 \ , "Graphics.GL.EXT.TextureEnvCombine"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1796 \ , "Graphics.GL.EXT.TextureEnvDot3"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1797 \ , "Graphics.GL.EXT.TextureFilterAnisotropic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1798 \ , "Graphics.GL.EXT.TextureFilterMinmax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1799 \ , "Graphics.GL.EXT.TextureInteger"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1800 \ , "Graphics.GL.EXT.TextureLODBias"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1801 \ , "Graphics.GL.EXT.TextureMirrorClamp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1802 \ , "Graphics.GL.EXT.TextureObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1803 \ , "Graphics.GL.EXT.TexturePerturbNormal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1804 \ , "Graphics.GL.EXT.TextureSNorm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1805 \ , "Graphics.GL.EXT.TextureSRGB"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1806 \ , "Graphics.GL.EXT.TextureSRGBDecode"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1807 \ , "Graphics.GL.EXT.TextureSharedExponent"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1808 \ , "Graphics.GL.EXT.TextureSwizzle"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1809 \ , "Graphics.GL.EXT.TimerQuery"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1810 \ , "Graphics.GL.EXT.TransformFeedback"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1811 \ , "Graphics.GL.EXT.VertexArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1812 \ , "Graphics.GL.EXT.VertexArrayBGRA"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1813 \ , "Graphics.GL.EXT.VertexAttrib64Bit"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1814 \ , "Graphics.GL.EXT.VertexShader"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1815 \ , "Graphics.GL.EXT.VertexWeighting"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1816 \ , "Graphics.GL.EXT.Win32KeyedMutex"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1817 \ , "Graphics.GL.EXT.WindowRectangles"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1818 \ , "Graphics.GL.EXT.X11SyncObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1819 \ , "Graphics.GL.Functions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1820 \ , "Graphics.GL.GREMEDY"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1821 \ , "Graphics.GL.GREMEDY.FrameTerminator"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1822 \ , "Graphics.GL.GREMEDY.StringMarker"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1823 \ , "Graphics.GL.GetProcAddress"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1824 \ , "Graphics.GL.Groups"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1825 \ , "Graphics.GL.HP"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1826 \ , "Graphics.GL.HP.ConvolutionBorderModes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1827 \ , "Graphics.GL.HP.ImageTransform"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1828 \ , "Graphics.GL.HP.OcclusionTest"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1829 \ , "Graphics.GL.HP.TextureLighting"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1830 \ , "Graphics.GL.IBM"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1831 \ , "Graphics.GL.IBM.CullVertex"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1832 \ , "Graphics.GL.IBM.MultimodeDrawArrays"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1833 \ , "Graphics.GL.IBM.RasterposClip"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1834 \ , "Graphics.GL.IBM.StaticData"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1835 \ , "Graphics.GL.IBM.TextureMirroredRepeat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1836 \ , "Graphics.GL.IBM.VertexArrayLists"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1837 \ , "Graphics.GL.INGR"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1838 \ , "Graphics.GL.INGR.BlendFuncSeparate"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1839 \ , "Graphics.GL.INGR.ColorClamp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1840 \ , "Graphics.GL.INGR.InterlaceRead"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1841 \ , "Graphics.GL.INTEL"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1842 \ , "Graphics.GL.INTEL.BlackholeRender"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1843 \ , "Graphics.GL.INTEL.ConservativeRasterization"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1844 \ , "Graphics.GL.INTEL.FramebufferCmaa"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1845 \ , "Graphics.GL.INTEL.MapTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1846 \ , "Graphics.GL.INTEL.ParallelArrays"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1847 \ , "Graphics.GL.INTEL.PerformanceQuery"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1848 \ , "Graphics.GL.KHR"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1849 \ , "Graphics.GL.KHR.BlendEquationAdvanced"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1850 \ , "Graphics.GL.KHR.BlendEquationAdvancedCoherent"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1851 \ , "Graphics.GL.KHR.ContextFlushControl"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1852 \ , "Graphics.GL.KHR.DebugCompatibility"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1853 \ , "Graphics.GL.KHR.DebugCore"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1854 \ , "Graphics.GL.KHR.NoError"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1855 \ , "Graphics.GL.KHR.ParallelShaderCompile"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1856 \ , "Graphics.GL.KHR.Robustness"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1857 \ , "Graphics.GL.KHR.TextureCompressionASTCHDR"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1858 \ , "Graphics.GL.KHR.TextureCompressionASTCLDR"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1859 \ , "Graphics.GL.MESA"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1860 \ , "Graphics.GL.MESA.PackInvert"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1861 \ , "Graphics.GL.MESA.ProgramBinaryFormats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1862 \ , "Graphics.GL.MESA.ResizeBuffers"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1863 \ , "Graphics.GL.MESA.TileRasterOrder"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1864 \ , "Graphics.GL.MESA.WindowPos"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1865 \ , "Graphics.GL.MESA.YCbCrTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1866 \ , "Graphics.GL.MESAX"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1867 \ , "Graphics.GL.MESAX.TextureStack"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1868 \ , "Graphics.GL.NV"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1869 \ , "Graphics.GL.NV.AlphaToCoverageDitherControl"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1870 \ , "Graphics.GL.NV.BindlessMultiDrawIndirect"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1871 \ , "Graphics.GL.NV.BindlessMultiDrawIndirectCount"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1872 \ , "Graphics.GL.NV.BindlessTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1873 \ , "Graphics.GL.NV.BlendEquationAdvanced"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1874 \ , "Graphics.GL.NV.BlendEquationAdvancedCoherent"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1875 \ , "Graphics.GL.NV.BlendMinmaxFactor"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1876 \ , "Graphics.GL.NV.ClipSpaceWScaling"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1877 \ , "Graphics.GL.NV.CommandList"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1878 \ , "Graphics.GL.NV.ComputeProgram5"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1879 \ , "Graphics.GL.NV.ConditionalRender"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1880 \ , "Graphics.GL.NV.ConservativeRaster"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1881 \ , "Graphics.GL.NV.ConservativeRasterDilate"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1882 \ , "Graphics.GL.NV.ConservativeRasterPreSnap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1883 \ , "Graphics.GL.NV.ConservativeRasterPreSnapTriangles"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1884 \ , "Graphics.GL.NV.CopyDepthToColor"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1885 \ , "Graphics.GL.NV.CopyImage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1886 \ , "Graphics.GL.NV.DeepTexture3D"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1887 \ , "Graphics.GL.NV.DepthBufferFloat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1888 \ , "Graphics.GL.NV.DepthClamp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1889 \ , "Graphics.GL.NV.DrawTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1890 \ , "Graphics.GL.NV.DrawVulkanImage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1891 \ , "Graphics.GL.NV.Evaluators"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1892 \ , "Graphics.GL.NV.ExplicitMultisample"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1893 \ , "Graphics.GL.NV.Fence"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1894 \ , "Graphics.GL.NV.FillRectangle"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1895 \ , "Graphics.GL.NV.FloatBuffer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1896 \ , "Graphics.GL.NV.FogDistance"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1897 \ , "Graphics.GL.NV.FragmentCoverageToColor"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1898 \ , "Graphics.GL.NV.FragmentProgram"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1899 \ , "Graphics.GL.NV.FragmentProgram2"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1900 \ , "Graphics.GL.NV.FramebufferMixedSamples"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1901 \ , "Graphics.GL.NV.FramebufferMultisampleCoverage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1902 \ , "Graphics.GL.NV.GPUMulticast"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1903 \ , "Graphics.GL.NV.GPUProgram4"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1904 \ , "Graphics.GL.NV.GPUProgram5"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1905 \ , "Graphics.GL.NV.GPUShader5"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1906 \ , "Graphics.GL.NV.GeometryProgram4"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1907 \ , "Graphics.GL.NV.HalfFloat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1908 \ , "Graphics.GL.NV.InternalformatSampleQuery"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1909 \ , "Graphics.GL.NV.LightMaxExponent"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1910 \ , "Graphics.GL.NV.MultisampleCoverage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1911 \ , "Graphics.GL.NV.MultisampleFilterHint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1912 \ , "Graphics.GL.NV.OcclusionQuery"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1913 \ , "Graphics.GL.NV.PackedDepthStencil"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1914 \ , "Graphics.GL.NV.ParameterBufferObject"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1915 \ , "Graphics.GL.NV.PathRenderingCompatibility"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1916 \ , "Graphics.GL.NV.PathRenderingCore"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1917 \ , "Graphics.GL.NV.PathRenderingSharedEdge"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1918 \ , "Graphics.GL.NV.PixelDataRange"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1919 \ , "Graphics.GL.NV.PointSprite"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1920 \ , "Graphics.GL.NV.PresentVideo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1921 \ , "Graphics.GL.NV.PrimitiveRestart"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1922 \ , "Graphics.GL.NV.QueryResource"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1923 \ , "Graphics.GL.NV.QueryResourceTag"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1924 \ , "Graphics.GL.NV.RegisterCombiners"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1925 \ , "Graphics.GL.NV.RegisterCombiners2"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1926 \ , "Graphics.GL.NV.RobustnessVideoMemoryPurge"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1927 \ , "Graphics.GL.NV.SampleLocations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1928 \ , "Graphics.GL.NV.ShaderBufferLoad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1929 \ , "Graphics.GL.NV.ShaderBufferStore"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1930 \ , "Graphics.GL.NV.ShaderThreadGroup"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1931 \ , "Graphics.GL.NV.TessellationProgram5"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1932 \ , "Graphics.GL.NV.TexgenEmboss"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1933 \ , "Graphics.GL.NV.TexgenReflection"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1934 \ , "Graphics.GL.NV.TextureBarrier"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1935 \ , "Graphics.GL.NV.TextureEnvCombine4"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1936 \ , "Graphics.GL.NV.TextureExpandNormal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1937 \ , "Graphics.GL.NV.TextureMultisample"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1938 \ , "Graphics.GL.NV.TextureRectangle"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1939 \ , "Graphics.GL.NV.TextureShader"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1940 \ , "Graphics.GL.NV.TextureShader2"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1941 \ , "Graphics.GL.NV.TextureShader3"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1942 \ , "Graphics.GL.NV.TransformFeedback"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1943 \ , "Graphics.GL.NV.TransformFeedback2"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1944 \ , "Graphics.GL.NV.UniformBufferUnifiedMemory"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1945 \ , "Graphics.GL.NV.VDPAUInterop"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1946 \ , "Graphics.GL.NV.VertexArrayRange"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1947 \ , "Graphics.GL.NV.VertexArrayRange2"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1948 \ , "Graphics.GL.NV.VertexAttribInteger64Bit"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1949 \ , "Graphics.GL.NV.VertexBufferUnifiedMemory"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1950 \ , "Graphics.GL.NV.VertexProgram"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1951 \ , "Graphics.GL.NV.VertexProgram2Option"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1952 \ , "Graphics.GL.NV.VertexProgram3"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1953 \ , "Graphics.GL.NV.VertexProgram4"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1954 \ , "Graphics.GL.NV.VideoCapture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1955 \ , "Graphics.GL.NV.ViewportSwizzle"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1956 \ , "Graphics.GL.NVX"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1957 \ , "Graphics.GL.NVX.ConditionalRender"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1958 \ , "Graphics.GL.NVX.GPUMemoryInfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1959 \ , "Graphics.GL.NVX.LinkedGPUMulticast"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1960 \ , "Graphics.GL.OES"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1961 \ , "Graphics.GL.OES.ByteCoordinates"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1962 \ , "Graphics.GL.OES.CompressedPalettedTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1963 \ , "Graphics.GL.OES.FixedPoint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1964 \ , "Graphics.GL.OES.QueryMatrix"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1965 \ , "Graphics.GL.OES.ReadFormat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1966 \ , "Graphics.GL.OES.SinglePrecision"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1967 \ , "Graphics.GL.OML"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1968 \ , "Graphics.GL.OML.Interlace"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1969 \ , "Graphics.GL.OML.Resample"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1970 \ , "Graphics.GL.OML.Subsample"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1971 \ , "Graphics.GL.OVR"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1972 \ , "Graphics.GL.OVR.Multiview"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1973 \ , "Graphics.GL.PGI"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1974 \ , "Graphics.GL.PGI.MiscHints"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1975 \ , "Graphics.GL.PGI.VertexHints"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1976 \ , "Graphics.GL.REND"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1977 \ , "Graphics.GL.REND.ScreenCoordinates"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1978 \ , "Graphics.GL.S3"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1979 \ , "Graphics.GL.S3.S3TC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1980 \ , "Graphics.GL.SGI"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1981 \ , "Graphics.GL.SGI.ColorMatrix"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1982 \ , "Graphics.GL.SGI.ColorTable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1983 \ , "Graphics.GL.SGI.TextureColorTable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1984 \ , "Graphics.GL.SGIS"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1985 \ , "Graphics.GL.SGIS.DetailTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1986 \ , "Graphics.GL.SGIS.FogFunction"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1987 \ , "Graphics.GL.SGIS.GenerateMipmap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1988 \ , "Graphics.GL.SGIS.Multisample"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1989 \ , "Graphics.GL.SGIS.PixelTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1990 \ , "Graphics.GL.SGIS.PointLineTexgen"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1991 \ , "Graphics.GL.SGIS.PointParameters"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1992 \ , "Graphics.GL.SGIS.SharpenTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1993 \ , "Graphics.GL.SGIS.Texture4D"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1994 \ , "Graphics.GL.SGIS.TextureBorderClamp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1995 \ , "Graphics.GL.SGIS.TextureColorMask"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1996 \ , "Graphics.GL.SGIS.TextureEdgeClamp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1997 \ , "Graphics.GL.SGIS.TextureFilter4"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1998 \ , "Graphics.GL.SGIS.TextureLOD"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1999 \ , "Graphics.GL.SGIS.TextureSelect"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2000 \ , "Graphics.GL.SGIX"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2001 \ , "Graphics.GL.SGIX.Async"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2002 \ , "Graphics.GL.SGIX.AsyncHistogram"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2003 \ , "Graphics.GL.SGIX.AsyncPixel"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2004 \ , "Graphics.GL.SGIX.BlendAlphaMinmax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2005 \ , "Graphics.GL.SGIX.CalligraphicFragment"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2006 \ , "Graphics.GL.SGIX.Clipmap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2007 \ , "Graphics.GL.SGIX.ConvolutionAccuracy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2008 \ , "Graphics.GL.SGIX.DepthTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2009 \ , "Graphics.GL.SGIX.FlushRaster"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2010 \ , "Graphics.GL.SGIX.FogOffset"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2011 \ , "Graphics.GL.SGIX.FragmentLighting"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2012 \ , "Graphics.GL.SGIX.Framezoom"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2013 \ , "Graphics.GL.SGIX.IglooInterface"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2014 \ , "Graphics.GL.SGIX.Instruments"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2015 \ , "Graphics.GL.SGIX.Interlace"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2016 \ , "Graphics.GL.SGIX.IrInstrument1"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2017 \ , "Graphics.GL.SGIX.ListPriority"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2018 \ , "Graphics.GL.SGIX.PixelTexture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2019 \ , "Graphics.GL.SGIX.PixelTiles"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2020 \ , "Graphics.GL.SGIX.PolynomialFFD"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2021 \ , "Graphics.GL.SGIX.ReferencePlane"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2022 \ , "Graphics.GL.SGIX.Resample"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2023 \ , "Graphics.GL.SGIX.ScalebiasHint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2024 \ , "Graphics.GL.SGIX.Shadow"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2025 \ , "Graphics.GL.SGIX.ShadowAmbient"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2026 \ , "Graphics.GL.SGIX.Sprite"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2027 \ , "Graphics.GL.SGIX.Subsample"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2028 \ , "Graphics.GL.SGIX.TagSampleBuffer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2029 \ , "Graphics.GL.SGIX.TextureAddEnv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2030 \ , "Graphics.GL.SGIX.TextureCoordinateClamp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2031 \ , "Graphics.GL.SGIX.TextureLODBias"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2032 \ , "Graphics.GL.SGIX.TextureMultiBuffer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2033 \ , "Graphics.GL.SGIX.TextureScaleBias"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2034 \ , "Graphics.GL.SGIX.VertexPreclip"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2035 \ , "Graphics.GL.SGIX.YCrCb"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2036 \ , "Graphics.GL.SGIX.YCrCbA"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2037 \ , "Graphics.GL.SUN"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2038 \ , "Graphics.GL.SUN.ConvolutionBorderModes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2039 \ , "Graphics.GL.SUN.GlobalAlpha"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2040 \ , "Graphics.GL.SUN.MeshArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2041 \ , "Graphics.GL.SUN.SliceAccum"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2042 \ , "Graphics.GL.SUN.TriangleList"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2043 \ , "Graphics.GL.SUN.Vertex"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2044 \ , "Graphics.GL.SUNX"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2045 \ , "Graphics.GL.SUNX.ConstantData"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2046 \ , "Graphics.GL.ThreeDFX"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2047 \ , "Graphics.GL.ThreeDFX.Multisample"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2048 \ , "Graphics.GL.ThreeDFX.Tbuffer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2049 \ , "Graphics.GL.ThreeDFX.TextureCompressionFXT1"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2050 \ , "Graphics.GL.Tokens"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2051 \ , "Graphics.GL.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2052 \ , "Graphics.GL.Version10"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2053 \ , "Graphics.GL.Version11"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2054 \ , "Graphics.GL.Version12"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2055 \ , "Graphics.GL.Version13"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2056 \ , "Graphics.GL.Version14"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2057 \ , "Graphics.GL.Version15"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2058 \ , "Graphics.GL.Version20"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2059 \ , "Graphics.GL.Version21"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2060 \ , "Graphics.GL.WIN"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2061 \ , "Graphics.GL.WIN.PhongShading"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2062 \ , "Graphics.GL.WIN.SpecularFog"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2063 \ , "Test.QuickCheck"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2064 \ , "Test.QuickCheck.All"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2065 \ , "Test.QuickCheck.Arbitrary"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2066 \ , "Test.QuickCheck.Exception"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2067 \ , "Test.QuickCheck.Function"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2068 \ , "Test.QuickCheck.Gen"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2069 \ , "Test.QuickCheck.Gen.Unsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2070 \ , "Test.QuickCheck.Modifiers"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2071 \ , "Test.QuickCheck.Monadic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2072 \ , "Test.QuickCheck.Poly"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2073 \ , "Test.QuickCheck.Property"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2074 \ , "Test.QuickCheck.Random"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2075 \ , "Test.QuickCheck.State"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2076 \ , "Test.QuickCheck.Test"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2077 \ , "Test.QuickCheck.Text"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2078 \ , "Data.StateVar"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2079 \ , "Graphics.Win32"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2080 \ , "Graphics.Win32.Control"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2081 \ , "Graphics.Win32.Dialogue"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2082 \ , "Graphics.Win32.GDI"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2083 \ , "Graphics.Win32.GDI.AlphaBlend"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2084 \ , "Graphics.Win32.GDI.Bitmap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2085 \ , "Graphics.Win32.GDI.Brush"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2086 \ , "Graphics.Win32.GDI.Clip"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2087 \ , "Graphics.Win32.GDI.Font"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2088 \ , "Graphics.Win32.GDI.Graphics2D"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2089 \ , "Graphics.Win32.GDI.HDC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2090 \ , "Graphics.Win32.GDI.Palette"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2091 \ , "Graphics.Win32.GDI.Path"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2092 \ , "Graphics.Win32.GDI.Pen"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2093 \ , "Graphics.Win32.GDI.Region"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2094 \ , "Graphics.Win32.GDI.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2095 \ , "Graphics.Win32.Icon"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2096 \ , "Graphics.Win32.Key"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2097 \ , "Graphics.Win32.LayeredWindow"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2098 \ , "Graphics.Win32.Menu"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2099 \ , "Graphics.Win32.Message"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2100 \ , "Graphics.Win32.Misc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2101 \ , "Graphics.Win32.Resource"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2102 \ , "Graphics.Win32.Window"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2103 \ , "Graphics.Win32.Window.AnimateWindow"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2104 \ , "Graphics.Win32.Window.ForegroundWindow"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2105 \ , "Graphics.Win32.Window.HotKey"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2106 \ , "Graphics.Win32.Window.IMM"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2107 \ , "Graphics.Win32.Window.PostMessage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2108 \ , "Media.Win32"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2109 \ , "System.Win32"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2110 \ , "System.Win32.Automation"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2111 \ , "System.Win32.Automation.Input"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2112 \ , "System.Win32.Automation.Input.Key"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2113 \ , "System.Win32.Automation.Input.Mouse"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2114 \ , "System.Win32.Console"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2115 \ , "System.Win32.Console.CtrlHandler"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2116 \ , "System.Win32.Console.HWND"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2117 \ , "System.Win32.Console.Title"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2118 \ , "System.Win32.DLL"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2119 \ , "System.Win32.DebugApi"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2120 \ , "System.Win32.Encoding"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2121 \ , "System.Win32.Exception.Unsupported"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2122 \ , "System.Win32.File"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2123 \ , "System.Win32.FileMapping"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2124 \ , "System.Win32.HardLink"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2125 \ , "System.Win32.Info"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2126 \ , "System.Win32.Info.Computer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2127 \ , "System.Win32.Info.Version"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2128 \ , "System.Win32.Mem"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2129 \ , "System.Win32.MinTTY"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2130 \ , "System.Win32.NLS"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2131 \ , "System.Win32.Path"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2132 \ , "System.Win32.Process"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2133 \ , "System.Win32.Registry"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2134 \ , "System.Win32.Security"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2135 \ , "System.Win32.Shell"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2136 \ , "System.Win32.SimpleMAPI"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2137 \ , "System.Win32.String"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2138 \ , "System.Win32.SymbolicLink"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2139 \ , "System.Win32.Thread"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2140 \ , "System.Win32.Time"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2141 \ , "System.Win32.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2142 \ , "System.Win32.Utils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2143 \ , "System.Win32.Word"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2144 \ , "Data.Array"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2145 \ , "Data.Array.Base"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2146 \ , "Data.Array.IArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2147 \ , "Data.Array.IO"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2148 \ , "Data.Array.IO.Internals"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2149 \ , "Data.Array.IO.Safe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2150 \ , "Data.Array.MArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2151 \ , "Data.Array.MArray.Safe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2152 \ , "Data.Array.ST"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2153 \ , "Data.Array.ST.Safe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2154 \ , "Data.Array.Storable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2155 \ , "Data.Array.Storable.Internals"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2156 \ , "Data.Array.Storable.Safe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2157 \ , "Data.Array.Unboxed"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2158 \ , "Data.Array.Unsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2159 \ , "Control.Concurrent.Async"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2160 \ , "Data.Attoparsec"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2161 \ , "Data.Attoparsec.ByteString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2162 \ , "Data.Attoparsec.ByteString.Char8"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2163 \ , "Data.Attoparsec.ByteString.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2164 \ , "Data.Attoparsec.Char8"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2165 \ , "Data.Attoparsec.Combinator"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2166 \ , "Data.Attoparsec.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2167 \ , "Data.Attoparsec.Internal.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2168 \ , "Data.Attoparsec.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2169 \ , "Data.Attoparsec.Number"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2170 \ , "Data.Attoparsec.Text"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2171 \ , "Data.Attoparsec.Text.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2172 \ , "Data.Attoparsec.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2173 \ , "Data.Attoparsec.Zepto"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2174 \ , "Control.Applicative"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2175 \ , "Control.Arrow"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2176 \ , "Control.Category"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2177 \ , "Control.Concurrent"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2178 \ , "Control.Concurrent.Chan"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2179 \ , "Control.Concurrent.MVar"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2180 \ , "Control.Concurrent.QSem"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2181 \ , "Control.Concurrent.QSemN"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2182 \ , "Control.Exception"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2183 \ , "Control.Exception.Base"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2184 \ , "Control.Monad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2185 \ , "Control.Monad.Fail"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2186 \ , "Control.Monad.Fix"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2187 \ , "Control.Monad.IO.Class"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2188 \ , "Control.Monad.Instances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2189 \ , "Control.Monad.ST"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2190 \ , "Control.Monad.ST.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2191 \ , "Control.Monad.ST.Lazy.Safe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2192 \ , "Control.Monad.ST.Lazy.Unsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2193 \ , "Control.Monad.ST.Safe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2194 \ , "Control.Monad.ST.Strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2195 \ , "Control.Monad.ST.Unsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2196 \ , "Control.Monad.Zip"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2197 \ , "Data.Bifoldable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2198 \ , "Data.Bifunctor"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2199 \ , "Data.Bitraversable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2200 \ , "Data.Bits"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2201 \ , "Data.Bool"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2202 \ , "Data.Char"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2203 \ , "Data.Coerce"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2204 \ , "Data.Complex"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2205 \ , "Data.Data"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2206 \ , "Data.Dynamic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2207 \ , "Data.Either"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2208 \ , "Data.Eq"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2209 \ , "Data.Fixed"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2210 \ , "Data.Foldable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2211 \ , "Data.Function"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2212 \ , "Data.Functor"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2213 \ , "Data.Functor.Classes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2214 \ , "Data.Functor.Compose"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2215 \ , "Data.Functor.Const"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2216 \ , "Data.Functor.Identity"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2217 \ , "Data.Functor.Product"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2218 \ , "Data.Functor.Sum"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2219 \ , "Data.IORef"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2220 \ , "Data.Int"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2221 \ , "Data.Ix"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2222 \ , "Data.Kind"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2223 \ , "Data.List"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2224 \ , "Data.List.NonEmpty"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2225 \ , "Data.Maybe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2226 \ , "Data.Monoid"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2227 \ , "Data.Ord"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2228 \ , "Data.Proxy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2229 \ , "Data.Ratio"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2230 \ , "Data.STRef"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2231 \ , "Data.STRef.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2232 \ , "Data.STRef.Strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2233 \ , "Data.Semigroup"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2234 \ , "Data.String"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2235 \ , "Data.Traversable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2236 \ , "Data.Tuple"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2237 \ , "Data.Type.Bool"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2238 \ , "Data.Type.Coercion"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2239 \ , "Data.Type.Equality"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2240 \ , "Data.Typeable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2241 \ , "Data.Unique"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2242 \ , "Data.Version"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2243 \ , "Data.Void"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2244 \ , "Data.Word"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2245 \ , "Debug.Trace"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2246 \ , "Foreign"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2247 \ , "Foreign.C"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2248 \ , "Foreign.C.Error"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2249 \ , "Foreign.C.String"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2250 \ , "Foreign.C.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2251 \ , "Foreign.Concurrent"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2252 \ , "Foreign.ForeignPtr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2253 \ , "Foreign.ForeignPtr.Safe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2254 \ , "Foreign.ForeignPtr.Unsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2255 \ , "Foreign.Marshal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2256 \ , "Foreign.Marshal.Alloc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2257 \ , "Foreign.Marshal.Array"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2258 \ , "Foreign.Marshal.Error"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2259 \ , "Foreign.Marshal.Pool"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2260 \ , "Foreign.Marshal.Safe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2261 \ , "Foreign.Marshal.Unsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2262 \ , "Foreign.Marshal.Utils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2263 \ , "Foreign.Ptr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2264 \ , "Foreign.Safe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2265 \ , "Foreign.StablePtr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2266 \ , "Foreign.Storable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2267 \ , "GHC.Arr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2268 \ , "GHC.Base"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2269 \ , "GHC.ByteOrder"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2270 \ , "GHC.Char"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2271 \ , "GHC.Clock"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2272 \ , "GHC.Conc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2273 \ , "GHC.Conc.IO"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2274 \ , "GHC.Conc.Signal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2275 \ , "GHC.Conc.Sync"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2276 \ , "GHC.ConsoleHandler"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2277 \ , "GHC.Constants"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2278 \ , "GHC.Desugar"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2279 \ , "GHC.Enum"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2280 \ , "GHC.Environment"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2281 \ , "GHC.Err"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2282 \ , "GHC.Event"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2283 \ , "GHC.Exception"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2284 \ , "GHC.ExecutionStack"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2285 \ , "GHC.ExecutionStack.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2286 \ , "GHC.Exts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2287 \ , "GHC.Fingerprint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2288 \ , "GHC.Fingerprint.Type"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2289 \ , "GHC.Float"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2290 \ , "GHC.Float.ConversionUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2291 \ , "GHC.Float.RealFracMethods"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2292 \ , "GHC.Foreign"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2293 \ , "GHC.ForeignPtr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2294 \ , "GHC.GHCi"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2295 \ , "GHC.Generics"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2296 \ , "GHC.IO"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2297 \ , "GHC.IO.Buffer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2298 \ , "GHC.IO.BufferedIO"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2299 \ , "GHC.IO.Device"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2300 \ , "GHC.IO.Encoding"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2301 \ , "GHC.IO.Encoding.CodePage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2302 \ , "GHC.IO.Encoding.Failure"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2303 \ , "GHC.IO.Encoding.Iconv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2304 \ , "GHC.IO.Encoding.Latin1"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2305 \ , "GHC.IO.Encoding.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2306 \ , "GHC.IO.Encoding.UTF16"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2307 \ , "GHC.IO.Encoding.UTF32"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2308 \ , "GHC.IO.Encoding.UTF8"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2309 \ , "GHC.IO.Exception"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2310 \ , "GHC.IO.FD"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2311 \ , "GHC.IO.Handle"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2312 \ , "GHC.IO.Handle.FD"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2313 \ , "GHC.IO.Handle.Internals"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2314 \ , "GHC.IO.Handle.Lock"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2315 \ , "GHC.IO.Handle.Text"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2316 \ , "GHC.IO.Handle.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2317 \ , "GHC.IO.IOMode"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2318 \ , "GHC.IO.Unsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2319 \ , "GHC.IOArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2320 \ , "GHC.IORef"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2321 \ , "GHC.Int"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2322 \ , "GHC.List"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2323 \ , "GHC.MVar"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2324 \ , "GHC.Natural"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2325 \ , "GHC.Num"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2326 \ , "GHC.OldList"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2327 \ , "GHC.OverloadedLabels"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2328 \ , "GHC.PArr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2329 \ , "GHC.Pack"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2330 \ , "GHC.Profiling"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2331 \ , "GHC.Ptr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2332 \ , "GHC.RTS.Flags"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2333 \ , "GHC.Read"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2334 \ , "GHC.Real"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2335 \ , "GHC.Records"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2336 \ , "GHC.ST"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2337 \ , "GHC.STRef"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2338 \ , "GHC.Show"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2339 \ , "GHC.Stable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2340 \ , "GHC.Stack"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2341 \ , "GHC.Stack.CCS"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2342 \ , "GHC.Stack.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2343 \ , "GHC.StaticPtr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2344 \ , "GHC.Stats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2345 \ , "GHC.Storable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2346 \ , "GHC.TopHandler"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2347 \ , "GHC.TypeLits"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2348 \ , "GHC.TypeNats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2349 \ , "GHC.Unicode"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2350 \ , "GHC.Weak"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2351 \ , "GHC.Word"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2352 \ , "Numeric"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2353 \ , "Numeric.Natural"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2354 \ , "Prelude"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2355 \ , "System.CPUTime"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2356 \ , "System.Console.GetOpt"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2357 \ , "System.Environment"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2358 \ , "System.Environment.Blank"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2359 \ , "System.Exit"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2360 \ , "System.IO"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2361 \ , "System.IO.Error"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2362 \ , "System.IO.Unsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2363 \ , "System.Info"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2364 \ , "System.Mem"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2365 \ , "System.Mem.StableName"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2366 \ , "System.Mem.Weak"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2367 \ , "System.Posix.Internals"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2368 \ , "System.Posix.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2369 \ , "System.Timeout"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2370 \ , "Text.ParserCombinators.ReadP"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2371 \ , "Text.ParserCombinators.ReadPrec"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2372 \ , "Text.Printf"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2373 \ , "Text.Read"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2374 \ , "Text.Read.Lex"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2375 \ , "Text.Show"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2376 \ , "Text.Show.Functions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2377 \ , "Type.Reflection"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2378 \ , "Type.Reflection.Unsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2379 \ , "Unsafe.Coerce"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2380 \ , "Data.ByteString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2381 \ , "Data.ByteString.Builder"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2382 \ , "Data.ByteString.Builder.Extra"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2383 \ , "Data.ByteString.Builder.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2384 \ , "Data.ByteString.Builder.Prim"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2385 \ , "Data.ByteString.Builder.Prim.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2386 \ , "Data.ByteString.Char8"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2387 \ , "Data.ByteString.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2388 \ , "Data.ByteString.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2389 \ , "Data.ByteString.Lazy.Builder"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2390 \ , "Data.ByteString.Lazy.Builder.ASCII"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2391 \ , "Data.ByteString.Lazy.Builder.Extras"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2392 \ , "Data.ByteString.Lazy.Char8"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2393 \ , "Data.ByteString.Lazy.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2394 \ , "Data.ByteString.Short"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2395 \ , "Data.ByteString.Short.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2396 \ , "Data.ByteString.Unsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2397 \ , "Data.CallStack"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2398 \ , "Data.CaseInsensitive"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2399 \ , "Data.CaseInsensitive.Unsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2400 \ , "Network.CGI"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2401 \ , "Network.CGI.Compat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2402 \ , "Network.CGI.Cookie"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2403 \ , "Network.CGI.Monad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2404 \ , "Network.CGI.Protocol"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2405 \ , "Data.Graph"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2406 \ , "Data.IntMap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2407 \ , "Data.IntMap.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2408 \ , "Data.IntMap.Internal.Debug"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2409 \ , "Data.IntMap.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2410 \ , "Data.IntMap.Merge.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2411 \ , "Data.IntMap.Merge.Strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2412 \ , "Data.IntMap.Strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2413 \ , "Data.IntSet"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2414 \ , "Data.IntSet.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2415 \ , "Data.Map"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2416 \ , "Data.Map.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2417 \ , "Data.Map.Internal.Debug"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2418 \ , "Data.Map.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2419 \ , "Data.Map.Lazy.Merge"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2420 \ , "Data.Map.Merge.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2421 \ , "Data.Map.Merge.Strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2422 \ , "Data.Map.Strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2423 \ , "Data.Map.Strict.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2424 \ , "Data.Map.Strict.Merge"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2425 \ , "Data.Sequence"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2426 \ , "Data.Sequence.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2427 \ , "Data.Sequence.Internal.Sorting"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2428 \ , "Data.Set"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2429 \ , "Data.Set.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2430 \ , "Data.Tree"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2431 \ , "Utils.Containers.Internal.BitQueue"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2432 \ , "Utils.Containers.Internal.BitUtil"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2433 \ , "Utils.Containers.Internal.StrictPair"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2434 \ , "Control.DeepSeq"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2435 \ , "System.Directory"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2436 \ , "System.Directory.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2437 \ , "System.Directory.Internal.Prelude"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2438 \ , "Control.Monad.Catch"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2439 \ , "Control.Monad.Catch.Pure"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2440 \ , "Control.Exception.Extensible"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2441 \ , "Data.Graph.Inductive"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2442 \ , "Data.Graph.Inductive.Basic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2443 \ , "Data.Graph.Inductive.Example"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2444 \ , "Data.Graph.Inductive.Graph"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2445 \ , "Data.Graph.Inductive.Internal.Heap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2446 \ , "Data.Graph.Inductive.Internal.Queue"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2447 \ , "Data.Graph.Inductive.Internal.RootPath"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2448 \ , "Data.Graph.Inductive.Internal.Thread"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2449 \ , "Data.Graph.Inductive.Monad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2450 \ , "Data.Graph.Inductive.Monad.IOArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2451 \ , "Data.Graph.Inductive.Monad.STArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2452 \ , "Data.Graph.Inductive.NodeMap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2453 \ , "Data.Graph.Inductive.PatriciaTree"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2454 \ , "Data.Graph.Inductive.Query"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2455 \ , "Data.Graph.Inductive.Query.ArtPoint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2456 \ , "Data.Graph.Inductive.Query.BCC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2457 \ , "Data.Graph.Inductive.Query.BFS"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2458 \ , "Data.Graph.Inductive.Query.DFS"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2459 \ , "Data.Graph.Inductive.Query.Dominators"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2460 \ , "Data.Graph.Inductive.Query.GVD"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2461 \ , "Data.Graph.Inductive.Query.Indep"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2462 \ , "Data.Graph.Inductive.Query.MST"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2463 \ , "Data.Graph.Inductive.Query.MaxFlow"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2464 \ , "Data.Graph.Inductive.Query.MaxFlow2"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2465 \ , "Data.Graph.Inductive.Query.Monad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2466 \ , "Data.Graph.Inductive.Query.SP"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2467 \ , "Data.Graph.Inductive.Query.TransClos"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2468 \ , "Data.Graph.Inductive.Tree"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2469 \ , "System.FilePath"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2470 \ , "System.FilePath.Posix"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2471 \ , "System.FilePath.Windows"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2472 \ , "Numeric.Fixed"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2473 \ , "Annotations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2474 \ , "ApiAnnotation"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2475 \ , "Ar"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2476 \ , "AsmCodeGen"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2477 \ , "AsmUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2478 \ , "Avail"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2479 \ , "Bag"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2480 \ , "BasicTypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2481 \ , "BinFingerprint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2482 \ , "BinIface"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2483 \ , "Binary"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2484 \ , "Bitmap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2485 \ , "BkpSyn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2486 \ , "BlockId"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2487 \ , "BooleanFormula"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2488 \ , "BufWrite"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2489 \ , "BuildTyCl"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2490 \ , "ByteCodeAsm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2491 \ , "ByteCodeGen"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2492 \ , "ByteCodeInstr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2493 \ , "ByteCodeItbls"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2494 \ , "ByteCodeLink"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2495 \ , "ByteCodeTypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2496 \ , "CLabel"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2497 \ , "CPrim"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2498 \ , "CSE"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2499 \ , "CallArity"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2500 \ , "CgUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2501 \ , "Check"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2502 \ , "Class"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2503 \ , "CmdLineParser"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2504 \ , "Cmm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2505 \ , "CmmBuildInfoTables"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2506 \ , "CmmCallConv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2507 \ , "CmmCommonBlockElim"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2508 \ , "CmmContFlowOpt"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2509 \ , "CmmExpr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2510 \ , "CmmImplementSwitchPlans"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2511 \ , "CmmInfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2512 \ , "CmmLayoutStack"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2513 \ , "CmmLex"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2514 \ , "CmmLint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2515 \ , "CmmLive"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2516 \ , "CmmMachOp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2517 \ , "CmmMonad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2518 \ , "CmmNode"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2519 \ , "CmmOpt"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2520 \ , "CmmParse"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2521 \ , "CmmPipeline"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2522 \ , "CmmProcPoint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2523 \ , "CmmSink"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2524 \ , "CmmSwitch"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2525 \ , "CmmType"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2526 \ , "CmmUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2527 \ , "CoAxiom"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2528 \ , "CodeGen.Platform"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2529 \ , "CodeGen.Platform.ARM"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2530 \ , "CodeGen.Platform.ARM64"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2531 \ , "CodeGen.Platform.NoRegs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2532 \ , "CodeGen.Platform.PPC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2533 \ , "CodeGen.Platform.PPC_Darwin"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2534 \ , "CodeGen.Platform.SPARC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2535 \ , "CodeGen.Platform.X86"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2536 \ , "CodeGen.Platform.X86_64"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2537 \ , "CodeOutput"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2538 \ , "Coercion"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2539 \ , "ConLike"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2540 \ , "Config"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2541 \ , "Constants"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2542 \ , "Convert"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2543 \ , "CoreArity"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2544 \ , "CoreFVs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2545 \ , "CoreLint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2546 \ , "CoreMonad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2547 \ , "CoreOpt"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2548 \ , "CorePrep"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2549 \ , "CoreSeq"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2550 \ , "CoreStats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2551 \ , "CoreSubst"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2552 \ , "CoreSyn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2553 \ , "CoreTidy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2554 \ , "CoreToStg"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2555 \ , "CoreUnfold"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2556 \ , "CoreUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2557 \ , "CostCentre"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2558 \ , "Coverage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2559 \ , "Ctype"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2560 \ , "DataCon"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2561 \ , "Debug"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2562 \ , "Debugger"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2563 \ , "DebuggerUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2564 \ , "Demand"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2565 \ , "Desugar"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2566 \ , "Digraph"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2567 \ , "DmdAnal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2568 \ , "DriverBkp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2569 \ , "DriverMkDepend"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2570 \ , "DriverPhases"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2571 \ , "DriverPipeline"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2572 \ , "DsArrows"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2573 \ , "DsBinds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2574 \ , "DsCCall"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2575 \ , "DsExpr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2576 \ , "DsForeign"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2577 \ , "DsGRHSs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2578 \ , "DsListComp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2579 \ , "DsMeta"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2580 \ , "DsMonad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2581 \ , "DsUsage"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2582 \ , "DsUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2583 \ , "Dwarf"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2584 \ , "Dwarf.Constants"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2585 \ , "Dwarf.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2586 \ , "DynFlags"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2587 \ , "DynamicLoading"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2588 \ , "Elf"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2589 \ , "Encoding"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2590 \ , "EnumSet"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2591 \ , "ErrUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2592 \ , "Exception"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2593 \ , "Exitify"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2594 \ , "FV"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2595 \ , "FamInst"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2596 \ , "FamInstEnv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2597 \ , "FastFunctions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2598 \ , "FastMutInt"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2599 \ , "FastString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2600 \ , "FastStringEnv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2601 \ , "FieldLabel"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2602 \ , "FileCleanup"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2603 \ , "Finder"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2604 \ , "Fingerprint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2605 \ , "FiniteMap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2606 \ , "FlagChecker"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2607 \ , "FloatIn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2608 \ , "FloatOut"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2609 \ , "ForeignCall"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2610 \ , "Format"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2611 \ , "FunDeps"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2612 \ , "GHC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2613 \ , "GHCi"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2614 \ , "GhcMake"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2615 \ , "GhcMonad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2616 \ , "GhcPlugins"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2617 \ , "GraphBase"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2618 \ , "GraphColor"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2619 \ , "GraphOps"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2620 \ , "GraphPpr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2621 \ , "HaddockUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2622 \ , "HeaderInfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2623 \ , "Hooks"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2624 \ , "Hoopl.Block"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2625 \ , "Hoopl.Collections"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2626 \ , "Hoopl.Dataflow"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2627 \ , "Hoopl.Graph"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2628 \ , "Hoopl.Label"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2629 \ , "Hoopl.Unique"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2630 \ , "HsBinds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2631 \ , "HsDecls"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2632 \ , "HsDoc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2633 \ , "HsDumpAst"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2634 \ , "HsExpr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2635 \ , "HsExtension"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2636 \ , "HsImpExp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2637 \ , "HsLit"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2638 \ , "HsPat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2639 \ , "HsSyn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2640 \ , "HsTypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2641 \ , "HsUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2642 \ , "HscMain"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2643 \ , "HscStats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2644 \ , "HscTypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2645 \ , "IOEnv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2646 \ , "Id"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2647 \ , "IdInfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2648 \ , "IfaceEnv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2649 \ , "IfaceSyn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2650 \ , "IfaceType"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2651 \ , "Inst"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2652 \ , "InstEnv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2653 \ , "Instruction"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2654 \ , "InteractiveEval"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2655 \ , "InteractiveEvalTypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2656 \ , "Json"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2657 \ , "Kind"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2658 \ , "KnownUniques"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2659 \ , "Lexeme"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2660 \ , "Lexer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2661 \ , "LiberateCase"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2662 \ , "Linker"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2663 \ , "ListSetOps"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2664 \ , "ListT"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2665 \ , "Literal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2666 \ , "Llvm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2667 \ , "Llvm.AbsSyn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2668 \ , "Llvm.MetaData"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2669 \ , "Llvm.PpLlvm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2670 \ , "Llvm.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2671 \ , "LlvmCodeGen"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2672 \ , "LlvmCodeGen.Base"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2673 \ , "LlvmCodeGen.CodeGen"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2674 \ , "LlvmCodeGen.Data"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2675 \ , "LlvmCodeGen.Ppr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2676 \ , "LlvmCodeGen.Regs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2677 \ , "LlvmMangler"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2678 \ , "LoadIface"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2679 \ , "Match"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2680 \ , "MatchCon"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2681 \ , "MatchLit"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2682 \ , "Maybes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2683 \ , "MkCore"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2684 \ , "MkGraph"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2685 \ , "MkId"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2686 \ , "MkIface"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2687 \ , "Module"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2688 \ , "MonadUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2689 \ , "NCGMonad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2690 \ , "Name"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2691 \ , "NameCache"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2692 \ , "NameEnv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2693 \ , "NameSet"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2694 \ , "NameShape"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2695 \ , "OccName"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2696 \ , "OccurAnal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2697 \ , "OptCoercion"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2698 \ , "OrdList"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2699 \ , "Outputable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2700 \ , "PIC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2701 \ , "PPC.CodeGen"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2702 \ , "PPC.Cond"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2703 \ , "PPC.Instr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2704 \ , "PPC.Ppr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2705 \ , "PPC.RegInfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2706 \ , "PPC.Regs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2707 \ , "PackageConfig"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2708 \ , "Packages"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2709 \ , "Pair"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2710 \ , "Panic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2711 \ , "Parser"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2712 \ , "PatSyn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2713 \ , "PipelineMonad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2714 \ , "PlaceHolder"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2715 \ , "Platform"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2716 \ , "PlatformConstants"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2717 \ , "Plugins"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2718 \ , "PmExpr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2719 \ , "PprBase"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2720 \ , "PprC"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2721 \ , "PprCmm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2722 \ , "PprCmmDecl"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2723 \ , "PprCmmExpr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2724 \ , "PprColour"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2725 \ , "PprCore"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2726 \ , "PprTyThing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2727 \ , "PrelInfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2728 \ , "PrelNames"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2729 \ , "PrelRules"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2730 \ , "Pretty"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2731 \ , "PrimOp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2732 \ , "ProfInit"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2733 \ , "RdrHsSyn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2734 \ , "RdrName"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2735 \ , "Reg"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2736 \ , "RegAlloc.Graph.ArchBase"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2737 \ , "RegAlloc.Graph.ArchX86"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2738 \ , "RegAlloc.Graph.Coalesce"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2739 \ , "RegAlloc.Graph.Main"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2740 \ , "RegAlloc.Graph.Spill"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2741 \ , "RegAlloc.Graph.SpillClean"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2742 \ , "RegAlloc.Graph.SpillCost"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2743 \ , "RegAlloc.Graph.Stats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2744 \ , "RegAlloc.Graph.TrivColorable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2745 \ , "RegAlloc.Linear.Base"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2746 \ , "RegAlloc.Linear.FreeRegs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2747 \ , "RegAlloc.Linear.JoinToTargets"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2748 \ , "RegAlloc.Linear.Main"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2749 \ , "RegAlloc.Linear.PPC.FreeRegs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2750 \ , "RegAlloc.Linear.SPARC.FreeRegs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2751 \ , "RegAlloc.Linear.StackMap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2752 \ , "RegAlloc.Linear.State"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2753 \ , "RegAlloc.Linear.Stats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2754 \ , "RegAlloc.Linear.X86.FreeRegs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2755 \ , "RegAlloc.Linear.X86_64.FreeRegs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2756 \ , "RegAlloc.Liveness"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2757 \ , "RegClass"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2758 \ , "RepType"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2759 \ , "RnBinds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2760 \ , "RnEnv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2761 \ , "RnExpr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2762 \ , "RnFixity"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2763 \ , "RnHsDoc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2764 \ , "RnModIface"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2765 \ , "RnNames"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2766 \ , "RnPat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2767 \ , "RnSource"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2768 \ , "RnSplice"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2769 \ , "RnTypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2770 \ , "RnUnbound"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2771 \ , "RnUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2772 \ , "RtClosureInspect"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2773 \ , "Rules"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2774 \ , "SAT"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2775 \ , "SMRep"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2776 \ , "SPARC.AddrMode"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2777 \ , "SPARC.Base"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2778 \ , "SPARC.CodeGen"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2779 \ , "SPARC.CodeGen.Amode"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2780 \ , "SPARC.CodeGen.Base"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2781 \ , "SPARC.CodeGen.CondCode"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2782 \ , "SPARC.CodeGen.Expand"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2783 \ , "SPARC.CodeGen.Gen32"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2784 \ , "SPARC.CodeGen.Gen64"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2785 \ , "SPARC.CodeGen.Sanity"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2786 \ , "SPARC.Cond"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2787 \ , "SPARC.Imm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2788 \ , "SPARC.Instr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2789 \ , "SPARC.Ppr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2790 \ , "SPARC.Regs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2791 \ , "SPARC.ShortcutJump"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2792 \ , "SPARC.Stack"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2793 \ , "SetLevels"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2794 \ , "SimplCore"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2795 \ , "SimplEnv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2796 \ , "SimplMonad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2797 \ , "SimplStg"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2798 \ , "SimplUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2799 \ , "Simplify"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2800 \ , "SpecConstr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2801 \ , "Specialise"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2802 \ , "SrcLoc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2803 \ , "State"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2804 \ , "StaticPtrTable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2805 \ , "StgCmm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2806 \ , "StgCmmArgRep"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2807 \ , "StgCmmBind"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2808 \ , "StgCmmClosure"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2809 \ , "StgCmmCon"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2810 \ , "StgCmmEnv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2811 \ , "StgCmmExpr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2812 \ , "StgCmmExtCode"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2813 \ , "StgCmmForeign"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2814 \ , "StgCmmHeap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2815 \ , "StgCmmHpc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2816 \ , "StgCmmLayout"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2817 \ , "StgCmmMonad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2818 \ , "StgCmmPrim"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2819 \ , "StgCmmProf"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2820 \ , "StgCmmTicky"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2821 \ , "StgCmmUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2822 \ , "StgCse"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2823 \ , "StgLint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2824 \ , "StgStats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2825 \ , "StgSyn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2826 \ , "Stream"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2827 \ , "StringBuffer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2828 \ , "SysTools"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2829 \ , "SysTools.BaseDir"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2830 \ , "SysTools.ExtraObj"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2831 \ , "SysTools.Info"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2832 \ , "SysTools.Process"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2833 \ , "SysTools.Tasks"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2834 \ , "SysTools.Terminal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2835 \ , "THNames"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2836 \ , "TargetReg"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2837 \ , "TcAnnotations"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2838 \ , "TcArrows"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2839 \ , "TcBackpack"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2840 \ , "TcBinds"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2841 \ , "TcCanonical"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2842 \ , "TcClassDcl"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2843 \ , "TcDefaults"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2844 \ , "TcDeriv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2845 \ , "TcDerivInfer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2846 \ , "TcDerivUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2847 \ , "TcEnv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2848 \ , "TcErrors"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2849 \ , "TcEvidence"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2850 \ , "TcExpr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2851 \ , "TcFlatten"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2852 \ , "TcForeign"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2853 \ , "TcGenDeriv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2854 \ , "TcGenFunctor"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2855 \ , "TcGenGenerics"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2856 \ , "TcHsSyn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2857 \ , "TcHsType"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2858 \ , "TcIface"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2859 \ , "TcInstDcls"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2860 \ , "TcInteract"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2861 \ , "TcMType"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2862 \ , "TcMatches"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2863 \ , "TcPat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2864 \ , "TcPatSyn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2865 \ , "TcPluginM"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2866 \ , "TcRnDriver"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2867 \ , "TcRnExports"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2868 \ , "TcRnMonad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2869 \ , "TcRnTypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2870 \ , "TcRules"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2871 \ , "TcSMonad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2872 \ , "TcSigs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2873 \ , "TcSimplify"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2874 \ , "TcSplice"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2875 \ , "TcTyClsDecls"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2876 \ , "TcTyDecls"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2877 \ , "TcType"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2878 \ , "TcTypeNats"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2879 \ , "TcTypeable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2880 \ , "TcUnify"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2881 \ , "TcValidity"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2882 \ , "TidyPgm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2883 \ , "TmOracle"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2884 \ , "ToIface"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2885 \ , "TrieMap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2886 \ , "TyCoRep"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2887 \ , "TyCon"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2888 \ , "Type"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2889 \ , "TysPrim"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2890 \ , "TysWiredIn"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2891 \ , "UnVarGraph"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2892 \ , "UnariseStg"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2893 \ , "Unify"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2894 \ , "UniqDFM"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2895 \ , "UniqDSet"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2896 \ , "UniqFM"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2897 \ , "UniqMap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2898 \ , "UniqSet"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2899 \ , "UniqSupply"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2900 \ , "Unique"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2901 \ , "Util"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2902 \ , "Var"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2903 \ , "VarEnv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2904 \ , "VarSet"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2905 \ , "Vectorise"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2906 \ , "Vectorise.Builtins"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2907 \ , "Vectorise.Builtins.Base"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2908 \ , "Vectorise.Builtins.Initialise"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2909 \ , "Vectorise.Convert"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2910 \ , "Vectorise.Env"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2911 \ , "Vectorise.Exp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2912 \ , "Vectorise.Generic.Description"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2913 \ , "Vectorise.Generic.PADict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2914 \ , "Vectorise.Generic.PAMethods"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2915 \ , "Vectorise.Generic.PData"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2916 \ , "Vectorise.Monad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2917 \ , "Vectorise.Monad.Base"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2918 \ , "Vectorise.Monad.Global"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2919 \ , "Vectorise.Monad.InstEnv"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2920 \ , "Vectorise.Monad.Local"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2921 \ , "Vectorise.Monad.Naming"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2922 \ , "Vectorise.Type.Classify"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2923 \ , "Vectorise.Type.Env"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2924 \ , "Vectorise.Type.TyConDecl"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2925 \ , "Vectorise.Type.Type"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2926 \ , "Vectorise.Utils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2927 \ , "Vectorise.Utils.Base"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2928 \ , "Vectorise.Utils.Closure"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2929 \ , "Vectorise.Utils.Hoisting"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2930 \ , "Vectorise.Utils.PADict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2931 \ , "Vectorise.Utils.Poly"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2932 \ , "Vectorise.Var"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2933 \ , "Vectorise.Vect"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2934 \ , "WorkWrap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2935 \ , "WwLib"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2936 \ , "X86.CodeGen"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2937 \ , "X86.Cond"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2938 \ , "X86.Instr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2939 \ , "X86.Ppr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2940 \ , "X86.RegInfo"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2941 \ , "X86.Regs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2942 \ , "Numeric.Half"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2943 \ , "Data.Hashable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2944 \ , "Data.Hashable.Lifted"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2945 \ , "Language.Haskell.Lexer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2946 \ , "Language.Haskell.ParseMonad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2947 \ , "Language.Haskell.ParseUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2948 \ , "Language.Haskell.Parser"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2949 \ , "Language.Haskell.Pretty"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2950 \ , "Language.Haskell.Syntax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2951 \ , "Control.Monad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2952 \ , "Data.Array"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2953 \ , "Data.Bits"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2954 \ , "Data.Char"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2955 \ , "Data.Complex"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2956 \ , "Data.Int"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2957 \ , "Data.Ix"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2958 \ , "Data.List"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2959 \ , "Data.Maybe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2960 \ , "Data.Ratio"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2961 \ , "Data.Word"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2962 \ , "Foreign"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2963 \ , "Foreign.C"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2964 \ , "Foreign.C.Error"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2965 \ , "Foreign.C.String"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2966 \ , "Foreign.C.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2967 \ , "Foreign.ForeignPtr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2968 \ , "Foreign.Marshal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2969 \ , "Foreign.Marshal.Alloc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2970 \ , "Foreign.Marshal.Array"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2971 \ , "Foreign.Marshal.Error"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2972 \ , "Foreign.Marshal.Utils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2973 \ , "Foreign.Ptr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2974 \ , "Foreign.StablePtr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2975 \ , "Foreign.Storable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2976 \ , "Numeric"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2977 \ , "Prelude"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2978 \ , "System.Environment"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2979 \ , "System.Exit"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2980 \ , "System.IO"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2981 \ , "System.IO.Error"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2982 \ , "Array"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2983 \ , "Bits"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2984 \ , "CError"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2985 \ , "CForeign"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2986 \ , "CPUTime"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2987 \ , "CString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2988 \ , "CTypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2989 \ , "Char"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2990 \ , "Complex"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2991 \ , "Directory"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2992 \ , "ForeignPtr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2993 \ , "IO"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2994 \ , "Int"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2995 \ , "Ix"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2996 \ , "List"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2997 \ , "Locale"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2998 \ , "MarshalAlloc"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
2999 \ , "MarshalArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3000 \ , "MarshalError"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3001 \ , "MarshalUtils"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3002 \ , "Maybe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3003 \ , "Monad"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3004 \ , "Numeric"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3005 \ , "Prelude"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3006 \ , "Ptr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3007 \ , "Random"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3008 \ , "Ratio"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3009 \ , "StablePtr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3010 \ , "Storable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3011 \ , "System"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3012 \ , "Time"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3013 \ , "Word"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3014 \ , "Trace.Hpc.Mix"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3015 \ , "Trace.Hpc.Reflect"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3016 \ , "Trace.Hpc.Tix"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3017 \ , "Trace.Hpc.Util"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3018 \ , "Text.Html"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3019 \ , "Text.Html.BlockTable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3020 \ , "GHC.Integer.Logarithms.Compat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3021 \ , "Math.NumberTheory.Logarithms"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3022 \ , "Math.NumberTheory.Powers.Integer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3023 \ , "Math.NumberTheory.Powers.Natural"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3024 \ , "Control.Monad.Cont"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3025 \ , "Control.Monad.Cont.Class"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3026 \ , "Control.Monad.Error"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3027 \ , "Control.Monad.Error.Class"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3028 \ , "Control.Monad.Except"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3029 \ , "Control.Monad.Identity"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3030 \ , "Control.Monad.List"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3031 \ , "Control.Monad.RWS"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3032 \ , "Control.Monad.RWS.Class"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3033 \ , "Control.Monad.RWS.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3034 \ , "Control.Monad.RWS.Strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3035 \ , "Control.Monad.Reader"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3036 \ , "Control.Monad.Reader.Class"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3037 \ , "Control.Monad.State"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3038 \ , "Control.Monad.State.Class"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3039 \ , "Control.Monad.State.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3040 \ , "Control.Monad.State.Strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3041 \ , "Control.Monad.Trans"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3042 \ , "Control.Monad.Writer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3043 \ , "Control.Monad.Writer.Class"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3044 \ , "Control.Monad.Writer.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3045 \ , "Control.Monad.Writer.Strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3046 \ , "Network.Multipart"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3047 \ , "Network.Multipart.Header"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3048 \ , "Network"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3049 \ , "Network.BSD"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3050 \ , "Network.Socket"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3051 \ , "Network.Socket.ByteString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3052 \ , "Network.Socket.ByteString.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3053 \ , "Network.Socket.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3054 \ , "Network.URI"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3055 \ , "System.Locale"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3056 \ , "System.Time"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3057 \ , "Control.Parallel"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3058 \ , "Control.Parallel.Strategies"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3059 \ , "Control.Seq"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3060 \ , "Text.Parsec"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3061 \ , "Text.Parsec.ByteString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3062 \ , "Text.Parsec.ByteString.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3063 \ , "Text.Parsec.Char"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3064 \ , "Text.Parsec.Combinator"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3065 \ , "Text.Parsec.Error"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3066 \ , "Text.Parsec.Expr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3067 \ , "Text.Parsec.Language"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3068 \ , "Text.Parsec.Perm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3069 \ , "Text.Parsec.Pos"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3070 \ , "Text.Parsec.Prim"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3071 \ , "Text.Parsec.String"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3072 \ , "Text.Parsec.Text"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3073 \ , "Text.Parsec.Text.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3074 \ , "Text.Parsec.Token"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3075 \ , "Text.ParserCombinators.Parsec"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3076 \ , "Text.ParserCombinators.Parsec.Char"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3077 \ , "Text.ParserCombinators.Parsec.Combinator"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3078 \ , "Text.ParserCombinators.Parsec.Error"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3079 \ , "Text.ParserCombinators.Parsec.Expr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3080 \ , "Text.ParserCombinators.Parsec.Language"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3081 \ , "Text.ParserCombinators.Parsec.Perm"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3082 \ , "Text.ParserCombinators.Parsec.Pos"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3083 \ , "Text.ParserCombinators.Parsec.Prim"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3084 \ , "Text.ParserCombinators.Parsec.Token"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3085 \ , "Text.PrettyPrint"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3086 \ , "Text.PrettyPrint.Annotated"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3087 \ , "Text.PrettyPrint.Annotated.HughesPJ"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3088 \ , "Text.PrettyPrint.Annotated.HughesPJClass"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3089 \ , "Text.PrettyPrint.HughesPJ"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3090 \ , "Text.PrettyPrint.HughesPJClass"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3091 \ , "Control.Monad.Primitive"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3092 \ , "Data.Primitive"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3093 \ , "Data.Primitive.Addr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3094 \ , "Data.Primitive.Array"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3095 \ , "Data.Primitive.ByteArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3096 \ , "Data.Primitive.MVar"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3097 \ , "Data.Primitive.MachDeps"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3098 \ , "Data.Primitive.MutVar"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3099 \ , "Data.Primitive.PrimArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3100 \ , "Data.Primitive.Ptr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3101 \ , "Data.Primitive.SmallArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3102 \ , "Data.Primitive.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3103 \ , "Data.Primitive.UnliftedArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3104 \ , "System.Cmd"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3105 \ , "System.Process"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3106 \ , "System.Process.Internals"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3107 \ , "System.Random"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3108 \ , "Text.Regex.Base"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3109 \ , "Text.Regex.Base.Context"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3110 \ , "Text.Regex.Base.Impl"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3111 \ , "Text.Regex.Base.RegexLike"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3112 \ , "Text.Regex"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3113 \ , "Text.Regex.Posix"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3114 \ , "Text.Regex.Posix.ByteString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3115 \ , "Text.Regex.Posix.ByteString.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3116 \ , "Text.Regex.Posix.Sequence"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3117 \ , "Text.Regex.Posix.String"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3118 \ , "Text.Regex.Posix.Wrap"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3119 \ , "Data.ByteString.Builder.Scientific"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3120 \ , "Data.Scientific"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3121 \ , "Data.Text.Lazy.Builder.Scientific"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3122 \ , "Data.List.Split"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3123 \ , "Data.List.Split.Internals"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3124 \ , "Control.Concurrent.STM"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3125 \ , "Control.Concurrent.STM.TArray"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3126 \ , "Control.Concurrent.STM.TBQueue"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3127 \ , "Control.Concurrent.STM.TChan"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3128 \ , "Control.Concurrent.STM.TMVar"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3129 \ , "Control.Concurrent.STM.TQueue"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3130 \ , "Control.Concurrent.STM.TSem"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3131 \ , "Control.Concurrent.STM.TVar"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3132 \ , "Control.Monad.STM"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3133 \ , "Data.Generics"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3134 \ , "Data.Generics.Aliases"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3135 \ , "Data.Generics.Basics"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3136 \ , "Data.Generics.Builders"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3137 \ , "Data.Generics.Instances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3138 \ , "Data.Generics.Schemes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3139 \ , "Data.Generics.Text"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3140 \ , "Data.Generics.Twins"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3141 \ , "Generics.SYB"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3142 \ , "Generics.SYB.Aliases"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3143 \ , "Generics.SYB.Basics"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3144 \ , "Generics.SYB.Builders"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3145 \ , "Generics.SYB.Instances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3146 \ , "Generics.SYB.Schemes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3147 \ , "Generics.SYB.Text"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3148 \ , "Generics.SYB.Twins"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3149 \ , "Language.Haskell.TH"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3150 \ , "Language.Haskell.TH.LanguageExtensions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3151 \ , "Language.Haskell.TH.Lib"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3152 \ , "Language.Haskell.TH.Lib.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3153 \ , "Language.Haskell.TH.Ppr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3154 \ , "Language.Haskell.TH.PprLib"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3155 \ , "Language.Haskell.TH.Quote"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3156 \ , "Language.Haskell.TH.Syntax"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3157 \ , "Data.Text"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3158 \ , "Data.Text.Array"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3159 \ , "Data.Text.Encoding"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3160 \ , "Data.Text.Encoding.Error"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3161 \ , "Data.Text.Foreign"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3162 \ , "Data.Text.IO"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3163 \ , "Data.Text.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3164 \ , "Data.Text.Internal.Builder"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3165 \ , "Data.Text.Internal.Builder.Functions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3166 \ , "Data.Text.Internal.Builder.Int.Digits"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3167 \ , "Data.Text.Internal.Builder.RealFloat.Functions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3168 \ , "Data.Text.Internal.Encoding.Fusion"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3169 \ , "Data.Text.Internal.Encoding.Fusion.Common"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3170 \ , "Data.Text.Internal.Encoding.Utf16"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3171 \ , "Data.Text.Internal.Encoding.Utf32"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3172 \ , "Data.Text.Internal.Encoding.Utf8"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3173 \ , "Data.Text.Internal.Functions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3174 \ , "Data.Text.Internal.Fusion"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3175 \ , "Data.Text.Internal.Fusion.CaseMapping"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3176 \ , "Data.Text.Internal.Fusion.Common"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3177 \ , "Data.Text.Internal.Fusion.Size"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3178 \ , "Data.Text.Internal.Fusion.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3179 \ , "Data.Text.Internal.IO"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3180 \ , "Data.Text.Internal.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3181 \ , "Data.Text.Internal.Lazy.Encoding.Fusion"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3182 \ , "Data.Text.Internal.Lazy.Fusion"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3183 \ , "Data.Text.Internal.Lazy.Search"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3184 \ , "Data.Text.Internal.Private"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3185 \ , "Data.Text.Internal.Read"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3186 \ , "Data.Text.Internal.Search"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3187 \ , "Data.Text.Internal.Unsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3188 \ , "Data.Text.Internal.Unsafe.Char"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3189 \ , "Data.Text.Internal.Unsafe.Shift"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3190 \ , "Data.Text.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3191 \ , "Data.Text.Lazy.Builder"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3192 \ , "Data.Text.Lazy.Builder.Int"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3193 \ , "Data.Text.Lazy.Builder.RealFloat"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3194 \ , "Data.Text.Lazy.Encoding"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3195 \ , "Data.Text.Lazy.IO"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3196 \ , "Data.Text.Lazy.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3197 \ , "Data.Text.Lazy.Read"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3198 \ , "Data.Text.Read"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3199 \ , "Data.Text.Unsafe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3200 \ , "System.Random.TF"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3201 \ , "System.Random.TF.Gen"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3202 \ , "System.Random.TF.Init"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3203 \ , "System.Random.TF.Instances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3204 \ , "Data.Time"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3205 \ , "Data.Time.Calendar"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3206 \ , "Data.Time.Calendar.Easter"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3207 \ , "Data.Time.Calendar.Julian"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3208 \ , "Data.Time.Calendar.MonthDay"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3209 \ , "Data.Time.Calendar.OrdinalDate"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3210 \ , "Data.Time.Calendar.WeekDate"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3211 \ , "Data.Time.Clock"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3212 \ , "Data.Time.Clock.POSIX"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3213 \ , "Data.Time.Clock.System"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3214 \ , "Data.Time.Clock.TAI"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3215 \ , "Data.Time.Format"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3216 \ , "Data.Time.LocalTime"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3217 \ , "Control.Applicative.Backwards"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3218 \ , "Control.Applicative.Lift"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3219 \ , "Control.Monad.Signatures"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3220 \ , "Control.Monad.Trans.Accum"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3221 \ , "Control.Monad.Trans.Class"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3222 \ , "Control.Monad.Trans.Cont"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3223 \ , "Control.Monad.Trans.Error"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3224 \ , "Control.Monad.Trans.Except"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3225 \ , "Control.Monad.Trans.Identity"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3226 \ , "Control.Monad.Trans.List"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3227 \ , "Control.Monad.Trans.Maybe"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3228 \ , "Control.Monad.Trans.RWS"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3229 \ , "Control.Monad.Trans.RWS.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3230 \ , "Control.Monad.Trans.RWS.Strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3231 \ , "Control.Monad.Trans.Reader"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3232 \ , "Control.Monad.Trans.Select"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3233 \ , "Control.Monad.Trans.State"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3234 \ , "Control.Monad.Trans.State.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3235 \ , "Control.Monad.Trans.State.Strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3236 \ , "Control.Monad.Trans.Writer"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3237 \ , "Control.Monad.Trans.Writer.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3238 \ , "Control.Monad.Trans.Writer.Strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3239 \ , "Data.Functor.Constant"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3240 \ , "Data.Functor.Reverse"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3241 \ , "Control.Monad.Trans.Instances"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3242 \ , "Data.Functor.Classes.Generic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3243 \ , "Data.Functor.Classes.Generic.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3244 \ , "System.Posix"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3245 \ , "System.Posix.ByteString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3246 \ , "System.Posix.ByteString.FilePath"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3247 \ , "System.Posix.Directory"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3248 \ , "System.Posix.Directory.ByteString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3249 \ , "System.Posix.DynamicLinker"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3250 \ , "System.Posix.DynamicLinker.ByteString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3251 \ , "System.Posix.DynamicLinker.Module"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3252 \ , "System.Posix.DynamicLinker.Module.ByteString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3253 \ , "System.Posix.DynamicLinker.Prim"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3254 \ , "System.Posix.Env"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3255 \ , "System.Posix.Env.ByteString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3256 \ , "System.Posix.Error"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3257 \ , "System.Posix.Fcntl"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3258 \ , "System.Posix.Files"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3259 \ , "System.Posix.Files.ByteString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3260 \ , "System.Posix.IO"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3261 \ , "System.Posix.IO.ByteString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3262 \ , "System.Posix.Process"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3263 \ , "System.Posix.Process.ByteString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3264 \ , "System.Posix.Process.Internals"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3265 \ , "System.Posix.Resource"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3266 \ , "System.Posix.Semaphore"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3267 \ , "System.Posix.SharedMem"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3268 \ , "System.Posix.Signals"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3269 \ , "System.Posix.Signals.Exts"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3270 \ , "System.Posix.Temp"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3271 \ , "System.Posix.Temp.ByteString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3272 \ , "System.Posix.Terminal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3273 \ , "System.Posix.Terminal.ByteString"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3274 \ , "System.Posix.Time"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3275 \ , "System.Posix.Unistd"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3276 \ , "System.Posix.User"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3277 \ , "Data.HashMap.Lazy"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3278 \ , "Data.HashMap.Strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3279 \ , "Data.HashSet"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3280 \ , "Data.Vector"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3281 \ , "Data.Vector.Fusion.Bundle"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3282 \ , "Data.Vector.Fusion.Bundle.Monadic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3283 \ , "Data.Vector.Fusion.Bundle.Size"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3284 \ , "Data.Vector.Fusion.Stream.Monadic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3285 \ , "Data.Vector.Fusion.Util"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3286 \ , "Data.Vector.Generic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3287 \ , "Data.Vector.Generic.Base"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3288 \ , "Data.Vector.Generic.Mutable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3289 \ , "Data.Vector.Generic.Mutable.Base"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3290 \ , "Data.Vector.Generic.New"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3291 \ , "Data.Vector.Internal.Check"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3292 \ , "Data.Vector.Mutable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3293 \ , "Data.Vector.Primitive"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3294 \ , "Data.Vector.Primitive.Mutable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3295 \ , "Data.Vector.Storable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3296 \ , "Data.Vector.Storable.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3297 \ , "Data.Vector.Storable.Mutable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3298 \ , "Data.Vector.Unboxed"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3299 \ , "Data.Vector.Unboxed.Base"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3300 \ , "Data.Vector.Unboxed.Mutable"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3301 \ , "Text.XHtml"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3302 \ , "Text.XHtml.Debug"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3303 \ , "Text.XHtml.Frameset"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3304 \ , "Text.XHtml.Strict"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3305 \ , "Text.XHtml.Table"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3306 \ , "Text.XHtml.Transitional"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3307 \ , "Codec.Compression.GZip"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3308 \ , "Codec.Compression.Zlib"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3309 \ , "Codec.Compression.Zlib.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3310 \ , "Codec.Compression.Zlib.Raw"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3311 \ , "Web.Spock"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3312 \ , "Web.Spock.Config"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3313 \ , "Web.Spock.Internal.SessionManager"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3314 \ , "Web.Spock.Internal.SessionVault"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3315 \ , "Web.Spock.SessionActions"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3316 \ , "Web.Spock.Api"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3317 \ , "Web.Spock.Auth"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3318 \ , "Web.Spock.Action"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3319 \ , "Web.Spock.Core"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3320 \ , "Web.Spock.Internal.Cookies"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3321 \ , "Web.Spock.Internal.Util"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3322 \ , "Web.Spock.Routing"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3323 \ , "Web.Spock.Digestive"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3324 \ , "Database.Esqueleto"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3325 \ , "Database.Esqueleto.Internal.Language"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3326 \ , "Database.Esqueleto.Internal.Sql"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3327 \ , "Database.Esqueleto.PostgreSQL"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3328 \ , "Database.Persist"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3329 \ , "Database.Persist.Class"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3330 \ , "Database.Persist.Quasi"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3331 \ , "Database.Persist.Sql"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3332 \ , "Database.Persist.Sql.Types.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3333 \ , "Database.Persist.Sql.Util"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3334 \ , "Database.Persist.Types"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3335 \ , "Database.Persist.MySQL"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3336 \ , "Database.Persist.Postgresql"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3337 \ , "Database.Persist.Postgresql.JSON"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3338 \ , "Database.Persist.Redis"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3339 \ , "Database.Persist.Sqlite"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3340 \ , "Database.Sqlite"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3341 \ , "Servant.API"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3342 \ , "Servant.API.Alternative"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3343 \ , "Servant.API.BasicAuth"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3344 \ , "Servant.API.Capture"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3345 \ , "Servant.API.ContentTypes"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3346 \ , "Servant.API.Description"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3347 \ , "Servant.API.Empty"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3348 \ , "Servant.API.Experimental.Auth"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3349 \ , "Servant.API.Generic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3350 \ , "Servant.API.Header"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3351 \ , "Servant.API.HttpVersion"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3352 \ , "Servant.API.Internal.Test.ComprehensiveAPI"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3353 \ , "Servant.API.IsSecure"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3354 \ , "Servant.API.Modifiers"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3355 \ , "Servant.API.QueryParam"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3356 \ , "Servant.API.Raw"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3357 \ , "Servant.API.RemoteHost"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3358 \ , "Servant.API.ReqBody"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3359 \ , "Servant.API.ResponseHeaders"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3360 \ , "Servant.API.Stream"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3361 \ , "Servant.API.Sub"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3362 \ , "Servant.API.TypeLevel"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3363 \ , "Servant.API.Vault"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3364 \ , "Servant.API.Verbs"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3365 \ , "Servant.API.WithNamedContext"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3366 \ , "Servant.Links"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3367 \ , "Servant.Utils.Enter"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3368 \ , "Servant.Utils.Links"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3369 \ , "Servant.Auth"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3370 \ , "Servant.Client"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3371 \ , "Servant.Client.Internal.HttpClient"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3372 \ , "Servant"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3373 \ , "Servant.Server"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3374 \ , "Servant.Server.Experimental.Auth"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3375 \ , "Servant.Server.Generic"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3376 \ , "Servant.Server.Internal"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3377 \ , "Servant.Server.Internal.BasicAuth"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3378 \ , "Servant.Server.Internal.Context"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3379 \ , "Servant.Server.Internal.Handler"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3380 \ , "Servant.Server.Internal.Router"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3381 \ , "Servant.Server.Internal.RoutingApplication"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3382 \ , "Servant.Server.Internal.ServantErr"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3383 \ , "Servant.Server.StaticFiles"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3384 \ , "Servant.Utils.StaticFiles"
0ecb909e3249 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3385 \ ]