Changes between Version 2 and Version 3 of Builder
- Timestamp:
- 03/09/10 02:45:50 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Builder
v2 v3 3 3 4 4 The GHC builder builds GHC on various platforms in various different ways each night, runs the test suite and performance benchmarks, and mails the results to the `cvs-ghc@haskell.org` mailing list. We're always keen to add more build slaves to the setup, especially if you have a platform that doesn't already have a build slave, so if you'd like to join the fun, please let us know at [mailto:cvs-ghc@haskell.org]. If a platform is represented in the nightly builds, it's more likely we'll be able to identify and fix problems specific to that platform quickly. 5 6 == Install OpenSSL == 7 8 * On Windows, install OpenSSL from here (not the Light Version): [http://www.openssl.org/related/binaries.html] 9 * On Linux, get OpenSSL from your distro. 10 * Mac OSX: someone please fill this in 11 * Solaris: someone please fill this in 12 13 == Install HsOpenSSL == 14 15 On non-Windows: 16 17 {{{ 18 cabal install HsOpenSSL 19 }}} 20 21 On Windows: I found I had to add 'ssl2' to 'extra-libraries' in HsOpenSSL.cabal. So 22 23 {{{ 24 cabal unpack HsOpenSSL 25 cd HsOpenSSL* 26 <edit HsOpenSSL, add ssl2 to extra-libraries> 27 cabal install --extra-include-dirs="c:/OpenSSL/include" --extra-lib-dirs="c:/OpenSSL" 28 }}} 5 29 6 30 == To create a new build slave ==
