summaryrefslogtreecommitdiff
path: root/compiler/nativeGen/NCG.h
Commit message (Collapse)AuthorAgeFilesLines
* cpp: Use #pragma once instead of #ifndef guardsBen Gamari2017-04-231-4/+1
| | | | | | | | | | | | | | This both says what we mean and silences a bunch of spurious CPP linting warnings. This pragma is supported by all CPP implementations which we support. Reviewers: austin, erikd, simonmar, hvr Reviewed By: simonmar Subscribers: rwbarton, thomie Differential Revision: https://phabricator.haskell.org/D3482
* Eliminate all uses of IF_ARCH_i386, and remove the definitionIan Lynagh2011-10-231-4/+0
|
* Remove unused CPP definitions of COMMAIan Lynagh2011-10-231-2/+0
|
* Remove unused IF_OS_* CPP definitionsIan Lynagh2011-10-231-14/+0
|
* Eliminate IF_ARCH_sparcIan Lynagh2011-05-311-6/+0
|
* Remove some unused CPP macrosIan Lynagh2011-05-311-73/+0
|
* Remove duplicated #defines for FreeBSDMatthias Kilian2010-09-121-7/+0
|
* Patch for shared libraries support on FreeBSDIan Lynagh2010-01-061-0/+6
| | | | From Maxime Henrion <mhenrion@gmail.com>
* Support for DragonFly BSDSimon Marlow2009-11-111-0/+6
| | | | | | Patches from Goetz Isenmann <info@goetz-isenmann.de>, slightly updated for HEAD (the method for configuring platforms in configure.ac has changed).
* Reorganisation of the source treeSimon Marlow2006-04-071-0/+108
Most of the other users of the fptools build system have migrated to Cabal, and with the move to darcs we can now flatten the source tree without losing history, so here goes. The main change is that the ghc/ subdir is gone, and most of what it contained is now at the top level. The build system now makes no pretense at being multi-project, it is just the GHC build system. No doubt this will break many things, and there will be a period of instability while we fix the dependencies. A straightforward build should work, but I haven't yet fixed binary/source distributions. Changes to the Building Guide will follow, too.