Compiling under Linux: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(→‎Requirements: recommend gcc 3.4.4)
m (Setting bug notice hidetested=1 param on page where the bug might not need tested in param specified)
 
(46 intermediate revisions by 26 users not shown)
Line 1: Line 1:
[[Category:Programming]]
{{LanguageBar}}
Adding a Linux version of your multiplayer mod server allows more sites to be able to host servers.  More hosting increases the chance of your mod being a success. Much of the grunt work of getting a Linux server binary created has been automated. This document describes the environment and configuration needed to get you going with a Linux port.
 
{{Outdated sdk|{{src07|4.1}}|newer-sdk={{src13|4.1}}|newer-sdk-equivalent=[[Source_SDK_Base_2013#Setting_up_&_compiling_code|Setting up Source 2013 (Platform Specific)]]}}
{{cleanup}}
{{toc-right}}
 
'''Creating a Linux build''' of your multiplayer [[dedicated server]] or [[server plugin]] is not required, but does make it much more likely to be accepted by commercial server operators.
 
Building on Linux requires an existing Visual Studio project, which is converted to a makefile by Valve's <code>vcpm</code> tool ("Visual C++ Project to Make").
 
== Getting Linux ==
 
If you are unsure which version of Linux to use, go for [http://www.ubuntu.com/ Ubuntu], which tries to be user-friendly. It has a "software centre" that makes installing packages simple, and can be run from a CD if you want to experiment (but you'll want to install it permanently before you start digging in).
 
== Requirements ==
 
* [http://gcc.gnu.org GCC and G++ 4.2.x] or lower
* [[Vprojtomake 2010]] '''or''' [http://xml.apache.org/xerces-c/ Xerces XML parser] 2.8.x
* <code>libstdc++</code> 6
* <code>libc</code> 2.4 or higher


==How to obtain==
If you are running 64-bit Linux:
The SDK is distributed via the Windows version of Steam, get the SDK by looking under the view menu, then select tools, then install it from there. After you get that installed, run the SDK in the games list, then choose "Create a mod", then choose "source code only", and this will give you the SDK. Give it a new directory to go into and call it hl2sdk.


==Requirements==
* <code>ia32-libs</code> (or you will be told that 32-bit binaries don't exist)
The following tools are required to compile the SDK under Linux.  Any other version will probably cause complete failure at compile time or run time.
* GCC multilib for your GCC release
* Make sure you have the 32-bit build of Xerces, if you haven't upgraded to Vprojtomake 2010.


* [http://gcc.gnu.org GCC] 3.4.1 or above on the 3.x branch. (3.4.4 recommended to fix an [[SDK_Known_Issues_List#offsetof_errors|offsetof]] bug.) '''GCC 4.x will not work.'''.
== Setting up ==
* [http://xml.apache.org/xerces-c/ Xerces XML parser] 2.6.0 or above.
* GLIBC 2.3.2 or above.


Slackware 10.0 ( http://www.slackware.org/ ) is a good starting base to create your compiling environment.
{{bug|hidetested=1|Don't use <code>~</code> for your home directory. Parts of the make process do not understand it.}}


==Setting up the Makefile==
Open <code>sdk_root/linux_sdk/Makefile</code>. Most of the config options here are straightforward, except for:
As part of the compile process the Microsoft Visual C Project file used to compile your mod under Windows is converted into a snippet of a Makefile. This conversion process needs to be seeded with a few configuration parameters, all of which are contained in linux_sdk/Makefile. At a minimum you should configure these parameters:


* '''MOD_PROJ''', this is the filename of the Windows project file used to compile your mod.  
; <code>MOD_CONFIG</code>
* '''MOD_CONFIG''', the configuration set to use when compiling the Linux version of your mod. Typically this is the Release Win32 option. The easiest method to determine this parameter is to leave it at default, run the make process once and then look at the Makefile snippets that are produced and select the appropriate one.  
: These values should come straight out of your VS project. Remove all whitespace. To build the 'My Server' project in release mode, this should read <code>MyServer_ReleaseWin32</code>.
* '''GAME_DIR''', the path to an installation of the game.  The Makefile says "the directory the base binaries (tier0_i486.so, etc) are located" but actually it wants one level up from the directory with tier0_i486.so.
; <code>GAME_DIR</code>
* '''CC, CPLUS, CLINK, CPP_LIB''', these parameters should be pointed to your particular install of GCC 3.4.1.  
: To get this, you need to download a [[dedicated server]] from Valve. You need the <code>orangebox</code> game.
* '''XERCES_INC_DIR, XERCES_LIB_DIR''', the installation directory of the Xerces library.
; <code>CC</code>, <code>CPLUS</code>, <code>CLINK</code>
{{note|Don't use "~" for your home directory since parts of the make process will not understand it.}}
: Change these to read "gcc -m32" or "g++ -m32", with quotes. If your system's default build of GCC is too recent, specify an older version with "gcc-4.2 -m32" or similar; check <code>/usr/bin</code> to see what you've got installed.
; <code>CPP_LIB</code>
: These files may not be where Valve think they are. To find them, browse to <code>/usr/lib</code> and search. 64-bit users will encounter two version of each file; choose the ones in the '32' folder.


Once these configuration parameters are set compiling your mod should be a simple as running:
* [[Server plugin]]s need extra configuration. See [[Server plugins#Compiling]].
* Experienced GCC programmers may be interested in [[SDK Known Issues List#Getting the SDK to work under -Wall -Werror|Getting the SDK to work under -Wall -Werror]].


<code>make</code>
== Making ==


<code>CreateInterface</code> is the only dynamic symbol you need to export.  This looks like an oversight on Valve's part - removing the rest will save around 5 megs of pointless and possibly dangerous exports. Here's a version_script to fix it:
Once everything is configured correctly, you can build your mod by navigating to the <code>linux_sdk</code> folder and performing a <code>make</code>.


<pre>
{{note|If you've done a lot of development on Windows you are likely to encounter "No such file or directory" or "no rule to make target" errors (if you get a mess of errors, scroll up to the very first one). These should all be down to two easily-rectified issues:
$ cat mod/src/linux_sdk/version_script
VERS_1.1 {
global:
CreateInterface;
local:
*;
};
</pre>


Several people have reported a bug that "export LD_LIBRARY_PATH=~/source/bin" was required before vcpm would run.  Here's a patch to fix that bug.  (If you haven't applied the [[SDK Known Issues List#First_big_pass_at_-Wall_and_consistent_code]] fixes, you will have to take out the -D changes below.)
* Paths are case-sensitive in Linux. <code>/Multiplayer</code> is not the same as <code>/multiplayer</code>
* Paths must delimited with <code>/</code> characters in Linux, not Windows' <code>\</code>.


<pre>
Making these changes to your source files will not affect compiling on Windows.}}
--- Makefile.vcpm      Sat Oct  1 22:26:26 2005
+++ Makefile.vcpm.bak  Sat Oct  1 22:25:43 2005
@@ -14,12 +14,12 @@
TIER1_OBJ_DIR=$(BUILD_OBJ_DIR)/vcpm/public


#we use custome CFLAGS because the base ones interfere with XERCES
== Running ==
-CFLAGS= -w -fpermissive -D_LINUX -DNDEBUG -D_alloca=alloca -D_snprintf=snprintf -D_vsnprintf=vsnprintf $(ARCH_CFLAGS)
+CFLAGS= -w -fpermissive -D_LINUX -DNDEBUG $(ARCH_CFLAGS)
#DEBUG = -g -ggdb
#CFLAGS+= $(DEBUG)


INCLUDEDIRS=-I$(PUBLIC_SRC_DIR) -I$(XERCES_INC_DIR) -I$(UTIL_COMMON_SRC_DIR) -I$(TIER1_PUBLIC_SRC_DIR)
To run the mod perform <code>make install</code> to copy the server binary to your mod's folder, then cd into your dedicated server folder and do <code>./srcds_run</code> with the appropriate <code>-game</code> parameter.
-LDFLAGS_VC=-lm -ldl -L$(XERCES_LIB_DIR) -lxerces-c $(GAME_DIR)/bin/tier0_i486.so $(GAME_DIR)/bin/vstdlib_i486.so
+LDFLAGS_VC=-lm -ldl -Wl,-rpath -Wl,$(GAME_DIR)/bin -L$(XERCES_LIB_DIR) -lxerces-c $(GAME_DIR)/bin/tier0_i486.so $(GAME_DIR)/bin/vstdlib_i486.so


DO_CC=$(CPLUS) $(INCLUDEDIRS) -w $(CFLAGS) -DARCH=$(ARCH) -o $@ -c $<
<!-- 2.4 was released in 2006, and can be assumed present on modern-day Linux systems
== libc ==


@@ -51,7 +51,7 @@
The version of the C runtime library on a system running your server code can affect stability. To look at the requirements of your binary, examine the last section of the output of this command:
        $(DO_CC)


$(TIER1_OBJ_DIR)/%.o: $(TIER1_SRC_DIR)/%.cpp
<source lang=bash>
-       $(DO_CC) -Dstricmp=strcasecmp -Dstrcmpi=strcasecmp
readelf -V your_server.so
+      $(DO_CC)
</source>


clean:
The highest version of GLIBC reported is the one that your binary requires. You will have to consider where to draw the line between backwards-compatibility and functionality; as the SDK stands the highest version you will see is probably 2.4, [http://ftp.gnu.org/gnu/glibc/?C=M;O=D which was released in 2006] and is highly likely to be present on target systems.
        -rm -rf $(VCPM_OBJ_DIR)
</pre>


This will compile the vcpm program, run this against your VCProject file and then use the resulting Makefile snippet and the configuration parameters you set above to compile your mod.
If you want to see precisely which functions require a given version of libc, run the following:


Since you're using GCC, you may also want to look into [[SDK Known Issues List#Getting the SDK to work under -Wall -Werror]].
<source lang=bash>
nm your_server.so | grep GLIBC_<VERSION>
</source>
-->


==Running your Mod==
[[Category:Programming]]
To run the mod copy the file produced by the make process to <code><mod dir>/bin/server_i486.so</code> and then run <code>srcds_run</code> with the appropriate <code>-game</code> parameter.
[[Category:Linux]]

Latest revision as of 07:07, 20 May 2025

English (en)Русский (ru)中文 (zh)Translate (Translate)
Ambox warning yellow.png
This page was written for Source 2007 Source 2007 or earlier. It may not be applicable to newer versions of the Source SDK.
If you are using Source 2013 Source 2013, you may be looking for Setting up Source 2013 (Platform Specific).
Broom icon.png
This article or section needs to be cleaned up to conform to a higher standard of quality.
For help, see the VDC Editing Help and Wikipedia cleanup process. Also, remember to check for any notes left by the tagger at this article's talk page.

Creating a Linux build of your multiplayer dedicated server or server plugin is not required, but does make it much more likely to be accepted by commercial server operators.

Building on Linux requires an existing Visual Studio project, which is converted to a makefile by Valve's vcpm tool ("Visual C++ Project to Make").

Getting Linux

If you are unsure which version of Linux to use, go for Ubuntu, which tries to be user-friendly. It has a "software centre" that makes installing packages simple, and can be run from a CD if you want to experiment (but you'll want to install it permanently before you start digging in).

Requirements

If you are running 64-bit Linux:

  • ia32-libs (or you will be told that 32-bit binaries don't exist)
  • GCC multilib for your GCC release
  • Make sure you have the 32-bit build of Xerces, if you haven't upgraded to Vprojtomake 2010.

Setting up

Icon-Bug.pngBug:Don't use ~ for your home directory. Parts of the make process do not understand it.

Open sdk_root/linux_sdk/Makefile. Most of the config options here are straightforward, except for:

MOD_CONFIG
These values should come straight out of your VS project. Remove all whitespace. To build the 'My Server' project in release mode, this should read MyServer_ReleaseWin32.
GAME_DIR
To get this, you need to download a dedicated server from Valve. You need the orangebox game.
CC, CPLUS, CLINK
Change these to read "gcc -m32" or "g++ -m32", with quotes. If your system's default build of GCC is too recent, specify an older version with "gcc-4.2 -m32" or similar; check /usr/bin to see what you've got installed.
CPP_LIB
These files may not be where Valve think they are. To find them, browse to /usr/lib and search. 64-bit users will encounter two version of each file; choose the ones in the '32' folder.

Making

Once everything is configured correctly, you can build your mod by navigating to the linux_sdk folder and performing a make.

Note.pngNote:If you've done a lot of development on Windows you are likely to encounter "No such file or directory" or "no rule to make target" errors (if you get a mess of errors, scroll up to the very first one). These should all be down to two easily-rectified issues:
  • Paths are case-sensitive in Linux. /Multiplayer is not the same as /multiplayer
  • Paths must delimited with / characters in Linux, not Windows' \.
Making these changes to your source files will not affect compiling on Windows.

Running

To run the mod perform make install to copy the server binary to your mod's folder, then cd into your dedicated server folder and do ./srcds_run with the appropriate -game parameter.