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():
|
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
if (os.name != "posix"):
|
2016-10-30 18:44:57 +01:00
|
|
|
return False
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
return True # enabled
|
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():
|
|
|
|
|
2016-10-30 18:44:57 +01:00
|
|
|
return [
|
2016-10-30 18:57:40 +01:00
|
|
|
('use_llvm', 'Use llvm compiler', 'no'),
|
|
|
|
('force_32_bits', 'Force 32 bits binary', 'no')
|
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):
|
|
|
|
|
2016-10-30 18:44:57 +01:00
|
|
|
env.Append(CPPPATH=['#platform/server'])
|
2016-10-30 18:57:40 +01:00
|
|
|
if (env["use_llvm"] == "yes"):
|
|
|
|
env["CC"] = "clang"
|
|
|
|
env["CXX"] = "clang++"
|
|
|
|
env["LD"] = "clang++"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
is64 = sys.maxsize > 2**32
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
if (env["bits"] == "default"):
|
2016-10-30 18:44:57 +01:00
|
|
|
if (is64):
|
2016-10-30 18:57:40 +01:00
|
|
|
env["bits"] = "64"
|
2016-10-30 18:44:57 +01:00
|
|
|
else:
|
2016-10-30 18:57:40 +01:00
|
|
|
env["bits"] = "32"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
# if (env["tools"]=="no"):
|
2016-10-30 18:44:57 +01:00
|
|
|
# #no tools suffix
|
|
|
|
# env['OBJSUFFIX'] = ".nt"+env['OBJSUFFIX']
|
|
|
|
# env['LIBSUFFIX'] = ".nt"+env['LIBSUFFIX']
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
if (env["target"] == "release"):
|
2014-10-07 06:31:49 +02:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
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"):
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
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"):
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
env.Append(CCFLAGS=['-g2', '-Wall', '-DDEBUG_ENABLED', '-DDEBUG_MEMORY_ENABLED'])
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-11-03 22:53:18 +01:00
|
|
|
|
|
|
|
# Shared libraries, when requested
|
|
|
|
|
|
|
|
if (env['builtin_openssl'] == 'no'):
|
|
|
|
env.ParseConfig('pkg-config openssl --cflags --libs')
|
|
|
|
|
|
|
|
if (env['builtin_libwebp'] == 'no'):
|
|
|
|
env.ParseConfig('pkg-config libwebp --cflags --libs')
|
|
|
|
|
|
|
|
if (env['builtin_freetype'] == 'no'):
|
|
|
|
env.ParseConfig('pkg-config freetype2 --cflags --libs')
|
|
|
|
|
|
|
|
if (env['builtin_libpng'] == 'no'):
|
2016-11-19 13:38:46 +01:00
|
|
|
env.ParseConfig('pkg-config libpng --cflags --libs')
|
2016-11-03 22:53:18 +01:00
|
|
|
|
|
|
|
if (env['builtin_enet'] == 'no'):
|
|
|
|
env.ParseConfig('pkg-config libenet --cflags --libs')
|
|
|
|
|
|
|
|
if (env['builtin_squish'] == 'no' and env["tools"] == "yes"):
|
|
|
|
env.ParseConfig('pkg-config libsquish --cflags --libs')
|
|
|
|
|
|
|
|
# Sound and video libraries
|
|
|
|
# Keep the order as it triggers chained dependencies (ogg needed by others, etc.)
|
|
|
|
|
|
|
|
if (env['builtin_libtheora'] == 'no'):
|
|
|
|
env['builtin_libogg'] = 'no' # Needed to link against system libtheora
|
|
|
|
env['builtin_libvorbis'] = 'no' # Needed to link against system libtheora
|
|
|
|
env.ParseConfig('pkg-config theora theoradec --cflags --libs')
|
|
|
|
|
|
|
|
if (env['builtin_libvpx'] == 'no'):
|
|
|
|
env.ParseConfig('pkg-config vpx --cflags --libs')
|
|
|
|
|
|
|
|
if (env['builtin_libvorbis'] == 'no'):
|
|
|
|
env['builtin_libogg'] = 'no' # Needed to link against system libvorbis
|
|
|
|
env.ParseConfig('pkg-config vorbis vorbisfile --cflags --libs')
|
|
|
|
|
|
|
|
if (env['builtin_opus'] == 'no'):
|
|
|
|
env['builtin_libogg'] = 'no' # Needed to link against system opus
|
|
|
|
env.ParseConfig('pkg-config opus opusfile --cflags --libs')
|
|
|
|
|
|
|
|
if (env['builtin_libogg'] == 'no'):
|
|
|
|
env.ParseConfig('pkg-config ogg --cflags --libs')
|
|
|
|
|
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
env.Append(CPPFLAGS=['-DSERVER_ENABLED', '-DUNIX_ENABLED'])
|
|
|
|
env.Append(LIBS=['pthread', 'z']) # TODO detect linux/BSD!
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
if (env["CXX"] == "clang++"):
|
2016-10-30 18:44:57 +01:00
|
|
|
env.Append(CPPFLAGS=['-DTYPED_METHOD_BIND'])
|
2016-10-30 18:57:40 +01:00
|
|
|
env["CC"] = "clang"
|
|
|
|
env["LD"] = "clang++"
|