|
Re: getDirectoryContents fails in GHC 6.5 snapshots, works in GHC 6.4.1 sna: msg#00037lang.haskell.glasgow.bugs
I can repro it too. Looks as if the dirent.h implementation of the mingw snapshot that the nightlies are using is spongled. Simple stuff like #include <stdio.h> #include <errno.h> #include <dirent.h> int main() { DIR* dp; struct dirent* de; dp = opendir("c:\\"); while (de = readdir(dp)) { printf("%s\n",de->d_name); } closedir(dp); return 0; } fails. I'll upgrade and see if that improves matters. --sigbjorn ----- Original Message ----- From: "Brian Smith" <brianlsmith@xxxxxxxxx> To: <glasgow-haskell-bugs@xxxxxxxxxxx> Sent: Monday, August 08, 2005 10:31 Subject: Re: getDirectoryContents fails in GHC 6.5 snapshots,works in GHC 6.4.1 snapshots On 8/8/05, Simon Marlow <simonmar@xxxxxxxxxxxxx> wrote:
|
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| Previous by Date: | Re: getDirectoryContents fails in GHC 6.5 snapshots, works in GHC 6.4.1 snapshots, Brian Smith |
|---|---|
| Next by Date: | RE: another wash compile problem, Simon Marlow |
| Previous by Thread: | Re: getDirectoryContents fails in GHC 6.5 snapshots, works in GHC 6.4.1 snapshots, Brian Smith |
| Next by Thread: | Re: getDirectoryContents fails in GHC 6.5 snapshots, works in GHC 6.4.1 snapshots, Sigbjorn Finne |
| Indexes: | [Date] [Thread] [Top] [All Lists] |
| News | FAQ | advertise |