Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
haddock
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Glasgow Haskell Compiler
haddock
Commits
38cb1f9c
Commit
38cb1f9c
authored
1 year ago
by
Finley McIlwaine
Browse files
Options
Downloads
Patches
Plain Diff
Remove GHC debug dep
parent
f7159663
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!38
Make --no-tmp-comp-dir the default
,
!37
Adapt to latest xhtml version, various optimizations
,
!31
Support HsToken in DataDecl and ClassDecl
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
haddock-api/haddock-api.cabal
+0
-1
0 additions, 1 deletion
haddock-api/haddock-api.cabal
haddock-api/src/Haddock.hs
+1
-3
1 addition, 3 deletions
haddock-api/src/Haddock.hs
with
1 addition
and
4 deletions
haddock-api/haddock-api.cabal
+
0
−
1
View file @
38cb1f9c
...
...
@@ -63,7 +63,6 @@ library
, ghc-boot
, mtl
, transformers
, ghc-debug-stub
hs-source-dirs: src
...
...
This diff is collapsed.
Click to expand it.
haddock-api/src/Haddock.hs
+
1
−
3
View file @
38cb1f9c
...
...
@@ -85,8 +85,6 @@ import GHC.Unit
import
GHC.Utils.Panic
(
handleGhcException
)
import
GHC.Data.FastString
import
GHC.Debug.Stub
--------------------------------------------------------------------------------
-- * Exception handling
--------------------------------------------------------------------------------
...
...
@@ -149,7 +147,7 @@ handleGhcExceptions =
--
-- > main = getArgs >>= haddock
haddock
::
[
String
]
->
IO
()
haddock
args
=
withGhcDebug
$
haddockWithGhc
withGhc
args
haddock
args
=
haddockWithGhc
withGhc
args
haddockWithGhc
::
(
forall
a
.
[
Flag
]
->
Ghc
a
->
IO
a
)
->
[
String
]
->
IO
()
haddockWithGhc
ghc
args
=
handleTopExceptions
$
do
...
...
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