> However, I just tried a make install. This fell over on hsc. Now I
> seem to have broken it again! I'm about to try again - but I think the
> problem I had is sorted.

Your problem with make install is probably one I've come across myself.  It
tries to build the Happy-generated files in the compiler directory, because
the build is now in non-bootstrapping mode and there's no ParseIface.hs or
Parser.hs.  Try:

        $ cd fptools/ghc/compiler
        $ touch rename/ParseIface.hs parser/Parser.hs
        $ cd ../..
        $ make install

Cheers,
        Simon

Reply via email to