Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Cabal
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Glasgow Haskell Compiler
Packages
Cabal
Commits
5d7cc9ba
Commit
5d7cc9ba
authored
20 years ago
by
Isaac Potoczny-Jones
Browse files
Options
Downloads
Patches
Plain Diff
added extensionToGHCFlag (from bringert)
parent
064996dd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Distribution/Misc.hs
+6
-2
6 additions, 2 deletions
Distribution/Misc.hs
Distribution/Simple/Build.hs
+7
-3
7 additions, 3 deletions
Distribution/Simple/Build.hs
with
13 additions
and
5 deletions
Distribution/Misc.hs
+
6
−
2
View file @
5d7cc9ba
...
...
@@ -42,7 +42,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -}
module
Distribution.Misc
(
License
(
..
),
Dependency
,
Extension
,
Opt
module
Distribution.Misc
(
License
(
..
),
Dependency
,
Extension
(
..
)
,
Opt
#
ifdef
DEBUG
,
hunitTests
#
endif
...
...
@@ -70,7 +70,11 @@ data Dependency = Dependency String VersionRange
-- |This represents non-standard compiler extensions which each
-- package might employ. Not yet implemented.
data
Extension
=
Foo
|
Bar
deriving
Show
data
Extension
=
OverlappingInstances
|
TypeSynonymInstances
|
TemplateHaskell
deriving
Show
type
Opt
=
String
...
...
This diff is collapsed.
Click to expand it.
Distribution/Simple/Build.hs
+
7
−
3
View file @
5d7cc9ba
...
...
@@ -47,7 +47,7 @@ module Distribution.Simple.Build (
#
endif
)
where
import
Distribution.Misc
(
Extension
)
import
Distribution.Misc
(
Extension
(
..
)
)
import
Distribution.Setup
(
CompilerFlavor
(
..
),
compilerFlavor
,
compilerPath
)
import
Distribution.Package
(
PackageDescription
(
..
),
showPackageId
)
import
Distribution.Simple.Configure
(
LocalBuildInfo
,
compiler
)
...
...
@@ -59,7 +59,7 @@ import Distribution.Simple.Utils (rawSystemExit, setupMessage,
import
Control.Monad
(
when
)
import
Data.List
(
intersperse
)
import
Data.List
(
intersperse
,
nub
)
#
ifdef
DEBUG
import
HUnit
(
Test
)
...
...
@@ -117,7 +117,11 @@ constructGHCCmdLine pref pkg_descr _ =
++
allModules
pkg_descr
extensionsToGHCFlag
::
[
Extension
]
->
[
String
]
extensionsToGHCFlag
_
=
[]
-- ToDo
extensionsToGHCFlag
=
nub
.
map
extensionToGHCFlag
where
extensionToGHCFlag
OverlappingInstances
=
"-fallow-overlapping-instances"
extensionToGHCFlag
TypeSynonymInstances
=
"-fglasgow-exts"
extensionToGHCFlag
TemplateHaskell
=
"-fth"
extensionsToNHCFlag
::
[
Extension
]
->
[
String
]
extensionsToNHCFlag
_
=
[]
-- ToDo
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment