RE: Network.Socket on win32

2004-03-02 Thread Simon Marlow
> Yup that worked. Sort of an obscure error message > to communicate "package not found" > > Is there a convention so I know which package I > need for which module? My guess is sometimes (but > randomly) you need to add a package > on the command line corresponding to the first > part of

RE: Network.Socket on win32

2004-03-02 Thread haskell
Yup that worked. Sort of an obscure error message to communicate "package not found" Is there a convention so I know which package I need for which module? My guess is sometimes (but randomly) you need to add a package on the command line corresponding to the first part of the qualified modu

RE: Network.Socket on win32

2004-03-02 Thread Simon Marlow
> This program does not compile using GHC 6.2 on winXP. > > import Network.Socket > main = do putStr "" > > The error is: > > conc.o(.text+0x22):fake: undefined reference to > `__stginit_NetworkziSocket_' > > What am I doing wrong? You need to add '-package network' to the command lin

Network.Socket on win32

2004-03-02 Thread haskell
This program does not compile using GHC 6.2 on winXP. import Network.Socket main = do putStr "" The error is: conc.o(.text+0x22):fake: undefined reference to `__stginit_NetworkziSocket_' What am I doing wrong? -Alex- _ S.