Changes between Version 5 and Version 6 of Building/Solaris
- Timestamp:
- 01/21/09 06:36:14 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Building/Solaris
v5 v6 5 5 6 6 These instructions have only been checked for GHC 6.8.3 on Solaris 10 on SPARC. It should mostly apply to later versions of GHC, Solaris 8 and later and perhaps Solaris on x86. 7 8 A common theme in these instructions is the issue that required tools and libraries are not part of the standard system set and the need for us to set various flags to tell the build system where to find them. For the sake of being concrete, the instructions below use the example of packages from the [http://www.blastwave.org/ blastwave.org] collection which get installed under the `/opt/csw` prefix. You can substitute your own path (or paths) as appropriate to your system. 9 10 == Using a bootstrapping GHC == 11 12 You can either get the binary from the ghc download page or use some other pre-existing ghc binary. 13 14 The binary from the ghc download page depends on `gmp`, `readline` and `ncurses`, none of which are on the default runtime linker search path. It is necessary therefore to set the `LD_LIBRARY_PATH`, either in the ghc driver shell script or in the environment while doing the build. The latter is simpler: 15 16 {{{ 17 export LD_LIBRARY_PATH=/opt/csw/lib 18 }}} 19 20 Note: part of the aim of these instructions is to build a ghc that will not require the use of `LD_LIBRARY_PATH`. That is, it should not be required to run ghc itself, or any of the programs built by ghc. 21 22 In the example below we will assume that the bootstrapping ghc is installed in `/opt/ghc-bin` and that our final ghc will be installed to `/opt/ghc`. 7 23 8 24 == Using the right GCC == … … 20 36 21 37 GCC version 3.4.x is reported to mis-compile the runtime system leading to a runtime error `schedule: re-entered unsafely`. 22 But such a gcc version is sufficient for most user programs in case you just installed a ghc binary distribution. 38 But such a gcc version is sufficient for most user programs in case you just installed a ghc binary distribution. 23 39 24 40 GHC has not yet been updated to understand the assembly output of GCC version 4.3.x. … … 36 52 {{{ 37 53 export PATH=/opt/gcc-vanilla/bin:$PATH 38 ./configure --with-gcc=/opt/gcc-vanilla/ bin/gcc54 ./configure --with-gcc=/opt/gcc-vanilla/4.1.2/bin/gcc 39 55 }}} 40 56 … … 45 61 TODO: attach a patch for ghc-6.8.3, send in a patch for ghc-6.10.x and HEAD. 46 62 47 == Using GMP and other libs from non-standard locations==63 == Using GMP from a non-standard location == 48 64 49 65 The gmp library is not a standard system library on Solaris. It can usually be installed from a third party binary package collection or built from source. Either way it will usually not be on the standard cpp include path or the standard static linker path, or the standard dynamic linker path. … … 51 67 We can handle the first two aspects with these `./configure` flags `--with-gmp-includes` and `--with-gmp-libraries`. 52 68 53 For example , using gmp installed from the 'blastwave' package collection:69 For example: 54 70 55 71 {{{ … … 66 82 TODO: check this works, it was only tested with a bootstrapping ghc that always used the above flag, baked into the driver shell script. In that case only `GhcStage2HcOpts=-optl-R/opt/csw/lib` was needed. 67 83 84 Additionally, the `--with-gmp-`* flags ensure that when using the resulting ghc, that it will be able to link programs to gmp. That is `ghc --make Hello.hs` will actually compile because it will pass `-L/opt/csw/lib` when linking it. However as before, while it links this does not ensure that the resulting program will run. We also need to tell the dynamic linker to look in the gmp lib dir. To get ghc to pass `-R` as well as `-L` we need to alter the registration information for the rts package. 85 86 Note that this currently needs to be done after installation. See 2933# about integrating it into the build process. 87 88 {{{ 89 ghc-pkg describe rts > rts.pkg 90 vim rts.pkg 91 ghc-pkg update rts.pkg 92 }}} 93 94 In the editing step you need to add the `-R/path/to/gmp/lib` to the `ld-options` field. 95 96 == Using readline from a non-standard location == 97 98 As with gmp, we need to tell `./configure` about the location of `readline`. Be careful here because it may look like you are building with readline support when in fact you are not. 99 100 Using the `--with-gmp-includes=` `--with-gmp-libraries=` flags are enough to get the top level `./configure` script to believe that using readline will work, if you happen to have gmp and readline installed under the same prefix. However it is not enough for the Haskell readline package's configure script. Unfortunately that one gets run half way through the build process (after building stage1) and if it fails it does so silently and the readline feature is simply not used. This means you end up with a useless ghci. 101 102 So it is necessary to pass these flags to `./configure`: 103 104 {{{ 105 ./configure --with-readline-includes=/opt/csw/include --with-readline-libraries=/opt/csw/lib 106 }}} 107 108 If you want to double-check that ghci really did get built with readline support before you install it then run: 109 110 {{{ 111 ldd compiler/stage2/ghc-6.8.3 112 }}} 113 114 And check that it really does link to readline. It is also worth checking at this point that ghc will run without `LD_LIBRARY_PATH` set: 115 116 {{{ 117 LD_LIBRARY_PATH="" ldd compiler/stage2/ghc-6.8.3 118 }}} 119 120 This should all libs as being found. 121 68 122 == Split objects == 69 123 … … 79 133 == Putting it all together == 80 134 81 This example uses ghc-6.8.3 on Solaris 10, using gmp and other tools from the 'blastwave' collection installed in `/opt/csw`. The gcc is 4.1.2 installin `/opt/ghc-vanilla/4.1.2/bin`. The bootstrapping ghc is the binary from the ghc download page installed in `/opt/ghc-bin`.135 This example uses ghc-6.8.3 on Solaris 10, using gmp and other tools installed in `/opt/csw`. The gcc is 4.1.2 installed in `/opt/ghc-vanilla/4.1.2/bin`. The bootstrapping ghc is the binary from the ghc download page installed in `/opt/ghc-bin`. 82 136 83 137 The `mk/build.mk` file is … … 90 144 {{{ 91 145 export PATH=/opt/gcc-vanilla/4.1.2/bin:/opt/csw/bin:/usr/bin:/usr/ccs/bin 146 }}} 147 148 The `LD_LIBRARY_PATH` 149 {{{ 150 export LD_LIBRARY_PATH=/opt/csw/lib 92 151 }}} 93 152 … … 99 158 --with-gmp-includes=/opt/csw/include \ 100 159 --with-gmp-libraries=/opt/csw/lib 160 --with-readline-includes=/opt/csw/include \ 161 --with-readline-libraries=/opt/csw/lib 101 162 }}} 102 163 … … 107 168 108 169 If you are lucky enough to have a box with lots of CPU cores then use them! Sadly the maximum number that it can actually use effectively is around 4. Hopefully the new build system in ghc-6.11 and later will be able to use more. 170 171 {{{ 172 sudo gmake install 173 }}} 174 175 Remember that you will now need to modify the `rts` package for the newly installed ghc so that the programs it builds will be able to find the gmp lib at runtime. See the section above on using gmp from a non-standard location for more details. 176 177 {{{ 178 export PATH=/opt/ghc/bin:$PATH 179 ghc-pkg describe rts > rts.pkg 180 vim rts.pkg # add -R/opt/csw/lib to the ld-options field. 181 ghc-pkg update rts.pkg 182 }}} 183 184 Now check that compiling and running a hello world program works: 185 186 {{{ 187 $ unset LD_LIBRARY_PATH 188 $ which ghc 189 /opt/ghc/bin/ghc 190 $ echo 'main = print "hello"' > Hello.hs 191 $ ghc --make Hello.hs 192 $ ./Hello 193 "hello" 194 }}} 109 195 110 196 == TODO ==
