Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
array
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Vladislav Zavialov
array
Commits
67d18a3d
Commit
67d18a3d
authored
18 years ago
by
Ian Lynagh
Browse files
Options
Downloads
Patches
Plain Diff
Build GHC/Prim.hs and GHC/PrimopWrappers.hs from Cabal
parent
e27701db
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Setup.hs
+12
-2
12 additions, 2 deletions
Setup.hs
with
12 additions
and
2 deletions
Setup.hs
+
12
−
2
View file @
67d18a3d
...
...
@@ -8,10 +8,12 @@ module Main (main) where
import
Control.Monad
import
Data.List
import
Distribution.Simple
import
Distribution.PackageDescription
import
Distribution.Setup
import
Distribution.Simple
import
Distribution.Simple.LocalBuildInfo
import
Distribution.Simple.Utils
import
System.Cmd
import
System.Environment
import
System.Info
...
...
@@ -24,7 +26,8 @@ main = do args <- getArgs
$
confHook
defaultUserHooks
,
postConf
=
add_configure_options
confArgs
$
postConf
defaultUserHooks
,
buildHook
=
add_ghc_options
ghcArgs
buildHook
=
build_primitive_sources
$
add_ghc_options
ghcArgs
$
filter_modules_hook
$
buildHook
defaultUserHooks
,
makefileHook
=
add_ghc_options
ghcArgs
...
...
@@ -68,6 +71,13 @@ type PostConfHook = Args -> ConfigFlags -> PackageDescription -> LocalBuildInfo
-- type PDHook = PackageDescription -> ConfigFlags -> IO ()
build_primitive_sources
::
Hook
a
->
Hook
a
build_primitive_sources
f
pd
lbi
uhs
x
=
do
when
(
compilerFlavor
(
compiler
lbi
)
==
GHC
)
$
do
maybeExit
$
system
"../../utils/genprimopcode/genprimopcode --make-haskell-source < ../../compiler/prelude/primops.txt > GHC/Prim.hs"
maybeExit
$
system
"../../utils/genprimopcode/genprimopcode --make-haskell-wrappers < ../../compiler/prelude/primops.txt > GHC/PrimopWrappers.hs"
f
pd
lbi
uhs
x
add_ghc_options
::
[
String
]
->
Hook
a
->
Hook
a
add_ghc_options
args
f
pd
lbi
uhs
x
=
do
let
lib'
=
case
library
pd
of
...
...
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