Skip to content
This repository has been archived by the owner on Jan 9, 2020. It is now read-only.

Building from source

André Miranda edited this page Mar 23, 2015 · 2 revisions

Building from source

Currently the only option to build is via autotools generated configure and makefile.

I do recommend an updated linux(or mingw) install and gcc should be at least 4.8.
You must install all the Dependencies first.

Building on Linux

  1. ./autogen.sh
  2. ./configure
  3. make
Troubleshooting
  • libfmodex64.so: cannot open shared object file: No such file or directory
    Create the file /etc/ld.so.conf.d/local.conf and fill with /usr/local/lib64 or the path where FMOD libs are installed, then run sudo ldconfig.

Building on Windows

In order to build under Windows, you'll need the MSYS2 along with GCC and Autotools. Check the dependencies page.

Once you have MSYS2 and all the dependencies are properly installed, open a MSYS2-MinGW32 shell (C:<msys-root>\mingw32_shell.bat) and in the kissplayer source folder:

  1. ./autogen.sh
  2. ./configure
  3. make
Clone this wiki locally