Difference between revisions of "Building LÖVE"

m (Update from BitBucket to Git)
(15 intermediate revisions by 12 users not shown)
Line 1: Line 1:
 
{{notice|This page is still incomplete, you are likely to be eaten by a grue.}}
 
{{notice|This page is still incomplete, you are likely to be eaten by a grue.}}
  
This page has information on compiling the LÖVE source code. This is only necessary if you want to make modifications or additions to the framework itself. If you just want to code a game in Lua, go back to [[Getting Started]].
+
{{notice|This page has information on compiling the LÖVE source code. This is only necessary if you want to make modifications or additions to the framework itself. If you just want to code a game in Lua, go back to [[Getting Started]].}}
  
 
Still interested? Okay. Follow these three steps and you'll have your very own LÖVE binary:
 
Still interested? Okay. Follow these three steps and you'll have your very own LÖVE binary:
Line 9: Line 9:
  
 
== 1. Getting the source ==
 
== 1. Getting the source ==
The official repository of LÖVE is hosted on [https://bitbucket.org/rude/love bitbucket].
+
The official repository of LÖVE is hosted on [https://github.com/love2d/love GitHub].
  
You can download the source code either by downloading an archive from one of the tags on the [https://bitbucket.org/rude/love/downloads download page] or by installing mercurial and cloning the repository. Many linux distributions have a mercurial package in their repositories. Windows and OS X users can get the official binary from [http://mercurial.selenic.com/ selenic].
+
You can download the source code either by downloading an archive from one of the tags on the [https://github.com/love2d/love/releases download page] or by installing Git and cloning the repository. Almost every Linux distributions have Git in their repositories, some even have it installed by default. Windows and OS X users can get the official binary of Git from [https://git-scm.com/downloads here].
  
To create a clone with mercurial open a terminal or command prompt, go to the directory that you want to download the source code folder to and use the following commands:
+
To create a clone with Git, open a terminal or command prompt, go to the directory that you want to download the source code folder to and use the following commands:
 
<source lang="bash">
 
<source lang="bash">
hg clone https://bitbucket.org/rude/love
+
git clone https://github.com/love2d/love
 
</source>
 
</source>
 
This will create a love folder and download the latest source code into it.
 
This will create a love folder and download the latest source code into it.
Line 21: Line 21:
 
If you want to use the source code of a specific version, go into the love directory and issue one of the following commands:
 
If you want to use the source code of a specific version, go into the love directory and issue one of the following commands:
 
<source lang="bash">
 
<source lang="bash">
hg update 0.8.0 # any (released) version from 0.6.0 onwards.
+
git checkout 0.8.0 # any (released) version from 0.6.0 onwards.
hg update 0.7.2
+
git checkout 0.7.2
hg update minor # the minor branch, where development is done for the next 0.x.0 version when there's still a 0.y.z version to be released.
+
git checkout minor # the minor branch, where development is done for the next x.0 version when there's still a y.z version to be released.
hg update default # back to the standard, the next release.
+
git checkout master # to the last commit, regardless of branch.
hg update tip # to the last commit, regardless of branch.
 
 
</source>
 
</source>
  
  
 
== 2. Dependencies ==
 
== 2. Dependencies ==
LÖVE uses several open source libraries such as Lua, DevIL for images, and libvorbis for audio. Those libraries and their development files are required to successfully build LÖVE. It's possible to build every dependency yourself, but this is out of the scope of this page. The following explains how you can get prebuilt binaries instead.
+
LÖVE uses several open source libraries such as Lua, DevIL (up to [[0.9.2]]) for images, and libvorbis for audio. Those libraries and their development files are required to successfully build LÖVE. It's possible to build every dependency yourself, but this is out of the scope of this page. The following explains how you can get prebuilt binaries instead.
  
 
=== Windows ===
 
=== Windows ===
The headers and prebuilt MSVC 2010 binaries of the dependencies for LÖVE [[0.8.0]] can be found [http://www.love2d.org/sdk/ here].
+
The dependencies and instructions for LÖVE [[0.9.0]]+ can be found [https://github.com/love2d/megasource here].
  
Simply merge the zip's <code>love\platform\msvc2010\</code> folder into the <code>love\platform\msvc2010\</code> folder in LÖVE's source directory.
+
=== Mac OS X ===
 +
The required pre-built frameworks are available [http://love2d.org/sdk/ here]. Place the frameworks in <code>/Library/Frameworks/</code> in order for LÖVE's Xcode project to recognize them.
  
 
=== Linux ===
 
=== Linux ===
 
Download the development packages of the dependencies from the repository of your distribution.
 
Download the development packages of the dependencies from the repository of your distribution.
  
==== Ubuntu ====
+
==== Ubuntu and Debian Jessie onwards ====
 
<source lang="bash">
 
<source lang="bash">
sudo apt-get install build-essential automake libmpg123-dev libmodplug-dev libphysfs-dev libfreetype6-dev libdevil-dev liblua5.1-0-dev libopenal-dev libsdl1.2-dev libvorbis-dev
+
sudo apt-get install build-essential autotools-dev automake libtool pkg-config libfreetype6-dev libluajit-5.1-dev libphysfs-dev libsdl2-dev libopenal-dev libogg-dev libvorbis-dev libmodplug-dev libmpg123-dev libtheora-dev
 
</source>
 
</source>
 +
These are taken from the <code>platform/unix/debian/control.in</code> file in the repository.
  
Older versions of Ubuntu need the latest [http://packages.ubuntu.com/natty/libmodplug1 libmodplug1] and [http://packages.ubuntu.com/natty/libmodplug-dev libmodplug-dev] packages.
+
For the 0.9.0 branch, older versions of Ubuntu need the latest libsdl2-dev packages, which can be found via this ppa: https://launchpad.net/~bartbes/+archive/love-stable
  
If you get a message saying "configure: error: DevIL needs MNG", then you need to make a sacrifice to satan. Just kidding, you have to install libmng-dev.
+
If you get an error during the build complaining about libturbojpeg, you must first fix a bug in Ubuntu, then run `configure` again:
 
+
<source lang="bash">
Older versions (0.6.x and probably below) may have problems with flac-related dependencies. Those are a bitch.
+
ln -s /usr/lib/x86_64-linux-gnu/libturbojpeg.so.0 /usr/lib/x86_64-linux-gnu/libturbojpeg.so
 
+
</source>
For the 0.9.0 branch, older versions of Ubuntu need the latest libsdl2-dev packages, which can be found via this ppa: https://launchpad.net/~bartbes/+archive/love-unstable
 
  
 
==== Arch Linux ====
 
==== Arch Linux ====
Line 57: Line 57:
 
pacman -S devil flac freetype2 glibc libmodplug libvorbis lua51 mesa mpg123 openal physfs sdl # 0.6.x
 
pacman -S devil flac freetype2 glibc libmodplug libvorbis lua51 mesa mpg123 openal physfs sdl # 0.6.x
 
pacman -S devil freetype2 libmodplug libvorbis lua51 mpg123 openal physfs sdl # 0.7.x
 
pacman -S devil freetype2 libmodplug libvorbis lua51 mpg123 openal physfs sdl # 0.7.x
 +
pacman -S luajit physfs freetype2 devil mpg123 openal libvorbis libmodplug sdl2 shared-mime-info hicolor-icon-theme desktop-file-utils # for 0.9.x (taken from package in repository)
 
</source>
 
</source>
  
 
==== Fedora ====
 
==== Fedora ====
 
<source lang="bash">
 
<source lang="bash">
yum install freetype-devel glibc-devel libmpg123-devel libmodplug-devel physfs-devel mesa-libGL-devel openal-soft-devel DevIL-devel libvorbis-devel SDL-devel libmng-devel libtiff-devel lua-devel gcc-c++ libtool
+
yum install freetype-devel glibc-devel libmpg123-devel libmodplug-devel physfs-devel mesa-libGL-devel openal-soft-devel DevIL-devel libvorbis-devel SDL-devel libmng-devel libtiff-devel lua-devel gcc-c++ libtool luajit luajit-devel libtheora-devel SDL2-devel
 
</source>
 
</source>
  
 
Please note that libmpg123-devel is in the rpmfusion-free repository.
 
Please note that libmpg123-devel is in the rpmfusion-free repository.
  
==== Debian Squeeze ====
+
==== Debian Wheezy ====
 
Install the following packages (using aptitude or apt):
 
Install the following packages (using aptitude or apt):
  
Line 73: Line 74:
 
</source>
 
</source>
  
Afterwards, just build it like it is mentioned below. It's e-a-s-y! :)
+
Afterwards, just build it like it is mentioned below, but passing the <code>--with-lua=lua</code> option to <code>./configure</code>
 +
 
 +
If you want or need to use LuaJIT, you will need to either backport the Debian packaged from Jessie, or build it from the upstream source.
  
 
==== Mageia 2 ====
 
==== Mageia 2 ====
Line 91: Line 94:
 
==== Other distributions ====
 
==== Other distributions ====
 
Any other distribution will most likely have the dependencies in their repositories too, possibly with slightly different package names.
 
Any other distribution will most likely have the dependencies in their repositories too, possibly with slightly different package names.
 
==== Linking with LuaJIT on Linux ====
 
The configure script in the next step has a --with-luajit option which will set up a makefile that links with LuaJIT instead. The distributions should also have a separate package for LuaJIT that needs to be installed in this case.
 
  
 
== 3. Building ==
 
== 3. Building ==
 
=== Windows ===
 
=== Windows ===
The source code includes Visual Studio 2010 project files. LÖVE versions before [[0.8.0]] also have Visual Studio 2008 files. Extract the appropriate [http://www.love2d.org/sdk/ LÖVE SDK] into the love directory and compile the source using the visual studio project, and the LÖVE binary will be created.
+
Follow the instructions at the [https://github.com/love2d/megasource megasource] repository page to build LÖVE 0.9.0+.
  
 
Be sure to keep the required DLLs in the same folder as love.exe when running the executable.
 
Be sure to keep the required DLLs in the same folder as love.exe when running the executable.
 +
 +
=== Mac OS X ===
 +
Open the <code>love.xcodeproj</code> file with Xcode and press 'build', or use the <code>xcodebuild</code> command-line utility.
  
 
=== Linux ===
 
=== Linux ===
 
Use the automagic script to generate the configure file and then run configure and make as usual.
 
Use the automagic script to generate the configure file and then run configure and make as usual.
 +
 +
Be aware that if you got your source from the [https://love2d.org/ LÖVE homepage] your configure script has been pre-generated. This means that the ./platform/unix/automagic step should be skipped.
  
 
<source lang="bash">
 
<source lang="bash">
Line 111: Line 116:
  
 
Your LÖVE binary will end up in the src directory.
 
Your LÖVE binary will end up in the src directory.
 +
 +
== Other Languages ==
 +
{{i18n|Building LÖVE}}
 +
 +
[[Category:LÖVE]]

Revision as of 02:34, 13 January 2020

O.png This page is still incomplete, you are likely to be eaten by a grue.  


O.png This page has information on compiling the LÖVE source code. This is only necessary if you want to make modifications or additions to the framework itself. If you just want to code a game in Lua, go back to Getting Started.  


Still interested? Okay. Follow these three steps and you'll have your very own LÖVE binary:

  1. Getting the source
  2. Dependencies
  3. Building

1. Getting the source

The official repository of LÖVE is hosted on GitHub.

You can download the source code either by downloading an archive from one of the tags on the download page or by installing Git and cloning the repository. Almost every Linux distributions have Git in their repositories, some even have it installed by default. Windows and OS X users can get the official binary of Git from here.

To create a clone with Git, open a terminal or command prompt, go to the directory that you want to download the source code folder to and use the following commands:

git clone https://github.com/love2d/love

This will create a love folder and download the latest source code into it.

If you want to use the source code of a specific version, go into the love directory and issue one of the following commands:

git checkout 0.8.0		# any (released) version from 0.6.0 onwards.
git checkout 0.7.2
git checkout minor		# the minor branch, where development is done for the next x.0 version when there's still a y.z version to be released.
git checkout master		# to the last commit, regardless of branch.


2. Dependencies

LÖVE uses several open source libraries such as Lua, DevIL (up to 0.9.2) for images, and libvorbis for audio. Those libraries and their development files are required to successfully build LÖVE. It's possible to build every dependency yourself, but this is out of the scope of this page. The following explains how you can get prebuilt binaries instead.

Windows

The dependencies and instructions for LÖVE 0.9.0+ can be found here.

Mac OS X

The required pre-built frameworks are available here. Place the frameworks in /Library/Frameworks/ in order for LÖVE's Xcode project to recognize them.

Linux

Download the development packages of the dependencies from the repository of your distribution.

Ubuntu and Debian Jessie onwards

sudo apt-get install build-essential autotools-dev automake libtool pkg-config libfreetype6-dev libluajit-5.1-dev libphysfs-dev libsdl2-dev libopenal-dev libogg-dev libvorbis-dev libmodplug-dev libmpg123-dev libtheora-dev

These are taken from the platform/unix/debian/control.in file in the repository.

For the 0.9.0 branch, older versions of Ubuntu need the latest libsdl2-dev packages, which can be found via this ppa: https://launchpad.net/~bartbes/+archive/love-stable

If you get an error during the build complaining about libturbojpeg, you must first fix a bug in Ubuntu, then run `configure` again:

ln -s /usr/lib/x86_64-linux-gnu/libturbojpeg.so.0 /usr/lib/x86_64-linux-gnu/libturbojpeg.so

Arch Linux

pacman -S devil flac freetype2 glibc libmodplug libvorbis lua51 mesa mpg123 openal physfs sdl # 0.6.x
pacman -S devil freetype2 libmodplug libvorbis lua51 mpg123 openal physfs sdl # 0.7.x
pacman -S luajit physfs freetype2 devil mpg123 openal libvorbis libmodplug sdl2 shared-mime-info hicolor-icon-theme desktop-file-utils # for 0.9.x (taken from package in repository)

Fedora

yum install freetype-devel glibc-devel libmpg123-devel libmodplug-devel physfs-devel mesa-libGL-devel openal-soft-devel DevIL-devel libvorbis-devel SDL-devel libmng-devel libtiff-devel lua-devel gcc-c++ libtool  luajit luajit-devel libtheora-devel SDL2-devel

Please note that libmpg123-devel is in the rpmfusion-free repository.

Debian Wheezy

Install the following packages (using aptitude or apt):

aptitude install build-essential automake libtool libphysfs-dev libsdl-dev libopenal-dev liblua5.1-0-dev libdevil-dev libmodplug-dev libfreetype6-dev libmpg123-dev libvorbis-dev libmng-dev libxpm-dev libxcursor-dev libXxf86vm-dev

Afterwards, just build it like it is mentioned below, but passing the --with-lua=lua option to ./configure

If you want or need to use LuaJIT, you will need to either backport the Debian packaged from Jessie, or build it from the upstream source.

Mageia 2

urpmi make automake autoconf libopenal-devel libtool libtool-base libphysfs-devel libSDL-devel lua liblua-devel libdevil-devel libmodplug-devel libfreetype6-devel libmpg123-devel libvorbis-devel libmng-devel libxpm-devel libxcursor-devel libxxf86vm-devel

Gentoo

emerge -va lua physfs libsdl opengl devil freetype openal libvorbis mpg123 libmodplug

Make sure you have autotools installed (which should normally be the case):

emerge -va automake autoconf libtool

Other distributions

Any other distribution will most likely have the dependencies in their repositories too, possibly with slightly different package names.

3. Building

Windows

Follow the instructions at the megasource repository page to build LÖVE 0.9.0+.

Be sure to keep the required DLLs in the same folder as love.exe when running the executable.

Mac OS X

Open the love.xcodeproj file with Xcode and press 'build', or use the xcodebuild command-line utility.

Linux

Use the automagic script to generate the configure file and then run configure and make as usual.

Be aware that if you got your source from the LÖVE homepage your configure script has been pre-generated. This means that the ./platform/unix/automagic step should be skipped.

./platform/unix/automagic
./configure
make

Your LÖVE binary will end up in the src directory.

Other Languages