Difference between revisions of "SDL"

From HaskellWiki
Jump to navigation Jump to search
(Added instructions for SDL bindings with mac os x)
 
(Added the sections Introduction and Installation)
Line 1: Line 1:
  +
== Introduction ==
  +
The Haskell package [http://hackage.haskell.org/package/SDL SDL] is a binding to the [http://www.libsdl.org/ C library libSDL]
  +
  +
From [http://en.wikipedia.org/wiki/Simple_DirectMedia_Layer Wikipedia]:
  +
<br>
  +
Simple DirectMedia Layer (SDL) is a cross-platform, free and open source software multimedia library written in C, that presents a simple interface to various platforms' graphics, sound, and input devices. Software developers use it to write computer games or other multimedia applications that can run on many operating systems including Windows, Mac OS X, OS 9, Linux, the PSP, Google Android, AmigaOS, AmigaOS 4, Haiku/BeOS, MorphOS, OpenVMS, Syllable, and WebOS. It manages video, events, digital audio, CD-ROM, sound, threads, shared object loading, networking and timers.
  +
  +
  +
== Installation ==
  +
For installation of SDL on Windows, see [http://jpmoresmau.blogspot.com/2010/05/haskell-sdl-on-windows-check-hacking.html Haskell SDL on Windows, check! (hacking required)]
  +
  +
  +
== Problems ==
 
=== Haskell-SDL with Mac OS X ===
 
=== Haskell-SDL with Mac OS X ===
   

Revision as of 17:58, 8 August 2010

Introduction

The Haskell package SDL is a binding to the C library libSDL

From Wikipedia:
Simple DirectMedia Layer (SDL) is a cross-platform, free and open source software multimedia library written in C, that presents a simple interface to various platforms' graphics, sound, and input devices. Software developers use it to write computer games or other multimedia applications that can run on many operating systems including Windows, Mac OS X, OS 9, Linux, the PSP, Google Android, AmigaOS, AmigaOS 4, Haiku/BeOS, MorphOS, OpenVMS, Syllable, and WebOS. It manages video, events, digital audio, CD-ROM, sound, threads, shared object loading, networking and timers.


Installation

For installation of SDL on Windows, see Haskell SDL on Windows, check! (hacking required)


Problems

Haskell-SDL with Mac OS X

There are some issues with the Haskell SDL bindings and Mac OS X, notably linking problems that result in an error such as:

Linking test ... Undefined symbols:

 "_SDL_main", referenced from:
     -[SDLMain applicationDidFinishLaunching:] in libSDLmain.a(SDLMain.o)

ld: symbol(s) not found collect2: ld returned 1 exit status <[/code>

In the SDL bindings' MACOSX file there is some mention of a code example that shows how to solve this. Unfortunately, the darcs repository where this code resides is down. After asking Nick Alexander, who was mentioned in the MACOSX file, he referred to the following work by Audrey Tang, where the Main-file trick for making this compile can still be found: [1]