From clayshooter811 at gmail.com Tue May 13 05:39:02 2008 From: clayshooter811 at gmail.com (James Johnson) Date: Mon, 12 May 2008 22:39:02 -0500 Subject: [Liskell-devel] Build problems Message-ID: <9b662e9e0805122039v7cf2c9aftfb20b20be776a2f5@mail.gmail.com> Hi all. I've been trying to get Liskell from the darcs repository to play with it, but I can't seem to get it to build. Any Googling I do for similar error messages seems to turn up old bugs in GHC for Mac OSX. I'm running Ubuntu Linux 8.04 AMD64 if it matters. Sorry in advance if this is an obvious question, but I don't have much Haskell experience. Here's the output when I type 'make': james at doober:~/ghc$ make make -C utils/mkdependC boot make[1]: Entering directory `/home/james/ghc/utils/mkdependC' make[1]: Leaving directory `/home/james/ghc/utils/mkdependC' ------------------------------------------------------------------------ == make boot -r; in /home/james/ghc/includes ------------------------------------------------------------------------ ../utils/mkdependC/mkdependC -f .depend -- -O -I. -I../rts -- mkDerivedConstants.c ------------------------------------------------------------------------ == make boot -r; in /home/james/ghc/compat ------------------------------------------------------------------------ ../utils/mkdependC/mkdependC -f .depend -I. -Iinclude -I../includes -- -O -I. -Iinclude -D__GHC_PATCHLEVEL__=2 -I../libraries/base/cbits -I../libraries/base/include -- cbits/directory.c cbits/rawSystem.c cbits/unicode.c /usr/bin/ghc -M -optdep-f -optdep.depend -osuf o -optdep--exclude-module=System.Directory.Internals -H16m -O -I. -Iinclude -Rghc-timing -ignore-package Cabal -I../libraries -fglasgow-exts -no-recomp Compat/Directory.hs Compat/RawSystem.hs Compat/Unicode.hs Distribution/Compat/FilePath.hs Distribution/Compat/ReadP.hs Distribution/Compiler.hs Distribution/GetOpt.hs Distribution/InstalledPackageInfo.hs Distribution/License.hs Distribution/Package.hs Distribution/ParseUtils.hs Distribution/Version.hs Language/Haskell/Extension.hs <> make all /usr/bin/ghc -H16m -O -I. -Iinclude -Rghc-timing -ignore-package Cabal -I../libraries -fglasgow-exts -no-recomp -c Compat/Directory.hs -o Compat/Directory.o -ohi Compat/Directory.hi Compat/Directory.hs:27:0: Failed to load interface for `System.Directory.Internals': Use -v to see a list of the files searched for. <> make[2]: *** [Compat/Directory.o] Error 1 make[1]: *** [boot] Error 2 make: *** [stage1] Error 1 -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ James Johnson -------------- next part -------------- An HTML attachment was scrubbed... URL: http://hwi.endorphin.org/pipermail/liskell-devel/attachments/20080512/ffbb1919/attachment.html From clayshooter811 at gmail.com Tue May 13 05:41:40 2008 From: clayshooter811 at gmail.com (James Johnson) Date: Mon, 12 May 2008 22:41:40 -0500 Subject: [Liskell-devel] Build problems In-Reply-To: <9b662e9e0805122039v7cf2c9aftfb20b20be776a2f5@mail.gmail.com> References: <9b662e9e0805122039v7cf2c9aftfb20b20be776a2f5@mail.gmail.com> Message-ID: <9b662e9e0805122041i769967ccw51087e5db069775c@mail.gmail.com> Sorry, I forgot to mention in the last message that I followed the instructions on liskell.org/download precisely. I also made sure that all dependencies for GHC (Alex, Happy, Haddock) were installed. On 5/12/08, James Johnson wrote: > > Hi all. I've been trying to get Liskell from the darcs repository to play > with it, but I can't seem to get it to build. > > Any Googling I do for similar error messages seems to turn up old bugs in > GHC for Mac OSX. > > I'm running Ubuntu Linux 8.04 AMD64 if it matters. Sorry in advance if > this is an obvious question, but I don't have much Haskell experience. > > Here's the output when I type 'make': > > james at doober:~/ghc$ make > make -C utils/mkdependC boot > make[1]: Entering directory `/home/james/ghc/utils/mkdependC' > make[1]: Leaving directory `/home/james/ghc/utils/mkdependC' > ------------------------------------------------------------------------ > == make boot -r; > in /home/james/ghc/includes > ------------------------------------------------------------------------ > ../utils/mkdependC/mkdependC -f .depend -- -O -I. -I../rts -- > mkDerivedConstants.c > ------------------------------------------------------------------------ > == make boot -r; > in /home/james/ghc/compat > ------------------------------------------------------------------------ > ../utils/mkdependC/mkdependC -f .depend -I. -Iinclude -I../includes -- -O > -I. -Iinclude -D__GHC_PATCHLEVEL__=2 -I../libraries/base/cbits > -I../libraries/base/include -- cbits/directory.c cbits/rawSystem.c > cbits/unicode.c > /usr/bin/ghc -M -optdep-f -optdep.depend -osuf o > -optdep--exclude-module=System.Directory.Internals -H16m -O -I. -Iinclude > -Rghc-timing -ignore-package Cabal -I../libraries -fglasgow-exts -no-recomp > Compat/Directory.hs Compat/RawSystem.hs Compat/Unicode.hs > Distribution/Compat/FilePath.hs Distribution/Compat/ReadP.hs > Distribution/Compiler.hs Distribution/GetOpt.hs > Distribution/InstalledPackageInfo.hs Distribution/License.hs > Distribution/Package.hs Distribution/ParseUtils.hs Distribution/Version.hs > Language/Haskell/Extension.hs > < samples), 17M in use, 0.00 INIT (0.00 elapsed), 0.15 MUT (0.35 elapsed), > 0.03 GC (0.04 elapsed) :ghc>> > make all > /usr/bin/ghc -H16m -O -I. -Iinclude -Rghc-timing -ignore-package Cabal > -I../libraries -fglasgow-exts -no-recomp -c Compat/Directory.hs -o > Compat/Directory.o -ohi Compat/Directory.hi > > Compat/Directory.hs:27:0: > Failed to load interface for `System.Directory.Internals': > Use -v to see a list of the files searched for. > < samples), 17M in use, 0.00 INIT (0.00 elapsed), 0.04 MUT (0.09 elapsed), > 0.03 GC (0.03 elapsed) :ghc>> > make[2]: *** [Compat/Directory.o] Error 1 > make[1]: *** [boot] Error 2 > make: *** [stage1] Error 1 > > > -- > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > James Johnson > -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ James Johnson Cell: (847) 340-6867 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://hwi.endorphin.org/pipermail/liskell-devel/attachments/20080512/f5f62d47/attachment.htm