SDL  2.0
README-linux.md
Go to the documentation of this file.
1 Linux
2 ================================================================================
3 
4 By default SDL will only link against glibc, the rest of the features will be
5 enabled dynamically at runtime depending on the available features on the target
6 system. So, for example if you built SDL with Xinerama support and the target
7 system does not have the Xinerama libraries installed, it will be disabled
8 at runtime, and you won't get a missing library error, at least with the
9 default configuration parameters.
10 
11 
12 Build Dependencies
13 --------------------------------------------------------------------------------
14 
15 Ubuntu 20.04, all available features enabled:
16 
17  sudo apt-get install build-essential git make cmake autoconf automake \
18  libtool pkg-config libasound2-dev libpulse-dev libaudio-dev libjack-dev \
19  libx11-dev libxext-dev libxrandr-dev libxcursor-dev libxi-dev \
20  libxinerama-dev libxxf86vm-dev libxss-dev libgl1-mesa-dev libdbus-1-dev \
21  libudev-dev libgles2-mesa-dev libegl1-mesa-dev libibus-1.0-dev \
22  fcitx-libs-dev libsamplerate0-dev libsndio-dev libwayland-dev \
23  libxkbcommon-dev libdrm-dev libgbm-dev
24 
25 NOTES:
26 - This includes all the audio targets except arts and esd, because Ubuntu
27  (and/or Debian) pulled their packages, but in theory SDL still supports them.
28 - libsamplerate0-dev lets SDL optionally link to libresamplerate at runtime
29  for higher-quality audio resampling. SDL will work without it if the library
30  is missing, so it's safe to build in support even if the end user doesn't
31  have this library installed.
32 - DirectFB isn't included because the configure script (currently) fails to find
33  it at all. You can do "sudo apt-get install libdirectfb-dev" and fix the
34  configure script to include DirectFB support. Send patches. :)
35 
36 
37 Joystick does not work
38 --------------------------------------------------------------------------------
39 
40 If you compiled or are using a version of SDL with udev support (and you should!)
41 there's a few issues that may cause SDL to fail to detect your joystick. To
42 debug this, start by installing the evtest utility. On Ubuntu/Debian:
43 
44  sudo apt-get install evtest
45 
46 Then run:
47 
48  sudo evtest
49 
50 You'll hopefully see your joystick listed along with a name like "/dev/input/eventXX"
51 Now run:
52 
53  cat /dev/input/event/XX
54 
55 If you get a permission error, you need to set a udev rule to change the mode of
56 your device (see below)
57 
58 Also, try:
59 
60  sudo udevadm info --query=all --name=input/eventXX
61 
62 If you see a line stating ID_INPUT_JOYSTICK=1, great, if you don't see it,
63 you need to set up an udev rule to force this variable.
64 
65 A combined rule for the Saitek Pro Flight Rudder Pedals to fix both issues looks
66 like:
67 
68  SUBSYSTEM=="input", ATTRS{idProduct}=="0763", ATTRS{idVendor}=="06a3", MODE="0666", ENV{ID_INPUT_JOYSTICK}="1"
69  SUBSYSTEM=="input", ATTRS{idProduct}=="0764", ATTRS{idVendor}=="06a3", MODE="0666", ENV{ID_INPUT_JOYSTICK}="1"
70 
71 You can set up similar rules for your device by changing the values listed in
72 idProduct and idVendor. To obtain these values, try:
73 
74  sudo udevadm info -a --name=input/eventXX | grep idVendor
75  sudo udevadm info -a --name=input/eventXX | grep idProduct
76 
77 If multiple values come up for each of these, the one you want is the first one of each.
78 
79 On other systems which ship with an older udev (such as CentOS), you may need
80 to set up a rule such as:
81 
82  SUBSYSTEM=="input", ENV{ID_CLASS}=="joystick", ENV{ID_INPUT_JOYSTICK}="1"
83