Tagged Questions
3
votes
0answers
86 views
HsOpenSSL segfaults on OS X
I'm trying to give HsOpenSSL a whirl on Mac OS X, and it's blowing up in my face.
The latest Hackage version (HsOpenSSL-0.10.3.3) builds and imports, but doing anything with it kills my GHCi (both ...
2
votes
0answers
43 views
Linking a library with GHC and Cabal in Mac OS X
I do have a library that uses the Java Native Interface (which is available as a library libjvm) via the Haskell FFI. Therefor some gluecode is in a c file, the functions are imported via the FFI and ...
6
votes
2answers
94 views
Haskell package missing c library
I'm having trouble building the hmatrix library on OS X Lion. Looking at the .cabal file, it requires the gsl library, so I installed it with macports. The .a files are in /opt/local/lib and the .h ...
1
vote
0answers
66 views
Why isn't cabal-install upgrading itself? [duplicate]
When I do a cabal update I get the following output:
Downloading the latest package list from hackage.haskell.org
Note: there is a new version of cabal-install available.
upgrade, run: cabal install ...
0
votes
1answer
137 views
How to install Haskell cabal tool for Haskell 7.6.1 on Mac OSX? [closed]
I installed Haskell on MAC OSX according to the instructions on this page.
Version 7.6.1
http://www.haskell.org/ghc/download_ghc_7_6_1
However, it does not install the cabal tool which I need for ...
1
vote
3answers
204 views
I'm upgrading my cabal-install or not at OSX
I just installed Haskell from it's official site. After that, following it's quickstart tutorial, I run:
`cabal update`
Which shows this message:
Downloading the latest package list from ...
1
vote
1answer
49 views
Where are Yesod binaries to work with in Mac OSX
I followed this quickstart tutorial.
After installing the yesod-platform, I try to run the yesod command with no success.
Am I doing something wrong?
I know how to fix it ---adding the right path ...
3
votes
1answer
79 views
Compiling SDL on OS X with Haskell fails
I can't get my SDL program to even build on OS X; I get this error:
/Users/kata/code/mekhane/.hsenv/cabal/lib/SDL-0.6.4/ghc-7.4.1/HSSDL-0.6.4.o: unknown symbol `_SDL_HasSSE2'
I've tried ...
0
votes
1answer
454 views
Linking a dynamic library (libjvm.dylib) in Mac OS X (rpath issue)
I do have an application that requires linkage with libjvm (a library from the JDK needed to do JNI bindings). When I tell the location of libjvm.dylib using -L it successfully compiles and links. ...
2
votes
3answers
156 views
Determining 64-bit or 32-bit Haskell installed on Mac OS X?
Can anyone tell me how to determine if I am using 64-bit or 32-bit Glasgow Haskell Compiler (GHC) on OS X? I have installed both 32 and 64-bit versions, and I don't know which one current is pointing ...
1
vote
1answer
58 views
Getting mysql-simple to work on OSX (Haskell)
Does anybody know how to get the mysql-simple library to run on OSX? I get the following error:
Loading package mysql-0.1.1.4 ... can't load .so/.DLL for: libmysqlclient.dylib ...
0
votes
1answer
170 views
can not locate cabal installed packages
I am at a loss.
OS X 10.8.2
The only reference I can find is this:
4.1 I just installed packages, but now the packages are not found
This happens when you install a package globally, and the ...
1
vote
1answer
68 views
Is it possible to extend the Instruments profiler on Mac OS X for a new language?
I'd like to use the Instruments profiler on the Mac to profile Haskell code. However, Haskell isn't a supported language by Xcode/Instruments.
Is it possible to extend Instruments to support ...
1
vote
1answer
227 views
NSInternalInconsistencyException while running Haskell & SDL program
I am trying to compile and run a simple SDL program on OSX 10.8.2, SDL 1.2.15, GHC 7.4.2, haskell SDL bindings 0.6.4:
import Graphics.UI.SDL as SDL
main :: IO ()
main = do
screen <- ...
0
votes
0answers
49 views
Can't install hs-dlist with Macports [closed]
Using MacPorts 2.1.2 on Mac OS X 10.6.8, I can't seem to install hs-dlist:
$ sudo port install hs-dlist
---> Computing dependencies for hs-dlist
---> Fetching archive for hs-dlist
---> ...
9
votes
1answer
273 views
Setting socket options on OSX
I'm trying to set the receive timeout on a socket constructed with the Network.Socket module. Here's a code snippet:
import Network.Socket
host = "127.0.0.1"
port = PortNumber 3000
main = do
...
4
votes
3answers
200 views
Haskell at a user level
I love coding in Haskell, but often am on a computer where I cannot install software, and which has some restrictions about what you can run. I would like to write Haskell code and test it while on ...
-1
votes
4answers
213 views
Haskell Looping Construct 100% CPU
I have a bug I can't really figure out. System is 10.5 (32 bits) with Haskell Platform 2010, GHC 6.12
Consider the following:
loop :: IO ()
loop = do
return ()
loop
main = do
loop
...
2
votes
0answers
153 views
wxHaskell Mac OS X Runtime Error
I followed these instructions to install wxWidgets (using Homebrew) and wxHaskell on OS X Lion. There were no errors.
When I try the examples here, the first Hello World example runs fine. However, ...
0
votes
1answer
134 views
Snap web framework and OSX Path
preface: new to OSX development.
cabal install snap --this works fine.
When I type snap into the terminal nothing happens. How do I export my snap path to my $PATH in OSX?
same thing happens with ...
4
votes
1answer
344 views
Distributing a Haskell program on Homebrew
I'm writing a program in Haskell on my Mac (command line executable, not an app). I'm using GitHub to host the git repository and homepage. I made the <project>.cabal and Setup.hs files since ...
1
vote
1answer
455 views
installing cairo on Mac OS Lion
I've just got a new mac, and I'm struggling to install Cairo for use with Haskell (diagrams in particular). I remember having a lot of problems with my previous machine, but I'm at a dead end this ...
3
votes
1answer
725 views
GHC - Mac OS X - ld: unknown option: -no_pie
When I try to compile a simple Hello World in Haskell and compile with
ghc --make Main.hs
I get:
Linking Main ...
ld: unknown option: -no_pie
collect2: ld returned 1 exit status
I'm ...
11
votes
1answer
226 views
Static linking wxHaskell on Mac OS X
I want to distribute a wxHaskell application on Mac OS X. How do I go about creating a Mac OS X app which can be used standalone without the user having to install any extra libraries?
I noticed the ...
3
votes
7answers
392 views
I need a way to run Haskell code without any install on a Mac
I enjoy developing in Haskell, but am presently confronted with a challenge. At my place of education, I don't have administrative rights on my account. I want to debug/test while there. I need a way ...
4
votes
1answer
273 views
Emacs Haskell mode - Speedbar not updating
I am using Emacs 23.4 on OS X (from http://emacsformacosx.com/). My ~/.emacs file contains:
(load "/path/to/haskell-site-file")
(add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
(add-hook ...
0
votes
1answer
301 views
Can't install gtk-mac-integration
I don't understand the error because it appears to be requiring a version of the same package that I'm trying to install.
$ cabal install gtk-mac-integration
Resolving dependencies...
[1 of 2] ...
1
vote
1answer
155 views
LLVM With Haskell, Strange Linker Error
I just installed LLVM (3.0) successfully, and got the Hackage bindings (3.0.0.0). However when I try to use it, I get the following linker error:
Loading package llvm-base-3.0.0.0 ... can't load ...
42
votes
2answers
801 views
Creating Haskell shared libraries on OS X
I'm trying to create a shared library from Haskell source code.
I've tried following the instruction here: http://weblog.haskell.cz/pivnik/building-a-shared-library-in-haskell/ but I'm just not ...
0
votes
1answer
210 views
macos - how to tell cabal/ghc to look in /opt for libraries/include files?
I've got the pcre library installed via ports in /opt.
I'm trying to install pcre-light, but cabal install pcre-light reports:
Resolving dependencies...
Configuring pcre-light-0.4...
Preprocessing ...
4
votes
2answers
188 views
Install happstack-server 6.5.3 on osx - missing libcryptopp
I'm trying to install the latest happstack-server on osx. They just added a dependency on libcryptopp, and I can't get it working.
~$ cabal install happstack-server
Resolving dependencies...
...
3
votes
1answer
944 views
Cannot install Yesod Haskell web framework on Mac OSX
I've no idea how to fix this. Does anybody have any ideas?
I'm getting the following error messages when I try:
~ >>> cabal install yesod
Resolving dependencies...
Configuring ...
0
votes
2answers
238 views
Installing dph-examples in Mac OS X 10.7.2
I am trying to install dph-examples in mac os x version 10.7.2 and I got this error. How ever on ghci , I can see
ghci>import Data.Array.Parallel.
Data.Array.Parallel.Base ...
3
votes
1answer
308 views
Error installing GLFW on mac using cabal for haskell
I'm have Max OSx 10.6.8, Xcode 3.2.6 (the latest version available for my mac version). I'm using haskell but I'm having trouble using opengl.
I found a suggestion a online like the following:
...
6
votes
1answer
668 views
Haskell Plugin for XCode 4 under OS X Lion
Is there an alternative to http://www.hoovy.org/HaskellXcodePlugin/ i can use for XCode 4 whilst using Mac OS X Lion ?
Or if it works, how can i build the Plugin under Lion?
5
votes
2answers
837 views
How do you install the Haskell Platform over a previous install?
I've been working with Haskell lately, and installed gtk2hs (a gtk library for Haskell) a few days ago using MacPorts. For some reason, MacPorts saw fit to install GHC 6.10 over my previous GHC 6.12 ...
2
votes
2answers
359 views
GHC error with System on OS X Lion
I tried to compile and link simple program using ghc, but it failed during linking:
import System (getArgs)
main = do
args <- getArgs
print args
I tried to compile with
% ghc -c -O ...
0
votes
4answers
308 views
Error loading function from file in GHCi
I'm completely new to Haskell. To grasp the basics I've started working through 'Learn you a Haskell for Great Good'. I'm stuck on the simple matter of loading a function from a file.
The file is ...
2
votes
1answer
249 views
Getting Leksah working on Mac OS X 10.5.8
I'm using Mac OS X 10.5.8. Another question indicated that Leksah is the IDE of choice for Haskell development.
However, Leksah (version 0.10.0.4) requires GHC 7.0.3 (problems with 6.12.2, problems ...
4
votes
1answer
481 views
cabal install … failing - osx - many unsatisfied packages
Update: Running ghc-pkg check reported:
~: ghc-pkg check
WARNING: cache is out of date: /Library/Frameworks/GHC.framework/Versions/7.0.3i386/usr/lib/ghc-7.0.3/package.conf.d/package.cache
use ...
2
votes
1answer
121 views
HUnit not importing on Mac
On a fresh install of Haskell Platform for Max OSX, the following code fails on import Test.HUnit when run using the runghc interpreter.
{--
- Save this file as Main.hs and run with % runghc Main.hs
...
19
votes
1answer
911 views
OSX, ghci, dylib, what is the correct way?
I need to build some C code and then reference that C code via the FFI. I would like to use my binding from inside ghci on osx. On of my constraints is that I cannot just hand the C sources to ghc ...
27
votes
4answers
2k views
Haskell Graphics Library that works in GHCi on MacOS X
Does there exist a Haskell graphics library or binding to an external library that fulfills the following requirements:
Can be used from ghci, i.e. I don't have to link and restart the program.
...
11
votes
1answer
2k views
Setting up TextMate for Haskell programming on Mac OS X
I am new to mac, and am in the process of getting my computer setup with all the programs I need, one of them being Haskell.
To my surprise, the Haskell platform for OS X is not like in Windows ...
1
vote
1answer
609 views
Problems installing Haskell library regex-pcre on Mac OS X
I'm trying to install the Haskell regex-pcre library using:
cabal install --extra-include-dirs=/usr/local/include \
--extra-include-dirs=/usr/include regex-pcre
However I get this ...
0
votes
4answers
2k views
Compiling Haskell “Hello World” on Mac Snow Leopard - crt1.10.5.o not found
Just trying to compile some trivial Haskell, but its not finding the c runtimes, despite the fact that they're right there:
$ cat hello_world.hs
main = putStrLn "hello, world"
$ ghc --make ...
3
votes
2answers
542 views
Matching specific unicode char in haskell regexp
This is Mac/OSX related problem!
I have the following three character long haskell string:
"a\160b"
I want to match and replace the middle character
Several approaches like
ghci> :m ...
2
votes
2answers
799 views
“Install” button disabled for Haskell GHC installer on my Mac. Please help, nothing works
I was hoping Haskell would be the first programming language I would learn, but I can't even get to square 1: when I run the GHC..pkg, the "install button" is greyed out. I tried asking at the ...
0
votes
1answer
352 views
install ALUT on OSX
i am interested in installing the cabal package
turing-music but i can't find the ALUT library on macports needed for the haskell binding to ALUT (http://hackage.haskell.org/package/ALUT).
Where can ...
1
vote
1answer
291 views
Haskell gtk2hs, no suitable image found
I'm trying to use GTK+'s Haskell API gtk2hs in OSX. I have installed ghc and haskell-platform via Homebrew.
Then I ran these three commands:
cabal update
cabal install gtk2hs-buildtools
cabal ...
