Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
U
unix
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
unix
Commits
c5b20578
Commit
c5b20578
authored
18 years ago
by
Ian Lynagh
Browse files
Options
Downloads
Patches
Plain Diff
make Setup suitable for building the libraries with GHC
parent
961ff2ad
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Setup.hs
+48
-2
48 additions, 2 deletions
Setup.hs
with
48 additions
and
2 deletions
Setup.hs
+
48
−
2
View file @
c5b20578
module
Main
(
main
)
where
import
Distribution.Simple
(
defaultMainWithHooks
,
defaultUserHooks
)
import
Data.List
import
Distribution.Simple
import
Distribution.PackageDescription
import
Distribution.PreProcess
import
Distribution.Setup
import
Distribution.Simple.LocalBuildInfo
import
System.Environment
main
::
IO
()
main
=
defaultMainWithHooks
defaultUserHooks
main
=
do
args
<-
getArgs
let
(
ghcArgs
,
args'
)
=
extractGhcArgs
args
let
hooks
=
defaultUserHooks
{
buildHook
=
add_ghc_options
ghcArgs
$
buildHook
defaultUserHooks
}
withArgs
args'
$
defaultMainWithHooks
hooks
extractGhcArgs
::
[
String
]
->
([
String
],
[
String
])
extractGhcArgs
args
=
let
f
[]
=
(
[]
,
[]
)
f
(
x
:
xs
)
=
case
f
xs
of
(
ghcArgs
,
otherArgs
)
->
case
removePrefix
"--ghc-option="
x
of
Just
ghcArg
->
(
ghcArg
:
ghcArgs
,
otherArgs
)
Nothing
->
(
ghcArgs
,
x
:
otherArgs
)
in
f
args
removePrefix
::
String
->
String
->
Maybe
String
removePrefix
""
ys
=
Just
ys
removePrefix
(
x
:
xs
)
(
y
:
ys
)
|
x
==
y
=
removePrefix
xs
ys
|
otherwise
=
Nothing
type
Hook
a
=
PackageDescription
->
LocalBuildInfo
->
Maybe
UserHooks
->
a
->
IO
()
add_ghc_options
::
[
String
]
->
Hook
a
->
Hook
a
add_ghc_options
args
f
pd
lbi
muhs
x
=
do
let
lib'
=
case
library
pd
of
Just
lib
->
let
bi
=
libBuildInfo
lib
opts
=
options
bi
++
[(
GHC
,
args
)]
bi'
=
bi
{
options
=
opts
}
in
lib
{
libBuildInfo
=
bi'
}
Nothing
->
error
"Expected a library"
pd'
=
pd
{
library
=
Just
lib'
}
f
pd'
lbi
muhs
x
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