no_std
.libc
for the C type declarations.sdl2-sys
dynamic_link
)The crate supplies the necessary files to build on Windows MSVC without any
previous installation. However, at the moment, it expects that SDL2 developer
files have already been installed to the system if you're building for any other
platform. Homebrew has SDL2-2.0.9, but
most linux package managers have an older version of SDL2 and you'll have to
build from source. You can look in the travis file to see how you
might install SDL2-2.0.9 from source if you decide to go that route. Please note
that you must use -fPIC
when building SDL2 if you're planning to statically
link to SDL2 (the default mode for this crate).
If you want to run bindgen yourself you'll of course have to install bindgen. This crate supports both using bindgen as a library or using bindgen as a CLI application.
If you are not on a platform with a pre-generated file and you don't run bindgen yourself the build will complete but the crate will be empty. If all the functions appear to be missing you're probably on an unusual platform and you didn't run bindgen.
By default, fermium
generates programs that are statically linked to SDL2 with
the dynamic
API
enabled. This means that the generated binary won't depend on any external SDL2
files. Just send your binary to the user and they can play it out of the box.
However, the user will be able to use the SDL_DYNAMIC_API
environment variable
to run the program using an alternate SDL2 implementation that they have on
their system (v2.0.9 or later), if they desire.
If you'd link to only have a dynamic link, you can enable the dynamic_link
cargo feature. This makes the binary a little smaller (~1.4mb) but then if the
end user doesn't have SDL2 already installed they won't be able to run the
program at all.
This crate uses the Zlib license (the same license that SDL2 itself uses).