Ok, I've been using the -i compile option to specify the folder to some haskell source when I compile using GHC.

ghc -threaded -i/d/haskell/src --make xxx.hs

I understand it uses those files as 'libraries' while compiling but can i do same in GHCi?

I usually import haskell prepackaged lib e.g. import Data.List or :m +Data.List.

I tried import /d/haskell/src -- does not work!

EDIT From Haskell doc: Chapter 2 Using GHCi Note that in GHCi, and ––make mode, the -i option is used to specify the search path for source files, whereas in standard batch-compilation mode the -i option is used to specify the search path for interface files.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

The '-i' flag is fine, the problem is with loading the module.

Within ghci, :m will only switch to either pre-compiled modules, or modules which were specified on the command-line. You need to use :add MyModule to tell ghci to compile a Haskell source file.

If you have

./src/Module/SubModule.hs

you can load it with the following:

localuser$ ghci -isrc
GHCi, version 7.0.3: http://www.haskell.org/ghc/  :? for help
Loading package ghc-prim ... linking ... done.
Loading package integer-gmp ... linking ... done.
Loading package base ... linking ... done.
Loading package ffi-1.0 ... linking ... done.
Prelude> :add Module.SubModule
[1 of 1] Compiling Module.SubModule        ( src/Module/SubModule.hs, interpreted )
Ok, modules loaded: Module.SubModule.
*Module.SubModule>
link|improve this answer
I managed to get around by doing: ghci -i/d/haskell/src (note there is no space after -i). Then i still needed to load my module using :load or i tested :add to work the same. – vis Jun 24 '11 at 11:46
You can also specify it directly as an argument, ghci -i/d/haskell/src /d/haskell/src/Module.hs If you're only loading one module you don't even need the -i, but I usually have a lot of sub-modules to pull in which ghci won't find otherwise. – John L Jun 24 '11 at 11:59
feedback

I think you can say :set -i /d/haskell/src; many, but not all, GHC options can be set that way. Alternatively, you should be able to use it as a parameter directly: ghci -i /d/haskell/src.

link|improve this answer
note there is no space between -i and /d/haskell/src. If i try to compile with the space, i get this error: targer ... is not a module name or a source file. And i tried what you said, but i still can't use the functions defined in those files in the specified directory. – vis Jun 24 '11 at 10:17
feedback

Your Answer

 
or
required, but never shown

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