godot/platform/server/detect.py

76 lines
1.5 KiB
Python
Raw Normal View History

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():
return True
2016-04-02 20:26:12 +02:00
2014-02-10 02:10:30 +01:00
def get_name():
return "Server"
2014-02-10 02:10:30 +01:00
def can_build():
if (os.name != "posix"):
return False
2014-02-10 02:10:30 +01:00
return True # enabled
2016-04-02 20:26:12 +02:00
2014-02-10 02:10:30 +01:00
def get_opts():
return [
('use_llvm', 'Use llvm compiler', 'no'),
('force_32_bits', 'Force 32 bits binary', 'no')
]
2016-04-02 20:26:12 +02:00
2014-02-10 02:10:30 +01:00
def get_flags():
return [
]
2016-04-02 20:26:12 +02:00
2014-02-10 02:10:30 +01:00
def configure(env):
env.Append(CPPPATH=['#platform/server'])
if (env["use_llvm"] == "yes"):
env["CC"] = "clang"
env["CXX"] = "clang++"
env["LD"] = "clang++"
2014-02-10 02:10:30 +01:00
is64 = sys.maxsize > 2**32
2014-02-10 02:10:30 +01:00
if (env["bits"] == "default"):
if (is64):
env["bits"] = "64"
else:
env["bits"] = "32"
2014-02-10 02:10:30 +01:00
# if (env["tools"]=="no"):
# #no tools suffix
# env['OBJSUFFIX'] = ".nt"+env['OBJSUFFIX']
# env['LIBSUFFIX'] = ".nt"+env['LIBSUFFIX']
2014-02-10 02:10:30 +01:00
if (env["target"] == "release"):
env.Append(CCFLAGS=['-O2', '-ffast-math', '-fomit-frame-pointer'])
2014-02-10 02:10:30 +01:00
elif (env["target"] == "release_debug"):
2014-02-10 02:10:30 +01:00
env.Append(CCFLAGS=['-O2', '-ffast-math', '-DDEBUG_ENABLED'])
2014-02-10 02:10:30 +01:00
elif (env["target"] == "debug"):
2014-02-10 02:10:30 +01:00
env.Append(CCFLAGS=['-g2', '-Wall', '-DDEBUG_ENABLED', '-DDEBUG_MEMORY_ENABLED'])
2014-02-10 02:10:30 +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
if (env["CXX"] == "clang++"):
env.Append(CPPFLAGS=['-DTYPED_METHOD_BIND'])
env["CC"] = "clang"
env["LD"] = "clang++"