2014-02-10 02:10:30 +01:00
|
|
|
import os
|
2018-03-01 01:25:16 +01:00
|
|
|
import platform
|
2016-04-02 20:26:12 +02:00
|
|
|
import sys
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2019-03-05 21:31:46 +01:00
|
|
|
# This file is mostly based on platform/x11/detect.py.
|
|
|
|
# If editing this file, make sure to apply relevant changes here too.
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
def is_active():
|
2016-10-30 18:44:57 +01:00
|
|
|
return True
|
2016-04-02 20:26:12 +02:00
|
|
|
|
2016-10-30 19:05:14 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
def get_name():
|
2016-10-30 18:44:57 +01:00
|
|
|
return "Server"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
2018-10-25 15:59:26 +02:00
|
|
|
def get_program_suffix():
|
|
|
|
if (sys.platform == "darwin"):
|
|
|
|
return "osx"
|
|
|
|
return "x11"
|
|
|
|
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
def can_build():
|
|
|
|
|
2018-10-30 13:38:55 +01:00
|
|
|
if (os.name != "posix"):
|
2016-10-30 18:44:57 +01:00
|
|
|
return False
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-06-30 19:21:38 +02:00
|
|
|
return True
|
2016-04-02 20:26:12 +02:00
|
|
|
|
2016-10-30 19:05:14 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
def get_opts():
|
2019-03-05 21:31:46 +01:00
|
|
|
from SCons.Variables import BoolVariable, EnumVariable
|
2016-10-30 18:44:57 +01:00
|
|
|
return [
|
2017-09-25 06:37:17 +02:00
|
|
|
BoolVariable('use_llvm', 'Use the LLVM compiler', False),
|
2018-02-22 19:06:11 +01:00
|
|
|
BoolVariable('use_static_cpp', 'Link libgcc and libstdc++ statically for better portability', False),
|
2019-03-05 21:31:46 +01:00
|
|
|
BoolVariable('use_ubsan', 'Use LLVM/GCC compiler undefined behavior sanitizer (UBSAN)', False),
|
|
|
|
BoolVariable('use_asan', 'Use LLVM/GCC compiler address sanitizer (ASAN))', False),
|
|
|
|
BoolVariable('use_lsan', 'Use LLVM/GCC compiler leak sanitizer (LSAN))', False),
|
|
|
|
EnumVariable('debug_symbols', 'Add debugging symbols to release builds', 'yes', ('yes', 'no', 'full')),
|
|
|
|
BoolVariable('separate_debug_symbols', 'Create a separate file containing debugging symbols', False),
|
|
|
|
BoolVariable('execinfo', 'Use libexecinfo on systems where glibc is not available', False),
|
2016-10-30 18:44:57 +01:00
|
|
|
]
|
2016-04-02 20:26:12 +02:00
|
|
|
|
2016-10-30 19:05:14 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
def get_flags():
|
|
|
|
|
2018-09-25 12:19:34 +02:00
|
|
|
return []
|
2016-04-02 20:26:12 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
|
2017-06-30 19:21:38 +02:00
|
|
|
## Build type
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
if (env["target"] == "release"):
|
2019-03-05 21:31:46 +01:00
|
|
|
if (env["optimize"] == "speed"): #optimize for speed (default)
|
|
|
|
env.Prepend(CCFLAGS=['-O3'])
|
|
|
|
else: #optimize for size
|
|
|
|
env.Prepend(CCFLAGS=['-Os'])
|
|
|
|
|
|
|
|
if (env["debug_symbols"] == "yes"):
|
|
|
|
env.Prepend(CCFLAGS=['-g1'])
|
|
|
|
if (env["debug_symbols"] == "full"):
|
|
|
|
env.Prepend(CCFLAGS=['-g2'])
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
elif (env["target"] == "release_debug"):
|
2019-03-05 21:31:46 +01:00
|
|
|
if (env["optimize"] == "speed"): #optimize for speed (default)
|
2019-04-24 16:49:12 +02:00
|
|
|
env.Prepend(CCFLAGS=['-O2'])
|
2019-03-05 21:31:46 +01:00
|
|
|
else: #optimize for size
|
2019-04-24 16:49:12 +02:00
|
|
|
env.Prepend(CCFLAGS=['-Os'])
|
|
|
|
env.Prepend(CPPFLAGS=['-DDEBUG_ENABLED'])
|
2019-03-05 21:31:46 +01:00
|
|
|
|
|
|
|
if (env["debug_symbols"] == "yes"):
|
|
|
|
env.Prepend(CCFLAGS=['-g1'])
|
|
|
|
if (env["debug_symbols"] == "full"):
|
|
|
|
env.Prepend(CCFLAGS=['-g2'])
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
elif (env["target"] == "debug"):
|
2019-04-24 16:49:12 +02:00
|
|
|
env.Prepend(CCFLAGS=['-g3'])
|
|
|
|
env.Prepend(CPPFLAGS=['-DDEBUG_ENABLED', '-DDEBUG_MEMORY_ENABLED'])
|
2019-03-05 21:31:46 +01:00
|
|
|
env.Append(LINKFLAGS=['-rdynamic'])
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-06-30 19:21:38 +02:00
|
|
|
## Architecture
|
|
|
|
|
|
|
|
is64 = sys.maxsize > 2**32
|
|
|
|
if (env["bits"] == "default"):
|
|
|
|
env["bits"] = "64" if is64 else "32"
|
|
|
|
|
|
|
|
## Compiler configuration
|
|
|
|
|
2019-03-05 21:31:46 +01:00
|
|
|
if 'CXX' in env and 'clang' in os.path.basename(env['CXX']):
|
|
|
|
# Convenience check to enforce the use_llvm overrides when CXX is clang(++)
|
|
|
|
env['use_llvm'] = True
|
|
|
|
|
2017-09-25 06:37:17 +02:00
|
|
|
if env['use_llvm']:
|
2018-09-25 11:15:25 +02:00
|
|
|
if ('clang++' not in os.path.basename(env['CXX'])):
|
2017-06-30 19:21:38 +02:00
|
|
|
env["CC"] = "clang"
|
|
|
|
env["CXX"] = "clang++"
|
2018-01-05 20:37:18 +01:00
|
|
|
env["LINK"] = "clang++"
|
2017-06-30 19:21:38 +02:00
|
|
|
env.Append(CPPFLAGS=['-DTYPED_METHOD_BIND'])
|
|
|
|
env.extra_suffix = ".llvm" + env.extra_suffix
|
|
|
|
|
2019-03-05 21:31:46 +01:00
|
|
|
|
|
|
|
if env['use_ubsan'] or env['use_asan'] or env['use_lsan']:
|
|
|
|
env.extra_suffix += "s"
|
|
|
|
|
|
|
|
if env['use_ubsan']:
|
|
|
|
env.Append(CCFLAGS=['-fsanitize=undefined'])
|
|
|
|
env.Append(LINKFLAGS=['-fsanitize=undefined'])
|
|
|
|
|
|
|
|
if env['use_asan']:
|
|
|
|
env.Append(CCFLAGS=['-fsanitize=address'])
|
|
|
|
env.Append(LINKFLAGS=['-fsanitize=address'])
|
|
|
|
|
|
|
|
if env['use_lsan']:
|
|
|
|
env.Append(CCFLAGS=['-fsanitize=leak'])
|
|
|
|
env.Append(LINKFLAGS=['-fsanitize=leak'])
|
|
|
|
|
|
|
|
if env['use_lto']:
|
|
|
|
env.Append(CCFLAGS=['-flto'])
|
|
|
|
if not env['use_llvm'] and env.GetOption("num_jobs") > 1:
|
|
|
|
env.Append(LINKFLAGS=['-flto=' + str(env.GetOption("num_jobs"))])
|
|
|
|
else:
|
|
|
|
env.Append(LINKFLAGS=['-flto'])
|
|
|
|
if not env['use_llvm']:
|
|
|
|
env['RANLIB'] = 'gcc-ranlib'
|
|
|
|
env['AR'] = 'gcc-ar'
|
|
|
|
|
|
|
|
env.Append(CCFLAGS=['-pipe'])
|
|
|
|
env.Append(LINKFLAGS=['-pipe'])
|
|
|
|
|
2017-06-30 19:21:38 +02:00
|
|
|
## Dependencies
|
2016-11-03 22:53:18 +01:00
|
|
|
|
2017-06-30 19:21:38 +02:00
|
|
|
# FIXME: Check for existence of the libs before parsing their flags with pkg-config
|
2016-11-03 22:53:18 +01:00
|
|
|
|
2017-06-30 19:21:38 +02:00
|
|
|
# freetype depends on libpng and zlib, so bundling one of them while keeping others
|
|
|
|
# as shared libraries leads to weird issues
|
2017-09-25 06:22:58 +02:00
|
|
|
if env['builtin_freetype'] or env['builtin_libpng'] or env['builtin_zlib']:
|
|
|
|
env['builtin_freetype'] = True
|
|
|
|
env['builtin_libpng'] = True
|
|
|
|
env['builtin_zlib'] = True
|
2017-06-30 19:21:38 +02:00
|
|
|
|
2017-09-25 06:22:58 +02:00
|
|
|
if not env['builtin_freetype']:
|
2016-11-03 22:53:18 +01:00
|
|
|
env.ParseConfig('pkg-config freetype2 --cflags --libs')
|
|
|
|
|
2017-09-25 06:22:58 +02:00
|
|
|
if not env['builtin_libpng']:
|
2019-06-16 21:08:52 +02:00
|
|
|
env.ParseConfig('pkg-config libpng16 --cflags --libs')
|
2016-11-03 22:53:18 +01:00
|
|
|
|
2018-01-13 15:16:11 +01:00
|
|
|
if not env['builtin_bullet']:
|
2019-06-11 13:18:05 +02:00
|
|
|
# We need at least version 2.89
|
2018-01-13 15:16:11 +01:00
|
|
|
import subprocess
|
|
|
|
bullet_version = subprocess.check_output(['pkg-config', 'bullet', '--modversion']).strip()
|
2019-06-11 13:18:05 +02:00
|
|
|
if str(bullet_version) < "2.89":
|
2018-01-13 15:16:11 +01:00
|
|
|
# Abort as system bullet was requested but too old
|
2019-06-11 13:18:05 +02:00
|
|
|
print("Bullet: System version {0} does not match minimal requirements ({1}). Aborting.".format(bullet_version, "2.89"))
|
2018-01-13 15:16:11 +01:00
|
|
|
sys.exit(255)
|
|
|
|
env.ParseConfig('pkg-config bullet --cflags --libs')
|
|
|
|
|
2017-09-25 06:22:58 +02:00
|
|
|
if not env['builtin_enet']:
|
2016-11-03 22:53:18 +01:00
|
|
|
env.ParseConfig('pkg-config libenet --cflags --libs')
|
|
|
|
|
2017-09-25 06:22:58 +02:00
|
|
|
if not env['builtin_squish'] and env['tools']:
|
2016-11-03 22:53:18 +01:00
|
|
|
env.ParseConfig('pkg-config libsquish --cflags --libs')
|
|
|
|
|
2017-09-25 06:22:58 +02:00
|
|
|
if not env['builtin_zstd']:
|
2017-09-24 05:46:47 +02:00
|
|
|
env.ParseConfig('pkg-config libzstd --cflags --libs')
|
|
|
|
|
2016-11-03 22:53:18 +01:00
|
|
|
# Sound and video libraries
|
|
|
|
# Keep the order as it triggers chained dependencies (ogg needed by others, etc.)
|
|
|
|
|
2017-09-25 06:22:58 +02:00
|
|
|
if not env['builtin_libtheora']:
|
|
|
|
env['builtin_libogg'] = False # Needed to link against system libtheora
|
|
|
|
env['builtin_libvorbis'] = False # Needed to link against system libtheora
|
2016-11-03 22:53:18 +01:00
|
|
|
env.ParseConfig('pkg-config theora theoradec --cflags --libs')
|
2019-03-05 21:31:46 +01:00
|
|
|
else:
|
|
|
|
list_of_x86 = ['x86_64', 'x86', 'i386', 'i586']
|
|
|
|
if any(platform.machine() in s for s in list_of_x86):
|
|
|
|
env["x86_libtheora_opt_gcc"] = True
|
2016-11-03 22:53:18 +01:00
|
|
|
|
2017-09-25 06:22:58 +02:00
|
|
|
if not env['builtin_libvpx']:
|
2016-11-03 22:53:18 +01:00
|
|
|
env.ParseConfig('pkg-config vpx --cflags --libs')
|
|
|
|
|
2017-09-25 06:22:58 +02:00
|
|
|
if not env['builtin_libvorbis']:
|
|
|
|
env['builtin_libogg'] = False # Needed to link against system libvorbis
|
2016-11-03 22:53:18 +01:00
|
|
|
env.ParseConfig('pkg-config vorbis vorbisfile --cflags --libs')
|
|
|
|
|
2017-09-25 06:22:58 +02:00
|
|
|
if not env['builtin_opus']:
|
|
|
|
env['builtin_libogg'] = False # Needed to link against system opus
|
2016-11-03 22:53:18 +01:00
|
|
|
env.ParseConfig('pkg-config opus opusfile --cflags --libs')
|
|
|
|
|
2017-09-25 06:22:58 +02:00
|
|
|
if not env['builtin_libogg']:
|
2016-11-03 22:53:18 +01:00
|
|
|
env.ParseConfig('pkg-config ogg --cflags --libs')
|
|
|
|
|
2018-06-07 10:41:11 +02:00
|
|
|
if not env['builtin_libwebp']:
|
|
|
|
env.ParseConfig('pkg-config libwebp --cflags --libs')
|
|
|
|
|
|
|
|
if not env['builtin_mbedtls']:
|
|
|
|
# mbedTLS does not provide a pkgconfig config yet. See https://github.com/ARMmbed/mbedtls/issues/228
|
|
|
|
env.Append(LIBS=['mbedtls', 'mbedcrypto', 'mbedx509'])
|
|
|
|
|
|
|
|
if not env['builtin_libwebsockets']:
|
|
|
|
env.ParseConfig('pkg-config libwebsockets --cflags --libs')
|
|
|
|
|
|
|
|
if not env['builtin_miniupnpc']:
|
|
|
|
# No pkgconfig file so far, hardcode default paths.
|
2019-04-30 13:12:02 +02:00
|
|
|
env.Prepend(CPPPATH=["/usr/include/miniupnpc"])
|
2018-06-07 10:41:11 +02:00
|
|
|
env.Append(LIBS=["miniupnpc"])
|
|
|
|
|
2018-03-04 13:46:11 +01:00
|
|
|
# On Linux wchar_t should be 32-bits
|
|
|
|
# 16-bit library shouldn't be required due to compiler optimisations
|
|
|
|
if not env['builtin_pcre2']:
|
|
|
|
env.ParseConfig('pkg-config libpcre2-32 --cflags --libs')
|
|
|
|
|
2017-06-30 19:21:38 +02:00
|
|
|
## Flags
|
2016-11-03 22:53:18 +01:00
|
|
|
|
2017-06-30 19:21:38 +02:00
|
|
|
# Linkflags below this line should typically stay the last ones
|
2017-09-25 06:22:58 +02:00
|
|
|
if not env['builtin_zlib']:
|
2017-06-30 19:21:38 +02:00
|
|
|
env.ParseConfig('pkg-config zlib --cflags --libs')
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2019-04-30 13:12:02 +02:00
|
|
|
env.Prepend(CPPPATH=['#platform/server'])
|
2017-06-30 19:21:38 +02:00
|
|
|
env.Append(CPPFLAGS=['-DSERVER_ENABLED', '-DUNIX_ENABLED'])
|
2018-10-25 15:59:26 +02:00
|
|
|
|
|
|
|
if (platform.system() == "Darwin"):
|
|
|
|
env.Append(LINKFLAGS=['-framework', 'Cocoa', '-framework', 'Carbon', '-lz', '-framework', 'IOKit'])
|
|
|
|
|
2017-06-30 19:21:38 +02:00
|
|
|
env.Append(LIBS=['pthread'])
|
2018-03-01 01:25:16 +01:00
|
|
|
|
|
|
|
if (platform.system() == "Linux"):
|
|
|
|
env.Append(LIBS=['dl'])
|
|
|
|
|
|
|
|
if (platform.system().find("BSD") >= 0):
|
2019-03-05 21:31:46 +01:00
|
|
|
env["execinfo"] = True
|
|
|
|
|
|
|
|
if env["execinfo"]:
|
2018-03-01 01:25:16 +01:00
|
|
|
env.Append(LIBS=['execinfo'])
|
2018-02-22 19:06:11 +01:00
|
|
|
|
|
|
|
# Link those statically for portability
|
|
|
|
if env['use_static_cpp']:
|
|
|
|
env.Append(LINKFLAGS=['-static-libgcc', '-static-libstdc++'])
|