vote up 1 vote down star

When compiling a haskell source file via ghc --make foo.hs GHC always leaves behind a variety of intermediate files other than foo.exe. These are foo.hi and foo.o.

I often end up having to delete the .hi and .o files to avoid cluttering up the folders.

Is there a command line option for GHC not to leave behind its intermediate files? (When asked on #haskell, the best answer I got was ghc --make foo.hs && rm foo.hi foo.o.

flag

3 Answers

vote up 2 vote down check

I've gone through the GHC docs a bit, and there doesn't seem to be a built-in way to remove the temporary files automatically -- after all, GHC needs those intermediate files to build the final executable, and their presence speeds up overall compilation when GHC knows it doesn't have to recompile a module.

However, you might find that setting the -outputdir option will help you out; that will place all of your object files (.o), interface files (.hi), and FFI stub files in the specified directory. It's still "clutter," but at least it's not in your working directory anymore.

link|flag
vote up 2 vote down

You can set the -hidir to /dev/null, I think, sending them there. Also, the -fno-code option in general turns off a lot of output. You might just want to use Cabal.

link|flag
vote up 4 vote down

My usual workflow is to use cabal rather than ghc directly. This sets the outputdir option into an appropriate build folder and can do things like build haddock documentation for you. All you need is to define the .cabal file for your project and then say cabal install or cabal build instead of run ghc directly. Since you need to follow this process in the end if you ever want to share your work on hackage, it is a good practice to get into and it helps manage package dependencies as well.

link|flag
That's what I do as well. For every piece of Haskell code that's bigger than a single file, I setup a .cabal file. That is, I just copy an existing .cabal file from somewhere and modify it. I think someone is working on a cabal --init command to setup a default working space, which would be quite useful. – Tom Lokhorst Sep 11 at 21:22
I'm fairly new to Haskell, but that's something I really like about cabal. cabal creates one directory (dist) and puts all output-files in that directory while building. It keeps other directories clean. – davidbe Sep 14 at 7:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.