summaryrefslogtreecommitdiff
path: root/utils/lndir
Commit message (Collapse)AuthorAgeFilesLines
* Remove MAX_PATH restrictions from RTS, I/O manager and various utilitiesTamar Christina2018-03-311-8/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: This shims out fopen and sopen so that they use modern APIs under the hood along with namespaced paths. This lifts the MAX_PATH restrictions from Haskell programs and makes the new limit ~32k. There are only some slight caveats that have been documented. Some utilities have not been upgraded such as lndir, since all these things are different cabal packages I have been forced to copy the source in different places which is less than ideal. But it's the only way to keep sdist working. Test Plan: ./validate Reviewers: hvr, bgamari, erikd, simonmar Reviewed By: bgamari Subscribers: rwbarton, thomie, carter GHC Trac Issues: #10822 Differential Revision: https://phabricator.haskell.org/D4416
* Prefer #if defined to #ifdefBen Gamari2017-04-283-51/+51
| | | | Our new CPP linter enforces this.
* cpp: Use #pragma once instead of #ifndef guardsBen Gamari2017-04-232-8/+2
| | | | | | | | | | | | | | 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
* Remove utils/lndir/Makefile (part of the old build system)Ian Lynagh2013-02-171-11/+0
|
* Remove the MACOSX_DEPLOYMENT stuff; fixes #7559Ian Lynagh2013-02-171-6/+0
| | | | | If anyone wants to do this in the future, they should just set appropriate CC_OPTS/LD_OPTS variables instead.
* lndir: Ignore .git directoriesIan Lynagh2011-06-261-0/+2
|
* 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.
* define NeedVarargsPrototypes to avoid segfault on x86_64Simon Marlow2008-06-181-0/+2
|
* Fix lndirIan Lynagh2008-04-081-1/+1
| | | | It would copy when it should symlink, and vice-versa.
* Mac OS X deployment target: piping opts through MakefilesManuel M T Chakravarty2008-02-211-0/+6
|
* Make lndir work on Windows (by copying)Ian Lynagh2007-07-301-9/+91
|
* Make lndir whitespace consistentIan Lynagh2007-07-301-130/+130
|
* Reorganisation of the source treeSimon Marlow2006-04-074-0/+665
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.