Embed SDL.dll in the .exe

Hi,

I’m porting a C game to SDL + some libraries (SDL_mixer, SDL_ttf,
SDL_gfx).

I’d like to compile a .exe that includes SDL.dll, SDL_mixer.dll, etc.,
so that users who want to use the improved SDL version just have to
drop-in 1 .exe file, and do not need to install all the .dll.

I’m using mingw gcc, but no luck so far with -static (gcc want to
include W32 API functions statically such as _mciSendCommandA at 16 and
obviously can’t find them).

Anybody has experience with this? Is that possible?

Thanks,–
Sylvain

Hi,

I’m porting a C game to SDL + some libraries (SDL_mixer, SDL_ttf,
SDL_gfx).

I’d like to compile a .exe that includes SDL.dll, SDL_mixer.dll,
etc.,
so that users who want to use the improved SDL version just have to
drop-in 1 .exe file, and do not need to install all the .dll.

This sounds very backwards to me… This is exactly why you do NOT
want a statically linked executable! :slight_smile:

Also, you do realize that releasing only statically linked executables
of a closed source application violates the licence of LGPL libs
(like SDL), right? You need to provide a dynamically linked version
as well, or linkable object files, or (obviously) the source code, or
otherwise ensure that users can use your software with whatever SDL
version they want.

I’m using mingw gcc, but no luck so far with -static (gcc want to
include W32 API functions statically such as _mciSendCommandA at 16 and
obviously can’t find them).

Anybody has experience with this? Is that possible?

You can specify more exactly how to link each lib by linking in
multiple stages if you just compile to object files and then use ‘ld’
for linking. I think it might work if you first create an object
linked with all the static stuff, and then link that with anything
you still want dynamic, to produce the executable.

If all else fails, simply don’t have dynamically linked libs installed
when you link your executable. The linker will have no choice but to
use the static versions. :slight_smile:

//David Olofson - Programmer, Composer, Open Source Advocate

.------- http://olofson.net - Games, SDL examples -------.
| http://zeespace.net - 2.5D rendering engine |
| http://audiality.org - Music/audio engine |
| http://eel.olofson.net - Real time scripting |
'-- http://www.reologica.se - Rheology instrumentation --'On Wednesday 26 September 2007, Sylvain Beucler wrote:

Hi!

Hi,

I’m porting a C game to SDL + some libraries (SDL_mixer, SDL_ttf,
SDL_gfx).

I’d like to compile a .exe that includes SDL.dll, SDL_mixer.dll,
etc.,
so that users who want to use the improved SDL version just have to
drop-in 1 .exe file, and do not need to install all the .dll.

This sounds very backwards to me… This is exactly why you do NOT
want a statically linked executable! :slight_smile:

Also, you do realize that releasing only statically linked executables
of a closed source application violates the licence of LGPL libs
(like SDL), right? You need to provide a dynamically linked version
as well, or linkable object files, or (obviously) the source code, or
otherwise ensure that users can use your software with whatever SDL
version they want.

No surprise, I was pretty sure I’d get advice on why I don’t want to
do a static compilation - except I do want that :slight_smile:

The C game is GNU FreeDink, it is released under the GNU GPL:
http://git.sv.gnu.org/gitweb/?p=freedink.git;a=summary

I plan to provide several packages, statically compiled and
dynamically compiled – and people are still not happy they’ll just
./configure && make && make install :wink:

Btw, static compilation of proprietary SDL apps does not break the
LGPL if you provide the .o and every compilation tools needed by the
user when he wants to use another version of SDL with your app. Using
dynamic linking is the easiest way to comply with the LGPL, but not
the only one!

Now for the technical part:

I’m using mingw gcc, but no luck so far with -static (gcc want to
include W32 API functions statically such as _mciSendCommandA at 16 and
obviously can’t find them).

Anybody has experience with this? Is that possible?

You can specify more exactly how to link each lib by linking in
multiple stages if you just compile to object files and then use ‘ld’
for linking. I think it might work if you first create an object
linked with all the static stuff, and then link that with anything
you still want dynamic, to produce the executable.

If all else fails, simply don’t have dynamically linked libs installed
when you link your executable. The linker will have no choice but to
use the static versions. :slight_smile:

I indeed use separate compilation and link the .o with MinGW ld.

I don’t think I can compile a fully-static .exe, because .exe will
always require external Windows .dll’s, which I don’t have the .a for.

I’d like to include libSDL (and libSDL_mixer, etc.) in my .exe while
still keeping their external dependencies (to the Windows MCI and
timer subsystems, namely).

I tried a non-static build and giving the (cross-compiled) libSDL.a to
ld (instead of -lSDL), but it still required those external
dependencies.

I look for a kind of “partially static” compilation, as if SDL was
part of my own code, but I don’t have enough knowledge of GCC to know
how that can be done.

Do you know if that’s possible?On Wed, Sep 26, 2007 at 10:32:51AM +0200, David Olofson wrote:

On Wednesday 26 September 2007, Sylvain Beucler wrote:


Sylvain

Also, you do realize that releasing only statically linked executables
of a closed source application violates the licence of LGPL libs
(like SDL), right? You need to provide a dynamically linked version
as well, or linkable object files, or (obviously) the source code, or
otherwise ensure that users can use your software with whatever SDL
version they want.

No surprise, I was pretty sure I’d get advice on why I don’t want to
do a static compilation - except I do want that :slight_smile:

The C game is GNU FreeDink, it is released under the GNU GPL:
http://git.sv.gnu.org/gitweb/?p=freedink.git;a=summary

I plan to provide several packages, statically compiled and
dynamically compiled – and people are still not happy they’ll just
./configure && make && make install :wink:

Btw, static compilation of proprietary SDL apps does not break the
LGPL if you provide the .o and every compilation tools needed by the
user when he wants to use another version of SDL with your app. Using
dynamic linking is the easiest way to comply with the LGPL, but not
the only one!

David did point out that if you provided the object files and related
materials that you could still comply with LGPL… so… ya skipped a bit
in his email :).

More to the point of my post – I’m curious. If you statically link a GPL
program, doesn’t the GPL license require what it’s linked against to be GPL
as well ? I know the GPL is viral in many ways similar, but I’m uncertain
in this case… hence the need and rise of LGPL.

-Will

David Olofson wrote:

If all else fails, simply don’t have dynamically linked libs installed
when you link your executable. The linker will have no choice but to
use the static versions. :slight_smile:

This is the only way I was able to get it work. I distribute a big (GPL)
.exe with all the non-windows libraries compiled in. I built all the
libraries with --disable-shared passed to each one’s configure script.

Using mingw gcc, cross-build, here.

Gregory

Den Wed, 26 Sep 2007 12:02:28 +0200
skrev Sylvain Beucler :

I look for a kind of “partially static” compilation, as if SDL was
part of my own code, but I don’t have enough knowledge of GCC to know
how that can be done.

Do you know if that’s possible?

Yes, it’s possible, you just have to be a bit more specific when
telling the linker what you want to do, since -static affects the
entire linking process and not just part of it like you want. The
linker has some options called -Bstatic and -Bdynamic that can be used
to do exactly what you want, and you can pass args to the linker with
gcc’s -Wl arg, with commas in stead of spaces. So, just surround the
libraries you want to link statically with -Wl,-Bstatic and
-Wl,-Bdynamic:

gcc stuff -Wl,-Bstatic -lSDL etc -Wl,-Bdynamic

You can do this as many times as you want in a link. A -Wl,-Bdynamic
at the end ensures that gcc won’t try to statically link system libs
and such. If you still get a dynamically linked SDL after this, you
probably just have to sort out the order of the link args (a request
for a lib in a dynamic part after that lib’s already been statically
linked will pull it in dynamically as well if possible. If you’ve got
false dependencies interfering with your link, -Wl,–as-needed might
help (makes the target only depend on first-level dependencies)).

  • Gerry

More to the point of my post – I’m curious. If you statically link a GPL
program, doesn’t the GPL license require what it’s linked against to be GPL
as well ? I know the GPL is viral in many ways similar, but I’m uncertain
in this case… hence the need and rise of LGPL.

LGPL is compatible with the GNU GPL, there’s an explicit clause
stating you can convert a LGPL app to the GNU, so I don’t think that’s
an issue (of course I still need to provide the SDL source code on the
same server).

There’s a good list of compatible licenses at
http://www.gnu.org/licenses/license-list.html--
Sylvain

Thanks, I’ll dig more into those options.

I’m also having a first clean build by simply adding -lwinmm - I
thought that --static-libs would give me this kind of dependencies
automatically :slight_smile:

i586-mingw32msvc-gcc -static joytest.c
/usr/local/cross-tools/i386-mingw32msvc/bin/sdl-config --cflags --static-libs
-lwinmmOn Wed, Sep 26, 2007 at 03:14:25PM +0200, Gerry JJ wrote:

Den Wed, 26 Sep 2007 12:02:28 +0200
skrev Sylvain Beucler <@Sylvain_Beucler>:

I look for a kind of “partially static” compilation, as if SDL was
part of my own code, but I don’t have enough knowledge of GCC to know
how that can be done.

Do you know if that’s possible?

Yes, it’s possible, you just have to be a bit more specific when
telling the linker what you want to do, since -static affects the
entire linking process and not just part of it like you want. The
linker has some options called -Bstatic and -Bdynamic that can be used
to do exactly what you want, and you can pass args to the linker with
gcc’s -Wl arg, with commas in stead of spaces. So, just surround the
libraries you want to link statically with -Wl,-Bstatic and
-Wl,-Bdynamic:

gcc stuff -Wl,-Bstatic -lSDL etc -Wl,-Bdynamic

You can do this as many times as you want in a link. A -Wl,-Bdynamic
at the end ensures that gcc won’t try to statically link system libs
and such. If you still get a dynamically linked SDL after this, you
probably just have to sort out the order of the link args (a request
for a lib in a dynamic part after that lib’s already been statically
linked will pull it in dynamically as well if possible. If you’ve got
false dependencies interfering with your link, -Wl,–as-needed might
help (makes the target only depend on first-level dependencies)).


Sylvain

Sylvain Beucler wrote:

Hi,

I’m porting a C game to SDL + some libraries (SDL_mixer, SDL_ttf,
SDL_gfx).

I’d like to compile a .exe that includes SDL.dll, SDL_mixer.dll, etc.,
so that users who want to use the improved SDL version just have to
drop-in 1 .exe file, and do not need to install all the .dll.

Maybe there’s something I’m missing but you do know that MicroSoft doesn’t
recommend that applications install or require the user to install .dlls at
all? Basically, all you have to do is to put the dll in the same folder as
the exe.

Unless tou really want to pack everything (code and assets) in a single exe
file of course.

OK, I managed to build the stand-alone executable.

I cross-compiled all SDL libraries manually because the binary
releases don’t provide static libs. I also cross-compiled freetype2
for SDL_ttf. There was a couple libtool fixes to do on SDL_gfx as
well.

Then I just add to specific ‘-static’ and ‘-lfreetype -lwinmm’ to gcc.

No need to specfic ‘disable-shared’ for me when building the
libraries, using ‘-static’ for my .exe takes care of using the static
libs appropriately.

Doing the same thing for GNU/Linux is quite more difficult, because
SDL’s dependencies require dlopen(), which in turn requires a
non-static build, so we have to use the scary -Wl,-Bstatic and
-Wl,-Bdynamic options. Moreover, some versions of SDL conflicts with
X11 when compiled statically (SDL_x11dyn.o). And of course, GNU/Linux
has numerous backends which can make your dependencies list grow very
large!

Building a dynamic executable that includes SDL + its dependencies
except X11 is easy enough though, once you listed the dependencies
and the matching distro packages.

I attach 2 files from my documentation for people interested in doing
the same thing for their project :slight_smile:
http://git.sv.gnu.org/gitweb/?p=freedink.git;a=blob;f=doc/cross.txt
http://git.sv.gnu.org/gitweb/?p=freedink.git;a=blob;f=doc/static-build.txt

Thanks to the list for the tips :)On Wed, Sep 26, 2007 at 03:57:30PM +0200, Sylvain Beucler wrote:

On Wed, Sep 26, 2007 at 03:14:25PM +0200, Gerry JJ wrote:

Den Wed, 26 Sep 2007 12:02:28 +0200
skrev Sylvain Beucler <@Sylvain_Beucler>:

I look for a kind of “partially static” compilation, as if SDL was
part of my own code, but I don’t have enough knowledge of GCC to know
how that can be done.

Do you know if that’s possible?

Yes, it’s possible, you just have to be a bit more specific when
telling the linker what you want to do, since -static affects the
entire linking process and not just part of it like you want. The
linker has some options called -Bstatic and -Bdynamic that can be used
to do exactly what you want, and you can pass args to the linker with
gcc’s -Wl arg, with commas in stead of spaces. So, just surround the
libraries you want to link statically with -Wl,-Bstatic and
-Wl,-Bdynamic:

gcc stuff -Wl,-Bstatic -lSDL etc -Wl,-Bdynamic

You can do this as many times as you want in a link. A -Wl,-Bdynamic
at the end ensures that gcc won’t try to statically link system libs
and such. If you still get a dynamically linked SDL after this, you
probably just have to sort out the order of the link args (a request
for a lib in a dynamic part after that lib’s already been statically
linked will pull it in dynamically as well if possible. If you’ve got
false dependencies interfering with your link, -Wl,–as-needed might
help (makes the target only depend on first-level dependencies)).

Thanks, I’ll dig more into those options.

I’m also having a first clean build by simply adding -lwinmm - I
thought that --static-libs would give me this kind of dependencies
automatically :slight_smile:

i586-mingw32msvc-gcc -static joytest.c
/usr/local/cross-tools/i386-mingw32msvc/bin/sdl-config --cflags --static-libs
-lwinmm


Sylvain
-------------- next part --------------
Statically compiling for GNU/Linux

Thread “[SDL] Embed SDL.dll in the .exe”
http://lists.libsdl.org/pipermail/sdl-libsdl.org/2007-September/062841.html

Distros compile libSDL with a number of backends (such as X11 and
AAlib for graphics, ALSA and OSS for sounds, etc.) which will trigger
a lot of dependencies.

You may need to statically compile against a manually-compiled libSDL
which fewer backends enabled.

Another solution may be to have SDL use relaytool (check
http://autopackage.org/docs/tutorials/glb-binport.html).

Technical note: maybe use -Wl,–as-needed, it’s supposed to reduce the
number of NEEDED symbols (objdump -x src/freedink | grep NEEDED). The
SDL list says it “makes the target only depend on first-level
dependencies”.

Compiling with the distro’s SDL

Here’s an attempt to list the minimum dependencies to statically
compile against Debian Etch’s libsdl1.2-dev:

Dynamic

glibc-related, better keep them dynamic I think

-ldl # dlopen
-lpthreads # threads

X11 - conflicts with SDL_x11dyn.o if statically

compiled. Something to do with ./configure --enable-x11-shared ?

-lX11

Static

Maths

-lm

AAlib text-mode graphics backend

aptitude install libaa1-dev
aptitude install libgpmg1-dev # mouse support
-laa -lgpm

caca text-mode graphics backend

aptitude install libcaca-dev
aptitude install libslang2-dev
aptitude install libncurses5-dev
-lcaca -lslang -lncurses -lcucul

Direct frame buffer graphics backend

aptitude install libdirectfb-dev
aptitude install libfusionsound-0.9-25
-ldirectfb -ldirect -lfusion

SVGA graphics backend

aptitude install libsvga1-dev
-lvga

ALSA sound backend

aptitude install libasound2-dev
-lasound

aRts sound backend

aptitude install libarts1-dev
-lartsc

ESD sound backend

aptitude install libesd0-dev
-lesd

NAS sound backend

aptitude install libaudio-dev
-laudio

$ gcc -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT joytest.c
-L/usr/lib -Wl,–as-needed -Wl,-Bstatic -lSDL -lcaca -lslang -laa
-laudio -lesd -lartsc -lvga -ldirectfb -ldirect -lfusion -lcurses
-lcucul -lasound -lgpm -lm -Wl,-Bdynamic -lX11 -ldl -lpthread -o
joytest

–as-needed doesn’t seem useful here.

$ ls -lh joytest
-rwxr-xr-x 1 me me 2,5M 2007-09-26 22:24 joytest
$ strip joytest
$ ls -lh joytest
-rwxr-xr-x 1 me me 2,0M 2007-09-26 22:24 joytest
me at dmc:~/freedink/test/sdl$ ldd joytest
linux-gate.so.1 => (0xffffe000)
libX11.so.6 => /usr/lib/libX11.so.6 (0xb7ee2000)
libdl.so.2 => /lib/tls/i686/cmov/libdl.so.2 (0xb7ede000)
libpthread.so.0 => /lib/tls/i686/cmov/libpthread.so.0 (0xb7ecc000)
libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb7d9b000)
libXau.so.6 => /usr/lib/libXau.so.6 (0xb7d98000)
/lib/ld-linux.so.2 (0xb7fe8000)
libXdmcp.so.6 => /usr/lib/libXdmcp.so.6 (0xb7d92000)

Here we still have a dynamic executable, with the usual glibc
issues. Compiling with apgcc from Apbuild (Autopackage) may help.

Compiling with a custom simpler SDL

We can try to recompile SDL ourself and get rid of the X11 conflicts,
allowing for a truly static executable:

$ cd SDL-1.2.12

not sure if both options are mandatory:

$ ./configure --disable-x11-shared --disable-shared
$ make && make install

$ gcc -static -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT
joytest.c -L/usr/local/lib -L/usr/lib -lSDL -laudio -lvga -ldirectfb
-ldirect -lfusion -lm -lXrandr -lXrender -lX11 -lXau -lXdmcp
-lXext -ldl -lpthread -o joytest
/usr/local/lib/libSDL.a(SDL_alsa_audio.o): In function LoadALSALibrary': ./src/audio/alsa/SDL_alsa_audio.c:139: warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking /usr/lib/libdirect.a(stream.o): In function tcp_open’:
(.text+0x891): warning: Using ‘getaddrinfo’ in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/usr/lib/libaudio.a(ConnSvr.o): In function MakeTCPConnection': /home/steve/debian/nas/nas-1.8/lib/audio/ConnSvr.c:981: warning: Using 'gethostbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking /usr/lib/libX11.a(x11_trans.o): In function _X11TransSocketINETConnect’:
(.text+0x1da4): warning: Using ‘getservbyname’ in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
$ ls -lh joytest
-rwxr-xr-x 1 me me 4,4M 2007-09-26 23:52 joytest
$ strip joytest
$ ls -lh joytest
-rwxr-xr-x 1 me me 2,3M 2007-09-26 23:52 joytest
$ ldd joytest
not a dynamic executable
$ ./joytest

Runs fine until I exit the app:

*** glibc detected *** double free or corruption (out): 0xb7ba4230 ***
Abandon

The resulting binary also crashes with a floating point exception
under Fedora 7 :confused:

Maybe it can work with a different SDL setup, namely one that wouldn’t
use dlopen.

Something in-between works. The improvement over using the distro’s
SDL is that X11 is now statically linked:
$ gcc -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT joytest.c
-L/usr/local/lib -L/usr/lib -Wl,-Bstatic -lSDL -laudio -lvga
-ldirectfb -ldirect -lfusion -lm -lXrandr -lXrender -lX11 -lXau
-lXdmcp -lXext -o joytest -Wl,-Bdynamic -ldl -lpthread
$ ls -lh joytest
-rwxr-xr-x 1 me me 3,6M 2007-09-26 23:50 joytest
$ strip joytest
me at dmc:~/freedink/test/sdl$ ls -lh joytest
-rwxr-xr-x 1 me me 1,8M 2007-09-26 23:50 joytest
$ ldd joytest
linux-gate.so.1 => (0xffffe000)
libdl.so.2 => /lib/tls/i686/cmov/libdl.so.2 (0xb7f5a000)
libpthread.so.0 => /lib/tls/i686/cmov/libpthread.so.0 (0xb7f48000)
libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb7e17000)
/lib/ld-linux.so.2 (0xb7f78000)

Try switching from dlopen to relaytool

Left as exercise to the reader :wink:
-------------- next part --------------
Cross-compilation

Install a cross-compiler version of GCC

aptitude install mingw32

Prepare directory to store cross-compiled libraries

mkdir -p -m 775 /usr/local/cross-tools/i386-mingw32msvc
cd /usr/local/cross-tools
ln -s i386-mingw32msvc i386-mingw32

Install precompiled SDL binaries

VERSION=1.2.12

Cf. Simple DirectMedia Layer - SDL version 1.2.15 (historic)

wget http://libsdl.org/release/SDL-devel-$VERSION-mingw32.tar.gz
tar xzf SDL-devel-$VERSION-mingw32.tar.gz
mv SDL-$VERSION/* i386-mingw32msvc/
rmdir SDL-$VERSION

Install precompiled SDL_mixer binaries

VERSION=1.2.8
wget http://libsdl.org/projects/SDL_mixer/release/SDL_mixer-devel-$VERSION-VC8.zip
unzip SDL_mixer-devel-$VERSION-VC8.zip
cp -r SDL_mixer-$VERSION/include/* i386-mingw32msvc/include/SDL/
cp -r SDL_mixer-$VERSION/lib/* i386-mingw32msvc/lib/
rm -rf SDL_mixer-$VERSION/

Install precompiled SDL_mixer binaries

VERSION=2.0.9
wget http://libsdl.org/projects/SDL_ttf/release/SDL_ttf-devel-$VERSION-VC8.zip
unzip SDL_ttf-devel-$VERSION-VC8.zip
cp -r SDL_ttf-$VERSION/include/* i386-mingw32msvc/include/SDL/
cp -r SDL_ttf-$VERSION/lib/* i386-mingw32msvc/lib/
rm -rf SDL_ttf-$VERSION/

Cross-compile SDL_gfx (no binaries available)

cd /usr/src
VERSION=2.0.16
wget http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-$VERSION.tar.gz
tar xzf SDL_gfx-$VERSION.tar.gz
cd SDL_gfx-$VERSION

Refresh and mark as DLL-compliant (patch sent)

rm -f acinclude.m4
sed -i -e ‘s/-version-info/-no-undefined -version-info/’ Makefile.am
autoreconf --force --install --symlink
patch -p1 < /tmp/SDL_gfx-libtool.diff # see below
export SDL_CONFIG=/usr/local/cross-tools/i386-mingw32msvc/bin/sdl-config
./configure --host=i586-mingw32msvc --build=i686-pc-linux-gnu
make
make install

Cross-compile FreeDink

cd ~/freedink/
mkdir cross
cd cross/
SDL_CONFIG=/usr/local/cross-tools/i386-mingw32msvc/bin/sdl-config
…/configure --host=i586-mingw32msvc --build=i686-pc-linux-gnu
make clean # just in case
make
make install-strip DESTDIR=/tmp/distribute/

Alternative: cross-compile yourself

Among others, necessary for static builds (not static libraries with
the official releases).

SDL

VERSION=1.2.12
wget http://libsdl.org/release/SDL-$VERSION.tar.gz
tar xzf SDL-$VERSION.tar.gz
cd SDL-$VERSION
./configure --host=i586-mingw32msvc --build=i686-pc-linux-gnu
make
make install # /usr/local/cross-tools/i386-mingw32/ by default

SDL_mixer

VERSION=1.2.8
wget http://libsdl.org/projects/SDL_mixer/release/SDL_mixer-$VERSION.tar.gz
tar xzf SDL_mixer-$VERSION.tar.gz
cd SDL_mixer-$VERSION

Disable MP3 support (not needed in FreeDink and avoid a dependency)

SDL_CONFIG=/usr/local/cross-tools/i386-mingw32msvc/bin/sdl-config ./configure
–host=i586-mingw32msvc --build=i686-pc-linux-gnu
–disable-music-mp3
make
make install # /usr/local/cross-tools/i386-mingw32/ by default

FreeType (SDL_ttf dependency)

VERSION=2.3.5
wget http://download.savannah.gnu.org/releases/freetype/freetype-$VERSION.tar.bz2
tar xjf freetype-$VERSION.tar.bz2
cd freetype-$VERSION
./configure --host=i586-mingw32msvc --build=i686-pc-linux-gnu --prefix=/usr/local/cross-tools/i386-mingw32msvc
make
make install

SDL_ttf

VERSION=2.0.9
wget http://libsdl.org/projects/SDL_ttf/release/SDL_ttf-$VERSION.tar.gz
tar xzf SDL_ttf-$VERSION.tar.gz
cd SDL_ttf-$VERSION
SDL_CONFIG=/usr/local/cross-tools/i386-mingw32msvc/bin/sdl-config
FREETYPE_CONFIG=/usr/local/cross-tools/i386-mingw32msvc/bin/freetype-config
./configure --host=i586-mingw32msvc --build=i686-pc-linux-gnu

make
make install # /usr/local/cross-tools/i386-mingw32/ by default

Static build

I want to cross-compile statically, to provide a single .exe that
includes SDL and SDL_* :slight_smile:

  • You need to add -lwinmm

i586-mingw32msvc-gcc mousetest.c
/usr/local/cross-tools/i386-mingw32msvc/bin/sdl-config --cflags \ --static-libs -lwinmm

  • If you have some troubles with SDL_gfx which tries to use
    __imp__SDL_setFramerate, you need a build system patch (see below) -
    maybe it will make it to 2.0.17 :wink:

  • You need to specify -lfreetype, a dependency of SDL_ttf

You get a 1.1MB standalone stripped executable.

Now we need to integrate the additional library in our build system
and provide ./configure option to build statically (LIBS+=“-lfreetype
-lwinmm”, LDFLAGS+=“-static”)

diff -ru SDL_gfx-2.0.16/SDL_framerate.h SDL_gfx-2.0.16.beuc/SDL_framerate.h
— SDL_gfx-2.0.16/SDL_framerate.h 2006-12-22 13:36:10.000000000 +0100
+++ SDL_gfx-2.0.16.beuc/SDL_framerate.h 2007-09-27 01:46:10.000000000 +0200
@@ -39,21 +39,24 @@
/* --------- Function prototypes */

#ifdef WIN32
-#ifdef BUILD_DLL
-#define DLLINTERFACE __declspec(dllexport)
-#else
-#define DLLINTERFACE __declspec(dllimport)
+# ifdef DLL_EXPORT
+# define SDL_FRAMERATE_SCOPE __declspec(dllexport)
+# else
+# ifdef LIBSDL_GFX_DLL_IMPORT
+# define SDL_FRAMERATE_SCOPE __declspec(dllimport)
+# endif
+# endif
#endif
-#else
-#define DLLINTERFACE
+#ifndef SDL_FRAMERATE_SCOPE
+# define SDL_FRAMERATE_SCOPE extern
#endif

/* Functions return 0 or value for sucess and -1 for error */

  • DLLINTERFACE void SDL_initFramerate(FPSmanager * manager);
  • DLLINTERFACE int SDL_setFramerate(FPSmanager * manager, int rate);
  • DLLINTERFACE int SDL_getFramerate(FPSmanager * manager);
  • DLLINTERFACE void SDL_framerateDelay(FPSmanager * manager);
  • SDL_FRAMERATE_SCOPE void SDL_initFramerate(FPSmanager * manager);
  • SDL_FRAMERATE_SCOPE int SDL_setFramerate(FPSmanager * manager, int rate);
  • SDL_FRAMERATE_SCOPE int SDL_getFramerate(FPSmanager * manager);
  • SDL_FRAMERATE_SCOPE void SDL_framerateDelay(FPSmanager * manager);

/* — */

diff -ru SDL_gfx-2.0.16/SDL_rotozoom.h SDL_gfx-2.0.16.beuc/SDL_rotozoom.h
— SDL_gfx-2.0.16/SDL_rotozoom.h 2006-12-22 13:36:10.000000000 +0100
+++ SDL_gfx-2.0.16.beuc/SDL_rotozoom.h 2007-09-27 01:45:58.000000000 +0200
@@ -45,13 +45,16 @@
/* ---- Prototypes */

#ifdef WIN32
-#ifdef BUILD_DLL
-#define DLLINTERFACE __declspec(dllexport)
-#else
-#define DLLINTERFACE __declspec(dllimport)
+# ifdef DLL_EXPORT
+# define SDL_ROTOZOOM_SCOPE __declspec(dllexport)
+# else
+# ifdef LIBSDL_GFX_DLL_IMPORT
+# define SDL_ROTOZOOM_SCOPE __declspec(dllimport)
+# endif
+# endif
#endif
-#else
-#define DLLINTERFACE
+#ifndef SDL_ROTOZOOM_SCOPE
+# define SDL_ROTOZOOM_SCOPE extern
#endif

/*
@@ -65,17 +68,17 @@

*/

  • DLLINTERFACE SDL_Surface *rotozoomSurface(SDL_Surface * src, double angle, double zoom, int smooth);
  • SDL_ROTOZOOM_SCOPE SDL_Surface *rotozoomSurface(SDL_Surface * src, double angle, double zoom, int smooth);
  • DLLINTERFACE SDL_Surface *rotozoomSurfaceXY
  • SDL_ROTOZOOM_SCOPE SDL_Surface *rotozoomSurfaceXY
    (SDL_Surface * src, double angle, double zoomx, double zoomy, int smooth);

/* Returns the size of the target surface for a rotozoomSurface() call */

  • DLLINTERFACE void rotozoomSurfaceSize(int width, int height, double angle, double zoom, int *dstwidth,
  • SDL_ROTOZOOM_SCOPE void rotozoomSurfaceSize(int width, int height, double angle, double zoom, int *dstwidth,
    int *dstheight);
  • DLLINTERFACE void rotozoomSurfaceSizeXY
  • SDL_ROTOZOOM_SCOPE void rotozoomSurfaceSizeXY
    (int width, int height, double angle, double zoomx, double zoomy,
    int *dstwidth, int *dstheight);

@@ -90,11 +93,11 @@

*/

  • DLLINTERFACE SDL_Surface *zoomSurface(SDL_Surface * src, double zoomx, double zoomy, int smooth);
  • SDL_ROTOZOOM_SCOPE SDL_Surface *zoomSurface(SDL_Surface * src, double zoomx, double zoomy, int smooth);

/* Returns the size of the target surface for a zoomSurface() call */

  • DLLINTERFACE void zoomSurfaceSize(int width, int height, double zoomx, double zoomy, int *dstwidth, int *dstheight);
  • SDL_ROTOZOOM_SCOPE void zoomSurfaceSize(int width, int height, double zoomx, double zoomy, int *dstwidth, int *dstheight);

/*
@@ -107,7 +110,7 @@
or 32bit RGBA/ABGR it will be converted into a 32bit RGBA format on the fly.
*/

  • DLLINTERFACE SDL_Surface *shrinkSurface(SDL_Surface * src, int factorx, int factory);
  • SDL_ROTOZOOM_SCOPE SDL_Surface *shrinkSurface(SDL_Surface * src, int factorx, int factory);

/* Ends C function definitions when using C++ */
#ifdef __cplusplus

I look for a kind of “partially static” compilation, as if SDL was
part of my own code, but I don’t have enough knowledge of GCC to know
how that can be done.

Do you know if that’s possible?

Yes, it’s possible, you just have to be a bit more specific when
telling the linker what you want to do, since -static affects the
entire linking process and not just part of it like you want. The
linker has some options called -Bstatic and -Bdynamic that can be used
to do exactly what you want, and you can pass args to the linker with
gcc’s -Wl arg, with commas in stead of spaces. So, just surround the
libraries you want to link statically with -Wl,-Bstatic and
-Wl,-Bdynamic:

gcc stuff -Wl,-Bstatic -lSDL etc -Wl,-Bdynamic

Hi,

While those linker options are not necessary for building .exe with
embedded SDL, there are crucial for building similar Linux binaries.

I find it difficult to insert them in an autoconf+automake build
system (currently I have to override LIBS completely). Does anybody
have experience with this?

Thanks!–
Sylvain

Unless tou really want to pack everything (code and assets) in a single exe
file of course.

exactly this is the reason why i too go the hard way to have all but the
real core libs linked statically.

believe it or not: there are still users who cannot extract a zip file.
and who are pissed by installers who clutter your system (i for example
especially hate it if some small game comes with an installer instead of
a zip and puts all kind of registry and start menu stuff i really do not
want to have on my system.).

so if you want your game to be a hassle free one time download, put all
stuff in the .exe. those 500k … 2mbyte more exe size is really no big
deal these days where we have broadband and dvd.

so i strongly vote for static linking!
even some game industry veterans propose this concept to have only the
very core libraries supported by the operating system and everything
else be linked statically or even dynamically but distributed with the
game dvd. anyone here can remember the link? i think it was an article
on gamasutra, but not sure…

so i strongly vote for static linking!

i totally agree, why cant a computer program just come as one single file you
can load from anywhere on any box with it’s os.

all this installer business, drag and drop then load!

i am much heated about the way everything has to be 10 times more complicated
than it should be and no-one can give a real explanation why other than it is.

Because it would put many many thousands of programmers out of work.

It is job-protectionism, pure and simple.

Ed> ----- Original Message -----

From: neil at cloudsprinter.com (neil@cloudsprinter.com)
To: sdl at lists.libsdl.org
Sent: Friday, 28 September, 2007 2:09:50 PM
Subject: Re: [SDL] Embed SDL.dll in the .exe

so i strongly vote for static linking!

i totally agree, why cant a computer program just come as one single file you
can load from anywhere on any box with it’s os.

all this installer business, drag and drop then load!

i am much heated about the way everything has to be 10 times more complicated
than it should be and no-one can give a real explanation why other than it is.


SDL mailing list
SDL at lists.libsdl.org
http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org

  ___________________________________________________________ 

Want ideas for reducing your carbon footprint? Visit Yahoo! For Good Yahoo is part of the Yahoo family of brands

Quoting Edward Byard <e_byard at yahoo.co.uk>:

Because it would put many many thousands of programmers out of work.

It is job-protectionism, pure and simple.

Ed

and probably why i’m not in an IT job :wink: i think if i was i would have
to kill
everyone and blow up the building judging by the amount of keyboards and
montiors i have punched ( sweet new tft have to behave :wink: )

sorry echelon or whatever nsa computer you are called monitoring
everything, i’m
not going to blow up the building really, well… depends on your OS setup.

but just to make this slightly on topic i shall now be looking into making
sdl.dll part of my exe’s along with all my gfx and sound… sweet.

Hello !

Because it would put many many thousands of programmers out of work.

It is job-protectionism, pure and simple.

I have never seen it that way :slight_smile:

And especially for the HelpDesk People :slight_smile:

CU

so i strongly vote for static linking!

FYI: Drag 'n drop installation works on Mac OS X without complete
static linking because applications are really “bundles” or
directories made to look like files. So you can dynamic link to
libraries you put inside the bundle which provides the benefits of
brain-dead installation and the benefits of dynamic linking
(including satisfying the LGPL license).

I haven’t done a lot of Windows programming, so I don’t know how a
lot of the stuff like this works on that platform, but perhaps a
similar method could be adopted to handle dynamic libraries? It sure
has been nice programming, and the users love it. Or perhaps this is
something Microsoft would have to implement?

Anyway… cheers!
charlesOn Sep 28, 2007, at 3:50 AM, Andre Krause wrote:

Because it would put many many thousands of programmers out of work.

It is job-protectionism, pure and simple.

Ed

so i strongly vote for static linking!

i totally agree, why cant a computer program just come as one single
file you can load from anywhere on any box with it’s os.

all this installer business, drag and drop then load!

i am much heated about the way everything has to be 10 times more
complicated than it should be and no-one can give a real explanation
why other than it is.

This is probably quickly heading off topic, but I don’t think it’s job
protectionism as much as people not being able (or not wanting) to
agree. It’s the same reason we don’t have world peace, all the same
religion and/or political beliefs, or a world govt. Because it would
require a lot of co-ordination and everyone following the same rules,
and that’s NEVER going to happen.

I maintain software on multiple platforms, and I run into this almost
every day. Certain people are always going to use Windows, certain
ones OSX, and others Linux. That’s not going to change, so it’s
pointless to argue against it.

SteveOn September 28, 2007 10:58:31 am Edward Byard wrote:

----- Original Message ----
From: “neil at cloudsprinter.com
To: sdl at lists.libsdl.org
Sent: Friday, 28 September, 2007 2:09:50 PM
Subject: Re: [SDL] Embed SDL.dll in the .exe

I believe you still need an installer if you distribute the
application via Internet.

If I understand correctly:

  • the app (something.app) is displayed as a single executable to the
    user, from the file browser (“Finder”)

  • but it’s actually a directory that contains both the executable and
    the resources. Under Windows it is possible to embed resources
    directly in the .exe – or for all platforms, you can simply cat it
    at the end of the .exe with an easy-to-recognize delimiter, as .zip
    auto-extrators do. The OSX way makes things easier for the
    programmer (just fopen()).

  • when you drag 'n drop the .app, you actually move a directory, so
    it’s a single operation with a file browser (but you already can do
    that with most games by moving the installation directory)

  • if you got it from a HTTP or FTP website, you’d need to download
    each and every files from the something.app/ directory. So instead
    you have to bundle it in a single archive. Apparently OSX apps often
    come as a .dmg (can it do more than a .zip btw?)On Fri, Sep 28, 2007 at 08:41:03AM -0600, Charles McGarvey wrote:

FYI: Drag 'n drop installation works on Mac OS X without complete
static linking because applications are really “bundles” or
directories made to look like files. So you can dynamic link to
libraries you put inside the bundle which provides the benefits of
brain-dead installation and the benefits of dynamic linking
(including satisfying the LGPL license).


Sylvain

Hey,

If anyone wants to tackle this in Windows, here is what I suggest (thoroughly crazy):

Write a program that extracts all of the necessary files (.exe, .dll, .png, .etc) from itself, then runs the main executable that was extracted. There you go! So you’ll probably have to write a program that creates such a program.

Jonny D> Date: Fri, 28 Sep 2007 17:22:53 +0200> From: beuc at beuc.net> To: sdl at lists.libsdl.org> Subject: Re: [SDL] Embed SDL.dll in the .exe> > On Fri, Sep 28, 2007 at 08:41:03AM -0600, Charles McGarvey wrote:> > FYI: Drag 'n drop installation works on Mac OS X without complete > > static linking because applications are really “bundles” or > > directories made to look like files. So you can dynamic link to > > libraries you put inside the bundle which provides the benefits of > > brain-dead installation and the benefits of dynamic linking > > (including satisfying the LGPL license).> > > I believe you still need an installer if you distribute the> application via Internet.> > > If I understand correctly:> > - the app (something.app) is displayed as a single executable to the> user, from the file browser (“Finder”)> > - but it’s actually a directory that contains both the executable and> the resources. Under Windows it is possible to embed resources> directly in the .exe – or for all platforms, you can simply cat it> at the end of the .exe with an easy-to-recognize delimiter, as .zip> auto-extrators do. The OSX way makes things easier for the> programmer (just fopen()).> > - when you drag 'n drop the .app, you actually move a directory, so> it’s a single operation with a file browser (but you already can do> that with most games by moving the installation directory)> > - if you got it from a HTTP or FTP website, you’d need to download> each and every files from the something.app/ directory. So instead> you have to bundle it in a single archive. Apparently OSX apps often> come as a .dmg (can it do more than a .zip btw?)> > – > Sylvain> _______________________________________________> SDL mailing list> SDL at lists.libsdl.org> http://lists.libsdl.org/listinfo.cgi/sdl-libsdl.org


Discover the new Windows Vista
http://search.msn.com/results.aspx?q=windows+vista&mkt=en-US&form=QBRE