commit | 85797e7acf5f4322dc715f71e473f026ebbbc837 | [log] [tgz] |
---|---|---|
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | Tue Apr 19 17:19:34 2016 +0300 |
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | Tue Apr 19 17:19:34 2016 +0300 |
tree | 5c39f3b4e2fdd8cb1f8460e40e1f5f67387f3202 | |
parent | d1baa97be5b86d5f7ec45b2aa17ff2254eb6ade1 [diff] |
kmscube: quick hack for fullscreen
libkms++ is a C++11 library for kernel mode setting.
Also included are simple test tools for KMS and python wrapper for libkms++.
$ mkdir build $ cd build $ cmake .. $ make -j4
Directions for cross compiling depend on your environment. These are for mine (buildroot):
As above, but specify -DCMAKE_TOOLCHAIN_FILE=<path>/your-toolchain.cmake
for cmake, where your-toolchain.cmake is something similar to:
SET(CMAKE_SYSTEM_NAME Linux) SET(BROOT "<buildroot>/output/") # specify the cross compiler SET(CMAKE_C_COMPILER ${BROOT}/host/usr/bin/arm-buildroot-linux-gnueabihf-gcc) SET(CMAKE_CXX_COMPILER ${BROOT}/host/usr/bin/arm-buildroot-linux-gnueabihf-g++) # where is the target environment SET(CMAKE_FIND_ROOT_PATH ${BROOT}/target ${BROOT}/host) SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ONLY) SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
You can use the following cmake flags to control the build. Use -DFLAG=VALUE
to set them.
Option name | Values | Default | Notes |
---|---|---|---|
CMAKE_BUILD_TYPE | Release/Debug | Release | |
LIBKMS_ENABLE_PYTHON | ON/OFF | ON | |
LIBKMS_ENABLE_KMSCUBE | ON/OFF | OFF | |
LIBKMS_ENABLE_LTO | ON/OFF | OFF | Link Time Optimization |
You can use the following runtime environmental variables to control the behavior of libkms.
Variable | Description |
---|---|
LIBKMSXX_DISABLE_UNIVERSAL_PLANES | Set to disable the use of universal planes |
LIBKMSXX_DISABLE_ATOMIC | Set to disable the use of atomic modesetting |