2014-02-10 02:10:30 +01:00
|
|
|
import os
|
2016-04-02 20:26:12 +02:00
|
|
|
import sys
|
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
|
|
|
|
|
|
|
|
|
|
|
def can_build():
|
|
|
|
|
2017-10-17 07:56:00 +02:00
|
|
|
# Doesn't build against Godot 3.0 for now, disable to avoid confusing users
|
|
|
|
return False
|
|
|
|
|
2017-06-30 19:21:38 +02:00
|
|
|
if (os.name != "posix" or sys.platform == "darwin"):
|
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():
|
2017-09-25 06:37:17 +02:00
|
|
|
from SCons.Variables import BoolVariable
|
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),
|
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():
|
|
|
|
|
2016-10-30 18:44:57 +01: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"):
|
|
|
|
env.Append(CCFLAGS=['-O2', '-ffast-math', '-fomit-frame-pointer'])
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
elif (env["target"] == "release_debug"):
|
|
|
|
env.Append(CCFLAGS=['-O2', '-ffast-math', '-DDEBUG_ENABLED'])
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
elif (env["target"] == "debug"):
|
2017-03-25 08:36:00 +01:00
|
|
|
env.Append(CCFLAGS=['-g2', '-DDEBUG_ENABLED', '-DDEBUG_MEMORY_ENABLED'])
|
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
|
|
|
|
|
2017-09-25 06:37:17 +02:00
|
|
|
if env['use_llvm']:
|
2017-06-30 19:21:38 +02:00
|
|
|
if ('clang++' not in env['CXX']):
|
|
|
|
env["CC"] = "clang"
|
|
|
|
env["CXX"] = "clang++"
|
|
|
|
env["LD"] = "clang++"
|
|
|
|
env.Append(CPPFLAGS=['-DTYPED_METHOD_BIND'])
|
|
|
|
env.extra_suffix = ".llvm" + env.extra_suffix
|
|
|
|
|
|
|
|
## 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-09-25 06:22:58 +02:00
|
|
|
if not env['builtin_openssl']:
|
2016-11-03 22:53:18 +01:00
|
|
|
env.ParseConfig('pkg-config openssl --cflags --libs')
|
|
|
|
|
2017-09-25 06:22:58 +02:00
|
|
|
if not env['builtin_libwebp']:
|
2016-11-03 22:53:18 +01:00
|
|
|
env.ParseConfig('pkg-config libwebp --cflags --libs')
|
|
|
|
|
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']:
|
2016-11-19 13:38:46 +01:00
|
|
|
env.ParseConfig('pkg-config libpng --cflags --libs')
|
2016-11-03 22:53:18 +01:00
|
|
|
|
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')
|
|
|
|
|
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')
|
|
|
|
|
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
|
|
|
|
2017-06-30 19:21:38 +02:00
|
|
|
env.Append(CPPPATH=['#platform/server'])
|
|
|
|
env.Append(CPPFLAGS=['-DSERVER_ENABLED', '-DUNIX_ENABLED'])
|
|
|
|
env.Append(LIBS=['pthread'])
|