Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 485736 - dev-lang/ghc-7.6.3-r1: USE=ghcbootstrap triggers circular dependencies
Summary: dev-lang/ghc-7.6.3-r1: USE=ghcbootstrap triggers circular dependencies
Status: RESOLVED WONTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Gentoo's Haskell Language team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-23 12:11 UTC by Julien Sanchez
Modified: 2016-05-14 13:23 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Julien Sanchez archtester 2013-09-23 12:11:34 UTC
I am trying to test ghc onto an ARM system but I get the following circular dependencies when emerging ghc:

# USE=ghcbootstrap emerge -v ghc

These are the packages that would be merged, in order:

Calculating dependencies... done!


[nomerge       ] dev-lang/ghc-7.6.3-r1:0/7.6.3  USE="ghcbootstrap gmp -binary -doc -ghcmakebinary -llvm" 
[ebuild  N    *]  dev-haskell/happy-1.18.10  USE="-doc" 157 kB
[ebuild  N    *]   dev-haskell/mtl-2.1.2-r1:0/2.1.2  USE="-doc -hscolour -profile" 14 kB
[ebuild  N    *]    dev-haskell/transformers-0.3.0.0-r1:0/0.3.0.0  USE="-doc -hscolour -profile" 20 kB
[ebuild  N    *]  dev-haskell/alex-3.0.5  USE="-doc {-test}" 98 kB
[ebuild  N    *]   dev-haskell/quickcheck-2.6:2/2.6  USE="template_haskell -doc -hscolour -profile" 26 kB
[ebuild  N    *]    dev-haskell/random-1.0.1.1-r1:0/1.0.1.1  USE="-doc -hscolour -profile" 9 kB
[ebuild  N    *]    dev-haskell/extensible-exceptions-0.1.1.4:0/0.1.1.4  USE="-doc -hscolour -profile" 9 kB
[ebuild  N    *]     dev-haskell/cabal-1.18.0:0/1.18.0  USE="-doc -profile {-test}" 316 kB
[ebuild  N    *]      dev-lang/ghc-7.6.3-r1:0/7.6.3  USE="ghcbootstrap gmp -binary -doc -ghcmakebinary -llvm" 0 kB

Total: 9 packages (9 new), Size of downloads: 646 kB

 * Error: circular dependencies:

(dev-lang/ghc-7.6.3-r1::gentoo, ebuild scheduled for merge) depends on
 (dev-haskell/alex-3.0.5::gentoo, ebuild scheduled for merge) (buildtime)
  (dev-lang/ghc-7.6.3-r1::gentoo, ebuild scheduled for merge) (buildtime)



I am willing to do more testing if needed.
Comment 1 Sergei Trofimovich (RETIRED) gentoo-dev 2013-09-23 17:16:31 UTC
USE=ghcbootstrap is a bit special.

It needs already working/installed ghc in your system (thus we don't
mind circular depends here).

If you already have ghc in PATH variable (but installed not via emerge)
then you can try to use -O // --nodeps to get first working snapshot
of ghc.

I usually steal debian's ghc to start bootstrap.

What ARM you are trying to use BTW? (the 'uname -m' bit is interesting)
Comment 2 Julien Sanchez archtester 2013-09-24 11:44:46 UTC
(In reply to Sergei Trofimovich from comment #1)
> USE=ghcbootstrap is a bit special.
> 
> It needs already working/installed ghc in your system (thus we don't
> mind circular depends here).
> 
> If you already have ghc in PATH variable (but installed not via emerge)
> then you can try to use -O // --nodeps to get first working snapshot
> of ghc.
> 
> I usually steal debian's ghc to start bootstrap.

I will try that.

> What ARM you are trying to use BTW? (the 'uname -m' bit is interesting)

Not something very original. I am simply trying to use compile and use haskell programs on a Raspberry Pi:
# uname -m
armv6l

To be frank, I didn't expect it to success since arm was not listed in ghc's keywords (and I will be surprised that the Rapsberry could compile it by itself).

Nevertheless, I keep trying: do you know what could be done or what is still missing to have haskell installed on ARM systems with Gentoo? Does anyone have tried or are there still important difficulties about ARM systems?
Comment 3 Julien Sanchez archtester 2013-09-24 12:21:34 UTC
(In reply to Julien Sanchez from comment #2)
> (In reply to Sergei Trofimovich from comment #1)
> >
> > I usually steal debian's ghc to start bootstrap.
> 
> I will try that.

No luck with debian package. I downloaded ghc_7.4.1-4_armhf.deb (and libffi5_3.0.10-3+b1_armhf.deb since it depends on libffi.so.5) but I get:

"Illegal instruction".

There would be another way.
Comment 4 Sergei Trofimovich (RETIRED) gentoo-dev 2016-05-14 13:23:44 UTC
To summarise:

USE=ghcbootstrap circular deps is intended.

GHC slowly gets better cross-compilation support.

Soon we will get standard mechanism to bootstrap compiler
for any arch using CHOST/CBUILD/CTARGET varuables (just like gcc).