Tagged Questions
2
votes
1answer
97 views
How to run a ghc compiled binary on other machines?
This post is really informative on what I'm trying to achieve.
I produced a simple HelloUnix binary.
$ echo 'main = putStrLn "Hello Unix"' > HelloUnix.hs
$ ghc -static --make HelloUnix.hs
Which ...
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 ...
1
vote
0answers
102 views
Haskell compilation with gcc error
I have been trying to compile Haskell code using ghc (just for playing with Haskell) but get an error during the gcc linking part.
ghc --make compileTest.hs
Linking compileTest ...
/usr/bin/ld: ...
0
votes
1answer
469 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. ...
9
votes
1answer
163 views
Can GHC link binaries against a libc implementation such as uclibc (used in OpenWrt by default)?
I am using Debian/MIPS+QEMU to build MIPS ports of PortFusion (a TCP tunneling solution). The resulting binaries are linked against GNU libc. Thus, they cannot be just copied over and used on vanilla ...
7
votes
2answers
308 views
Haskell ghc compiling/linking error, not creating executable. (linux)
I wrote a basic hello world program in haskel and tried to compile it with:
ghc filename.hs. It produces .hi and .o files but no executable and displays
this error in the linker:
...
0
votes
0answers
182 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" ...
0
votes
1answer
26 views
GHC fails to load fftw bindings, what's it's issue?
I'm trying to use the fftw haskell bindings in Math.FFT. When attempting to compile ghc spits out the following
: /usr/local/lib/libfftw3.a: Bad magic. Expected: feedface, got: feedfacf.
ghc: panic! ...
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 ...
2
votes
1answer
198 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 ...
50
votes
1answer
607 views
GHCi runtime linker issue when using FFI declarations
I have a problem regarding FFI in Haskell and the interactive mode of GHC again.
Consider FFISo.hs:
{-# LANGUAGE OverloadedStrings #-}
module Main where
import qualified Data.ByteString.Char8 as B
...
1
vote
1answer
125 views
Haskell compiling DLL “undefined reference”
I was following the guide for making DLL's to be called from other languages here:
http://www.haskell.org/ghc/docs/7.0.4/html/users_guide/win32-dlls.html
I first compile the Haskell module and the ...
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 ...
12
votes
2answers
562 views
How to selectively link certain system libraries statically into Haskell program binary?
I'm currently developing some web application written in Haskell. All Haskell libraries are statically linked; although this "bloats" the executable, it not so much of a problem since it will be the ...
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:
...
0
votes
2answers
255 views
Haskell LLVM Binding linker error
update:
I'm now on LLVM 2.9 with binding llvm-0.9.1.2 running on ghc 7.0.4 and I'm down to just one of these errors:
/home/jfmiller28/.cabal/lib/llvm-0.9.1.2/ghc-7.0.4/libHSllvm-0.9.1.2.a(Scalar.o): ...
16
votes
4answers
797 views
Do ghc-compiled binaries require GHC or are they self-contained?
If a friend wants to run my Haskell binaries, does he have to first install Haskell, or can he immediately run the binary by itself?
Is the answer the same on Mac, Windows, and Linux?
59
votes
2answers
4k views
Small Haskell program compiled with GHC into huge binary
My source code can be found here: https://github.com/tm1rbrt/S3DM
When I compile it with ghc test.hs the executable comes out at over 7 meg! What, if anything, can I do to reduce this?
1
vote
2answers
281 views
Missing symbol in Haskell libclang binding: clang_toggleCrashRecovery
have a bug with libClang, then i install it with cabal at the end i get:
[13 of 13] Compiling Clang ( src/Clang.hs, dist/build/Clang.o )
In file included from ./src/Clang/FFI_stub_ffi.h:6,
...
0
votes
1answer
291 views
Haskell package linker error: can't load .so/.DLL for: clang
i guys i have a problem, i want to run a haskell script that imports libClang (import Clang), i made a cabal install libClang befor and it work
now when i make runhaskell foo.hs i get:
foo.hs: ...
0
votes
2answers
481 views
ghc compile error but runghc works
UPDATE SOLVED
I updated to Haskell Platform 2011.2.0.1 and GHC 7.0.3 and now it works!!
I have the following haskell file named "webscrap2.hs". I can execute "runghc webscrap2.hs" and it works ...
2
votes
0answers
124 views
GHC Foreign hs_init/hs_add_root crashes
I don't repeat more than necessary, brief summary:
Following the Adder example on machine with win7 (64) with VS 2010.
(For the example look at ...
2
votes
1answer
308 views
Linking custom object files with Cabal
In a custom cabal hook I generated object files (*.o) which I want to pass to the linker. How do I do this idiomatically?
Solution
Don Stewart's answer goes in the right direction. Currently I do the ...
5
votes
2answers
435 views
How to build a program so that it doesn't require DLLs
How can I compile a (Haskell) program so that it doesn't require DLLs?
I wrote a program that uses GLUT and requires glut32.dll. I compiled it with ghc --make program.hs. Now I want to distribute my ...
22
votes
3answers
4k views
Calling Haskell from C++ code
I'm currently writing an app in C++ and found that some of its functionality would be better written in Haskell. I've seen instructions on calling Haskell from C code, but is it possible to do the ...
3
votes
1answer
243 views
Duplicate definition for symbol __module_registered error
I get an error message from GHCi about a "duplicate definition for symbol __module_registered", like this:
GHCi runtime linker: fatal error: I found a duplicate definition for symbol
...
3
votes
2answers
678 views
Linking to SDL and other libraries in Haskell
How to tell ghc to tell ld to link compiled binaries to SDL library?
I have a source.hs :
import Prelude
import Graphics.UI.SDL as SDL
import Data.Maybe
import GHC.Word
import ...
5
votes
2answers
2k views
Haskell foreign import stdcall on DLL function
This is probably a really easy question to answer, but for some reason I'm really struggling with it.
I have a DLL written in C to access hardware at a protocol level, and I want to write a Haskell ...
27
votes
7answers
4k views
Making small haskell executables?
Are there any good ways to make small haskell executables? With ghc6 a simple hello world program seems to come to about 370kB (523kB before strip). Hello world in C is about 4kB (9kB before strip).