summaryrefslogtreecommitdiff
path: root/utils/lndir/lndir.c
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-281-20/+20
| | | | Our new CPP linter enforces this.
* lndir: Ignore .git directoriesIan Lynagh2011-06-261-0/+2
|
* 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.
* 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-071-0/+399
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.