Tagged Questions
3
votes
2answers
90 views
how to lock a file on Windows from Haskell?
I'm porting a program to Windows that uses POSIX fcntl locking (setLock, getLock, waitToSetLock). I can't see to find any locking stuff for Windows in GHC's libraries or on Hackage. Is there anything?
...
1
vote
1answer
46 views
How to set up flag in WinGhci, Haskell
I have problem with n+k pattern.
I want to enable it, but i don't know how.
I have added {-# LANGUAGE NPlusKPatterns #-} at the beggining of my .hs file, but it didn't work.
Also I try typping in ...
3
votes
1answer
125 views
Colorful shell for Haskell on Windows?
I'm learning about haskell from this tutorial site. As you can see, the console in the pictures have colors, to make writing easier, and more readable. Is there any way to make the ghci colorful on ...
14
votes
0answers
139 views
How do I get text-icu working on Windows?
I was able to cabal install text-icu without errors. (I used --extra-lib-dirs and --extra-include-dirs to point to the lib and include directories in the binary distribution of icu4c.)
I was also ...
1
vote
2answers
143 views
cabal install pcap windows 64bit
I cannot install pcap package under Windows 7 (64 bit). Anybody know how to do that?
Error message if I run "cabal install pcap":
cabal.exe: Missing dependency on a foreign library:
Missing (or ...
1
vote
1answer
72 views
New to haskell, cabal is not found
I try to run cabal from cmd on Windows however it isn't recognized. I have modified my PATH variable to include the bin directory of my haskell install however that does not work. Any ideas?
3
votes
0answers
75 views
Haskell: http-wget hangs my program in windows
I've tried this on two computers. Here are my steps:
install wget on cygwin
cabal install http-wget
upgrade my PATH environment variable to include C:\cygwin\bin
open WinGHCi and type this:
From ...
1
vote
1answer
55 views
In Haskell, how do I install the encoding package on Windows?
I'm a total newb with haskell and I'm making a trivial project but I needed to run cabal install encoding. But, when I did, it gave me this error:
Configuring encoding-0.6.7.2...
setup.exe: Missing ...
2
votes
1answer
88 views
Using rawSystem With cmd.exe; Arg After “/c” has Prepended Quotation Mark, Causing Error
In Haskell, running rawSystem "cmd.exe" ["/c", "dir"] produces cmd's unrecognized command message as displayed below:
Prelude System.Cmd> rawSystem "cmd.exe" ["/c", "dir"]
'"dir' is not recognized ...
6
votes
1answer
183 views
How to change path of ghc?
I'm using HaskellPlatform-2012.4.0.0 on Win7. It's installed as portable. Paths are managed through .bat file so ghci and ghc works. Cabal config and folder are made semi-portable with this.
The ...
6
votes
1answer
214 views
How to change path of cabal config file?
I am using HaskellPlatform-2012.4.0.0 on Win7. It's installed as portable. Paths are managed through .bat file so ghci and ghc works.
But cabal installs it self at C:\Users\name\AppData\Roaming\cabal\
...
5
votes
1answer
155 views
Is there a way to get a Haskell setup on Windows without an installation? (Copy + paste)
I am programming on a school-given computer. I need to have a Haskell setup that does no installation (one I can drop on a flash drive and copy on to the C drive or just use from the flash drive ...
1
vote
1answer
90 views
win32 SetForegroundWindow in haskell
I've noticed the Haskell Win32 api does not have a SetForegroundWindow function and I'm not skilled enough in haskell to add this feature myself. Would there be any way to replicate this using haskell ...
1
vote
2answers
108 views
In Haskell, waitForProcess is blocking Ctrl-C under Windows' cmd.exe
I tried to run the following Haskell program in Windows' cmd.exe , while waitForProcess is being executed, pressing ctrl-c is not killing the program. But it works if running under MinGW shell. Any ...
0
votes
0answers
148 views
Cabal install of haskell package error on windows 7 [closed]
I'm new to Haskell and try to install the package cmath using cabal. I run the following:
cabal update
cabal install cabal-install
to get latest versions. Then I run
cabal install cmath
which ...
0
votes
1answer
87 views
Yesod ghc.exe not responding when doing “yesod devel” Windows
I was starting to read about Yesod on Yesod website, and I tried to install it on Windows.
I followed the following steps :
I installed Haskell-Platform from their website for Windows.
I added ...
3
votes
2answers
135 views
How to embed Haskell in a batch file (hash-bang runhaskell for Windows)?
On a UNIX-like system with GHC installed, I can create an file with the following contents
#!/usr/bin/env runhaskell
main = putStrLn "Hello, I am a UNIX script file."
Make the file executable, and ...
2
votes
2answers
58 views
Trouble running Warp, on WAI, in Windows
I've written a simple Hello World application for (Warp) on (Wai). It works fine in Ubuntu Linux, as do more complicated apps. But I can't even get this Hello World app to run in Windows. I'm using ...
6
votes
2answers
162 views
How do I pipe the stdout and stderr of a process to the same Handle?
How do I pipe the stdout and stderr of a process to the same Handle? On unix systems it's pretty easy, just use createPipe and pass the write end to runProcess as both stdout and stderr. On Windows ...
4
votes
1answer
232 views
Why is the local devel server not working with Yesod?
I'm running the latest version of Yesod and the Haskell Platform on Windows 8.
I made a new scaffold project with yesod init and then executed the following commands within the project directory:
...
0
votes
1answer
137 views
How do I paste long arguments into the debugger in Windows?
I'm trying to write my function's arguments in a text editor and paste them into the console, but the console won't let me.
(My list of arguments is long and the formatting starts to go crazy.)
I'm ...
1
vote
1answer
115 views
Incorrect behavior of getArgs on Windows under cygwin
I'm trying to pass an asterisk symbol in quotes into my console app as a command line argument, and when I get it using System.Environment.getArgs, I actually get list of files in current directory. ...
0
votes
0answers
180 views
How to install cabal packages with extra libraries under Windows?
I'm trying to install monadiccp with the "RuntimeGecode" flag so that it includes the Gecode libraries:
cabal install monadiccp --flags="RuntimeGecode Debug" ...
1
vote
0answers
136 views
linking Haskell app with Curl on Windows [closed]
I'm facing strange issue with linking my application against Curl (using Haskell
Curl binding curl-1.3.7): the application compiles well, but fails on linking
stage:
C:\haskell\bin\ghc.exe --make -o ...
8
votes
3answers
536 views
Screen capture in Haskell?
Is it possible to capture the screen (or a window) using Haskell in a Windows environment? (ie, taking a screenshot every few minutes or so). If so, how would one go about doing this (again, in ...
0
votes
0answers
49 views
Haskell-Mode for emacs on windows 7 [duplicate]
Possible Duplicate:
Where can I find my .emacs file for Emacs running on Windows?
I want to configure Emacs for Haskell-mode in Windows. So I referred Haskell Mode for Emacs
guide but have ...
0
votes
1answer
145 views
Downloading a file regularly
To help me learn Haskell, I want to write a script for automatically downloading the latest chromium mini_installer.exe every two days and installing it. Any suggestions? I'm using Windows 7.
0
votes
1answer
72 views
Haskell check for program avaliablity
Is it way to check whether given string represent executable in $PATH(%path%)?
It have to be portable to Windows. Idea to just call it and see return status is not apporiate,
as non-zero may mean ...
2
votes
1answer
197 views
GHC :: Linking agains sqlite3 fails on Windows
I created simple application, which uses sqlite3 as it's datastore back-end. I faced no problems when building and running it on Linux, but after I tried to build it on Windows, I see weird linking ...
0
votes
1answer
72 views
curl package not loaded at ghci
After installing successfully (and painfully) curl-1.3.7 , i have the following error when i fire up ghci (using argument -package curl)
Loading package curl-1.3.7 ... ghc.exe: Unknown PEi386 section ...
-1
votes
1answer
89 views
Cabal Configure fails on Configuring test (Windows)
I am new to Haskell and trying to install Yesod on a windows machine using cabal.
When I try to do a yesod devel I get a build failure, saing I must run configure first.
Then when I run a cabal ...
11
votes
1answer
443 views
Unicode console I/O in Haskell on Windows
It seems rather difficult to get console I/O to work with Unicode characters in Haskell under windows. Here is the tale of woe:
(Preliminary.) Before you even consider doing Unicode I/O in the ...
5
votes
2answers
464 views
Making use of all available RAM in a Haskell program?
I have 8 GB of RAM, but Haskell programs seemingly can only use 1.3 GB.
I'm using this simple program to determine how much memory a GHC program can allocate:
import System.Environment
import ...
0
votes
0answers
129 views
How can I check Windows version and conditional-compile a section of code based on this version using Cabal?
Given the following piece of code
(@<) :: Port -> IO Socket
(@<) p = do -- listen
#if !defined(IPV4ONLY)
s <- socket AF_INET6 Stream 0 =>> opt
setSocketOption s IPv6Only 0 // ...
0
votes
1answer
153 views
In haskell,socket listening failed on windows
I asked a question about signal on windows with the same code,here is another question
import IO
import Control.Exception hiding (catch)
import Control.Concurrent
import Network
main = withSocketsDo ...
3
votes
1answer
170 views
Piping data between two network sockets on Windows
Given two network sockets, what is the most efficient way to pipe data from one to the other without touching the contents in any way?
Is there a way (system call APIs) to manage socket-to-socket ...
1
vote
1answer
222 views
Silent Install of Haskell Platform
I'm trying to deploy Haskell platform to 3 University labs. Although the installer is only 90mb the extracted Haskell is almost 1gb. I've repackaged, but its still too big. Are there any command line ...
2
votes
1answer
77 views
Haskell plugins package on Windows Not x86 PEi386 error
I'm trying to get the plugins package to work on Windows.
I have windows Vista 64 bit. I installed the latest Haskell Platform today (which ghc --version says 7.0.4). I installed the latest cygwin.
...
1
vote
1answer
98 views
Haskell plugins package on Windows addDLL error
I have windows Vista 64 bit. I installed the latest Haskell Platform today (which ghc --version says 7.0.4). I installed the latest cygwin.
I ran cabal install plugins, it had minor issues (I didn't ...
7
votes
1answer
160 views
What are possible values for the System.Info “os” function in Haskell?
What are possible values for the "os" function from the System.Info package in the Standard Libraries?
Also: Are these values reliable, are they portable across many compilers? Will Hugs on windows ...
2
votes
1answer
153 views
how to prevent the console windows to close in ghc app?
When my windows console app compiled with ghc going to it's end, the console window instantly closes. That is good sometimes, but not very good when I want to read some text output from it. So, now I ...
1
vote
2answers
378 views
Haskell - Issue Compiling in GHC
I'm very new to Haskell, and I've recently installed the platform with GHC. I decided to test it out by compiling a simple Hello world program: main = putStrLn "Hello, world"
Now, when I go into the ...
4
votes
2answers
314 views
Cabal tests on windows 7
I am trying to follow the examples from here http://www.haskell.org/cabal/users-guide/#test-suites
When I run cabal test it throws this error cabal: No test suites enabled. Did you remember to ...
3
votes
1answer
384 views
Haskell: Can not install SDL-0.6.2 on windows
I am trying to install the Haskell SDL-0.6.2 package on Windows 7 with ghc 6.12.1 (Haskell Platform). I end up getting the following output from cabal:
C:\Users\Martin\dev\Rasenschach_0>cabal ...
5
votes
2answers
553 views
Where do I save my Haskell “modules”?
I put some functions in a file. Where on my PC should I save this file so that I can easily load my functions?
I am using the Haskell Platform on a Windows 64-bit computer.
3
votes
2answers
200 views
Haskell 32-bit program freezes on a 64-bit Windows
I'm using the GHC to build a haskell pogram for Windows with help of a speciefic (Haskell-)Library which is called citeproc-hs. On a 32Bit-Windows XP machine the application works just fine whereas on ...
3
votes
1answer
120 views
How do I get the desired behavior in my TCP server?
> import Network.Socket
> import Control.Monad
> import Network
> import System.Environment (getArgs)
> import System.IO
> import Control.Concurrent (forkIO)
> main :: IO ()
> ...
1
vote
3answers
172 views
why does nmap show that my tcp server is not listening on the port it should be?
I intend to build on this code, found here
However, I notice I can telnet to this server on the local host. Can't from another computer. I did a quick nmap scan, which reported that nothing was ...
3
votes
2answers
414 views
haskell: output non-ascii characters
I'd like to output non-ascii characters in WinGHCi, but this is what I get:
Prelude> "δ"
"\948"
Prelude> putStr "\948"
*** Exception: <stdout>: hPutChar: invalid argument (character is ...
10
votes
1answer
544 views
Can't link OpenCL on Windows with GHC
I'm trying to get the OpenCLRaw bindings to a point where I can use them on windows. I've forked the the OpenCLRaw repo on github so I can make modifications as needed. My branch is here:
...