Mercurial > sdl-ios-xcode
annotate docs/index.html @ 4134:31c7c57af8a4 SDL-1.2
Updates for building on Windows CE using mingw32ce cross compiler:
http://sourceforge.net/mailarchive/forum.php?thread_name 0703291652.38437.jwalt%40garni.ch&forum_name=cegcc-devel
Hi!
I just managed to compile SDL for Windows CE using the "mingw32ce"
configuration of http://cegcc.sourceforge.net. Test programs work as expected
(except for those using signals -- no POSIX on mingw32ce), and I didn't yet
encounter any problem.
While it was a pain to get everything compiled and running, the changes to
SDL are actually quite small (see attached SDL-ce.diff).
Unfortunately, the win32 headers shipped with cegcc are not 100% correct, and
it feels quite messy to work around them in SDL code, so those headers will
also need to be patched. (Attachment: win32api-ce.diff)
Since I had to apply the libtool patch from the cegcc patch, I have also ad ded
my copy of aclocal.m4 for SDL. I had to modify the cegcc libtool patch to
use "lt_cv_deplibs_check_method=pass_all" for mingw32ce, otherwise libtool
would not recognize the import libraries as valid for dynamic linking.
All these changes should not affect non-WinCE builds, so they could be
included in mainline SDL.
If you need some docs, you can use this description for a cross-compilation
README:
1) get cegcc from http://cegcc.sourceforge.net
2) build and install the "mingw32ce" variant (see cegcc installation docs)
3) patch w32api-headers (if not yet included in cegcc)
4) setup environment (customize the first three lines as you like):
PREFIX=/opt/mingw32ce
TARGET=arm-wince-mingw32ce
BUILD=`uname -m`-pc-linux-gnu
export PATH="$PREFIX/bin:$PREFIX/$TARGET/bin:$PREFIX/local/bin:$PATH"
export CFLAGS="${CFLAGS:- -O2 -g} -I$PREFIX/local/include"
export CPPFLAGS="${CPPFLAGS:- -O2 -g} -I$PREFIX/local/include"
export CXXFLAGS="${CXXFLAGS:- -O2 -g} -I$PREFIX/local/include"
export LDFLAGS="${LDFLAGS:- -O2 -g} -L$PREFIX/local/lib"
export HOST_CC="gcc"
export CC="$PREFIX/bin/$TARGET-gcc"
export CXX="$PREFIX/bin/$TARGET-g++"
export LD="$PREFIX/bin/$TARGET-ld"
export AS="$PREFIX/bin/$TARGET-as"
export AR="$PREFIX/bin/$TARGET-ar"
export RANLIB="$PREFIX/bin/$TARGET-ranlib"
export CONFIG_SHELL="/bin/sh"
5) build and install
./configure --target=$TARGET --host=$TARGET --build=$BUILD
make
make install
6) use (4) and (5) for any SDL-using software you want to cross-compile
7) copy $PREFIX/local/bin/SDL-1-2-0.dll into your executable directory on the WinCE machine
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 03 Jan 2008 06:19:07 +0000 |
parents | c6a447c98584 |
children |
rev | line source |
---|---|
0 | 1 <!DOCTYPE HTML PUBLIC "-//Norman Walsh//DTD DocBook HTML 1.0//EN"> |
1840
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
2 <HTML> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
3 <HEAD><TITLE>Simple DirectMedia Layer Introduction</TITLE></HEAD> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
4 <BODY BGCOLOR="#FFF8DC" TEXT="#000000" LINK="#0000ee" VLINK="#551a8b" ALINK="#ff0000"> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
5 <DIV CLASS="NAVHEADER"> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
6 <HR ALIGN="LEFT" WIDTH="100%"> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
7 </DIV> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
8 <DIV CLASS="PREFACE"> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
9 <H2><A NAME="AEN8">Simple DirectMedia Layer Introduction</A></H2> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
10 <P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
11 This library is designed to make it easy to write games that run on many |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
12 different platforms using the various native high-performance media interfaces, |
0 | 13 (for video, audio, etc) and presenting a single source-code level API to |
14 your application. This is a fairly low level API, but using this, completely | |
1840
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
15 portable applications can be written with a great deal of flexibility. |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
16 </P><P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
17 An introduction to SDL can be found online at: |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
18 <A HREF="http://www.libsdl.org/intro.php" TARGET="_top"> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
19 http://www.libsdl.org/intro.php</A> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
20 </P><P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
21 Tutorials on a variety of topics can be found online at: |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
22 <A HREF="http://www.libsdl.org/tutorials.php" TARGET="_top"> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
23 http://www.libsdl.org/tutorials.php</A> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
24 </P><P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
25 Documentation in Wiki form can be found online at: |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
26 <A HREF="http://www.libsdl.org/cgi/docwiki.cgi/" TARGET="_top"> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
27 http://www.libsdl.org/cgi/docwiki.cgi/</A> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
28 </P><P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
29 Enjoy! |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
30 </P><P> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
31 Sam Lantinga |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
32 <TT CLASS="EMAIL"><<A HREF="mailto:slouken@libsdl.org"><A HREF="mailto:slouken@libsdl.org" TARGET="_top" >slouken@libsdl.org</A></A>></TT> |
c6a447c98584
Updated docs for SDL 1.2.10 release
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
33 </P> <P> |
0 | 34 <br><br><HR> |
35 <H1>Table of Contents</H1> | |
36 <UL> | |
37 <LI><A HREF="html/index.html">Full Table of Contents</A></LI> | |
38 <LI><A HREF="html/guide.html">The SDL Guide</A></LI> | |
39 <LI><A HREF="html/reference.html">The SDL Reference</A></LI> | |
40 <UL> | |
41 <LI><A HREF="html/general.html">Initialization</A></LI> | |
42 <LI><A HREF="html/video.html">Video</A></LI> | |
43 <LI><A HREF="html/wm.html">Window Manager</A></LI> | |
44 <LI><A HREF="html/event.html">Event Handling</A></LI> | |
45 <LI><A HREF="html/joystick.html">Joystick</A></LI> | |
46 <LI><A HREF="html/audio.html">Audio</A></LI> | |
47 <LI><A HREF="html/cdrom.html">CDROM</A></LI> | |
48 <LI><A HREF="html/thread.html">Threads</A></LI> | |
49 <LI><A HREF="html/time.html">Timers</A></LI> | |
50 </UL> | |
51 </UL> | |
52 </DIV | |
53 ></BODY | |
54 ></HTML | |
55 > |