File tree Expand file tree Collapse file tree 12 files changed +14
-14
lines changed
cabal-install/Distribution/Solver/Types Expand file tree Collapse file tree 12 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ configure verbosity hcPath hcPkgPath conf0 = do
180
180
181
181
ghcInfo <- Internal. getGhcInfo verbosity implInfo ghcProg
182
182
let ghcInfoMap = Map. fromList ghcInfo
183
- extensions = -- workaround https://ghc .haskell.org/ticket /11214
183
+ extensions = -- workaround https://gitlab .haskell.org/ghc/ghc/-/issues /11214
184
184
filterExt JavaScriptFFI $
185
185
-- see 'filterExtTH' comment below
186
186
filterExtTH $ extensions0
@@ -428,7 +428,7 @@ checkPackageDbStackPre76 verbosity rest
428
428
die' verbosity $
429
429
" With current ghc versions the global package db is always used "
430
430
++ " and must be listed first. This ghc limitation is lifted in GHC 7.6,"
431
- ++ " see http ://ghc .haskell.org/trac /ghc/ticket /5977"
431
+ ++ " see https ://gitlab .haskell.org/ghc /ghc/-/issues /5977"
432
432
checkPackageDbStackPre76 verbosity _ =
433
433
die' verbosity $ " If the global package db is specified, it must be "
434
434
++ " specified first and cannot be specified multiple times"
Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ checkPackageDbStack verbosity rest
317
317
| GlobalPackageDB `notElem` rest =
318
318
die' verbosity $ " With current ghc versions the global package db is always used "
319
319
++ " and must be listed first. This ghc limitation may be lifted in "
320
- ++ " future, see http ://ghc .haskell.org/trac /ghc/ticket /5977"
320
+ ++ " future, see https ://gitlab .haskell.org/ghc /ghc/-/issues /5977"
321
321
checkPackageDbStack verbosity _ =
322
322
die' verbosity $ " If the global package db is specified, it must be "
323
323
++ " specified first and cannot be specified multiple times"
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ ghcProgram :: Program
104
104
ghcProgram = (simpleProgram " ghc" ) {
105
105
programFindVersion = findProgramVersion " --numeric-version" id ,
106
106
107
- -- Workaround for https://ghc .haskell.org/trac /ghc/ticket /8825
107
+ -- Workaround for https://gitlab .haskell.org/ghc /ghc/-/issues /8825
108
108
-- (spurious warning on non-english locales)
109
109
programPostConf = \ _verbosity ghcProg ->
110
110
do let ghcProg' = ghcProg {
Original file line number Diff line number Diff line change @@ -812,7 +812,7 @@ packageDbArgsConf dbstack = case dbstack of
812
812
++ show dbstack
813
813
814
814
-- | GHC >= 7.6 uses the '-package-db' flag. See
815
- -- https://ghc .haskell.org/trac /ghc/ticket /5977.
815
+ -- https://gitlab .haskell.org/ghc /ghc/-/issues /5977.
816
816
packageDbArgsDb :: PackageDBStack -> [String ]
817
817
-- special cases to make arguments prettier in common scenarios
818
818
packageDbArgsDb dbstack = case dbstack of
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ data CondBranch v c a = CondBranch
80
80
81
81
-- This instance is written by hand because GHC 8.0.1/8.0.2 infinite
82
82
-- loops when trying to derive it with optimizations. See
83
- -- https://ghc .haskell.org/trac /ghc/ticket /13056
83
+ -- https://gitlab .haskell.org/ghc /ghc/-/issues /13056
84
84
instance Foldable (CondBranch v c ) where
85
85
foldMap f (CondBranch _ c Nothing ) = foldMap f c
86
86
foldMap f (CondBranch _ c (Just a)) = foldMap f c `mappend` foldMap f a
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ import qualified Distribution.Types.PackageId.Lens as L
44
44
-- 34886 KnownBranch
45
45
-- 8197 wild1_ixF0
46
46
--
47
- -- https://ghc .haskell.org/trac /ghc/ticket /13253 might be the cause.
47
+ -- https://gitlab .haskell.org/ghc /ghc/-/issues /13253 might be the cause.
48
48
--
49
49
-- The workaround is to prevent GHC optimising the code:
50
50
infixl 4 <@>
Original file line number Diff line number Diff line change @@ -1341,7 +1341,7 @@ Advanced global configuration options
1341
1341
Since Cabal 3.0, defaults to ``never ``. Before that, defaulted to
1342
1342
creating them only when compiling with GHC 8.4.4 and older (GHC
1343
1343
8.4.4 `is the first version
1344
- <https://ghc .haskell.org/trac /ghc/ticket /13753> `_ that supports
1344
+ <https://gitlab .haskell.org/ghc /ghc/-/issues /13753> `_ that supports
1345
1345
the ``-package-env - `` option that allows ignoring the package
1346
1346
environment files).
1347
1347
Original file line number Diff line number Diff line change 26
26
extlinks = {
27
27
'issue' : ('https://github.com/haskell/cabal/issues/%s' , '#' ),
28
28
29
- 'ghc-wiki' : ('http ://ghc .haskell.org/trac /ghc/wiki /%s' , '' ),
30
- 'ghc-ticket' : ('http ://ghc .haskell.org/trac /ghc/ticket /%s' , 'GHC #' ),
29
+ 'ghc-wiki' : ('https ://gitlab .haskell.org/ghc /ghc/-/wikis /%s' , '' ),
30
+ 'ghc-ticket' : ('https ://gitlab .haskell.org/ghc /ghc/-/issues /%s' , 'GHC #' ),
31
31
32
32
'hackage-pkg' : ('http://hackage.haskell.org/package/%s' , '' ),
33
33
}
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ \subsubsection*{Recent Progress}
22
22
\href {https://mail.haskell.org/pipermail/cabal-devel/2016-December/010384.html}{new
23
23
point releases} of Cabal/\texttt {cabal-install } from the 1.24
24
24
branch. Among other things, Cabal 1.24.2.0 includes a
25
- \href {https://ghc .haskell.org/trac /ghc/ticket /12479}{fix} necessary to
25
+ \href {https://gitlab .haskell.org/ghc /ghc/-/issues /12479}{fix} necessary to
26
26
make soon-to-be-released GHC 8.0.2 work on macOS Sierra.
27
27
28
28
Almost 1500 commits were made to the \texttt {master } branch by
Original file line number Diff line number Diff line change 23
23
24
24
.. _ABNF : https://tools.ietf.org/html/rfc5234
25
25
26
- .. _Backpack : https://ghc .haskell.org/trac /ghc/wiki/Backpack
26
+ .. _Backpack : https://gitlab .haskell.org/ghc /ghc/-/wikis/backpack
You can’t perform that action at this time.
0 commit comments