summaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* Don't put all of $CFLAGS into $SRC_CC_OPTSIan Lynagh2009-07-161-6/+5
| | | | | | Instead, we just put the flags we need in there (e.g. -m64 on OS X 64). This fixes a problem found by Simon M, where we were compiling everything with -g, leading to a bloated RTS.
* workaround new Cygwin bash CRLF behaviourSimon Marlow2009-07-091-4/+4
|
* check for tabs in compiler/ghc.cabal.in (#3344)Simon Marlow2009-07-071-0/+4
|
* Windows fixes to build system: use the 'find' and 'sort' found by configuresimonpj@microsoft.com2009-07-061-6/+11
| | | | | | | | | The build system should use 'find' and 'sort' that are discovered by configure, not the ones in your path. On Windows the ones in your path might well be the non-Unixy Windows versions. This patch fixes the ones I tripped over. There may be more.
* Add a configure test for whether or not __mingw_vfprintf existsIan Lynagh2009-06-271-0/+2
|
* Remove more GMP bitsIan Lynagh2009-06-161-55/+0
|
* Changes for the new IO library, mainly base-package modules moving aroundSimon Marlow2009-05-291-1/+1
|
* Make Windows bindists and installers work in the new build systemIan Lynagh2009-06-101-1/+1
|
* fix logic for BUID_DOCBOOK_HTMLSimon Marlow2009-06-031-1/+1
|
* tidy up autoconfiguration of docbook stuffSimon Marlow2009-06-021-3/+2
| | | | | | | | * use --nonet, so xmllint and co don't go off trying to download stuff from the web * use the http:// reference for the stylesheet, so we don't have to search the filesystem for it (should speedup ./configure)
* mention documentation tools in the summary; tidy up formattingSimon Marlow2009-06-021-7/+10
|
* Make the sed in configure.ac more portableIan Lynagh2009-05-251-12/+12
|
* Fix configureIan Lynagh2009-05-231-1/+1
|
* ghc_ge_607 is now always trueIan Lynagh2009-05-231-2/+0
|
* Sanity check the platforms we are givenIan Lynagh2009-05-231-12/+66
|
* Change how we find the host/build/target platformsIan Lynagh2009-05-221-622/+181
| | | | | | | | | | Rather than using the autoconf built-in stuff and mangling it, we now just ask the bootstrapping compiler what platform we are on. When doing a port of GHC, you need to specify the platform you are porting to. The minimum version of GHC required is now 6.8.
* Set C compiler and linker flags correctly for OS X 64Ian Lynagh2009-05-211-1/+8
|
* Move hasktags out of the GHC repoIan Lynagh2009-05-151-0/+2
| | | | Now configure looks for it as an installed program instead.
* rejig ghc version test; fail if GHC version can't be determinedSimon Marlow2009-05-131-9/+13
|
* remove old unused fop/dvips/xmltex stuffSimon Marlow2009-05-131-1/+0
|
* Fix configureIan Lynagh2009-05-091-1/+1
|
* Handle deciding what docs to build betterIan Lynagh2009-05-081-10/+26
| | | | | | | Now we have variables for whether or not to build the docbook docs as HTML, as PS, and as PDF. The configure script output now matches what the build system will do (except it cannot take account of any mk/build.mk settings, of course).
* Use haskeline, rather than editline, for line editing in ghciIan Lynagh2009-04-291-19/+0
|
* GHC new build system megapatchIan Lynagh2009-04-261-17/+109
|
* Work around Solaris's grep not supporting -qIan Lynagh2009-03-191-1/+2
|
* Set thread affinity with +RTS -qa (only on Linux so far)Simon Marlow2009-03-181-2/+2
|
* Add --version to runghc. Trac #2757.Ian Lynagh2009-03-051-1/+1
| | | | | We use the GHC version number, as the old runghc one doesn't seem very useful.
* Handle the case where setitimer(ITIMER_VIRTUAL) is not always availableIan Lynagh2009-02-081-0/+13
| | | | Patch from sthibaul. Fixes trac #2883.
* Warn in configure if it looks like make 3.80 is about to be usedIan Lynagh2009-02-011-0/+19
| | | | | | | | We get caught by http://savannah.gnu.org/bugs/index.php?1516 $(eval ...) inside conditionals causes errors with make 3.80, so warn the user if it looks like they're about to try to use it.
* revert accidental change to configure.acSimon Marlow2008-12-151-1/+1
|
* Revert CorePrep part of "Completely new treatment of INLINE pragmas..."Simon Marlow2008-12-151-1/+1
| | | | | | | | | | | | | | | The original patch said: * I made some changes to the way in which eta expansion happens in CorePrep, mainly to ensure that *arguments* that become let-bound are also eta-expanded. I'm still not too happy with the clarity and robustness fo the result. Unfortunately this change apparently broke some invariants that were relied on elsewhere, and in particular lead to panics when compiling with profiling on. Will re-investigate in the new year.
* Add help messages about --with-editline-(includes,libraries) to the ghc ↵Judah Jacobson2008-11-141-0/+16
| | | | configure script.
* Rmoeve --enable-dotnetSimon Marlow2008-11-141-14/+0
|
* #2751: disourage --enable-shared in ./configure --helpSimon Marlow2008-11-141-1/+1
|
* add a warning that --enable-shared is experimentalSimon Marlow2008-11-141-0/+1
|
* ghc_ge_605 is now always YESIan Lynagh2008-11-081-2/+0
|
* We now require GHC 6.6 to build the HEAD (and thus 6.12)Ian Lynagh2008-10-311-2/+2
|
* On Windows, check that we have a good version of windres when configuringIan Lynagh2008-10-011-0/+3
|
* In configure, don't call FPTOOLS_HADDOCKIan Lynagh2008-09-241-3/+0
| | | | We now use the in-tree haddock, so we don't need to look for it.
* Bump the version number to 6.11Ian Lynagh2008-09-231-1/+1
|
* Generate ghc.cabal and ghc-bin.cabal with configureIan Lynagh2008-09-181-1/+1
| | | | This allows us to put the proper version number into them
* add --enable-shared to configure, and $(BuildSharedLibs) to the build systemSimon Marlow2008-07-241-0/+29
|
* ObjectIO is no longer an extralibIan Lynagh2008-07-091-15/+0
|
* Remove all references to -mno-cygwinIan Lynagh2008-07-091-4/+0
| | | | | We shouldn't need it, as we don't call cygwin's gcc, and it was causing problems with the nightly builders passing it to GHC.
* Shove the GHC path through cygpath -mIan Lynagh2008-07-031-0/+8
|
* Tweak the configure script Windows-specific bitsIan Lynagh2008-07-031-21/+18
|
* Use cygpath -m, rather than fudging it ourselves with sedIan Lynagh2008-07-031-3/+3
|
* Add ghc_ge_609Ian Lynagh2008-06-151-0/+2
|
* Teach configure about amd64/NetBSD; fixes trac #2348Ian Lynagh2008-06-061-0/+9
|
* Use editline instead of readlineIan Lynagh2008-03-161-14/+2
|