| 
									
										
										
										
											2014-02-09 22:10:30 -03: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-09 22:10:30 -03: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-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03: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-09 22:10:30 -03:00
										 |  |  | def get_name(): | 
					
						
							| 
									
										
										
										
											2016-10-30 18:44:57 +01:00
										 |  |  |     return "Server" | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-25 10:59:26 -03:00
										 |  |  | def get_program_suffix(): | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if sys.platform == "darwin": | 
					
						
							| 
									
										
										
										
											2018-10-25 10:59:26 -03:00
										 |  |  |         return "osx" | 
					
						
							| 
									
										
										
										
											2020-03-12 20:12:34 -03:00
										 |  |  |     return "linuxbsd" | 
					
						
							| 
									
										
										
										
											2018-10-25 10:59:26 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | def can_build(): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if os.name != "posix": | 
					
						
							| 
									
										
										
										
											2016-10-30 18:44:57 +01:00
										 |  |  |         return False | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03: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-09 22:10:30 -03:00
										 |  |  | def get_opts(): | 
					
						
							| 
									
										
										
										
											2019-03-05 21:31:46 +01:00
										 |  |  |     from SCons.Variables import BoolVariable, EnumVariable | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-30 18:44:57 +01:00
										 |  |  |     return [ | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |         BoolVariable("use_llvm", "Use the LLVM compiler", False), | 
					
						
							|  |  |  |         BoolVariable("use_static_cpp", "Link libgcc and libstdc++ statically for better portability", False), | 
					
						
							|  |  |  |         BoolVariable("use_coverage", "Test Godot coverage", False), | 
					
						
							|  |  |  |         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), | 
					
						
							|  |  |  |         BoolVariable("use_tsan", "Use LLVM/GCC compiler thread sanitizer (TSAN))", 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-09 22:10:30 -03:00
										 |  |  | def get_flags(): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-25 12:19:34 +02:00
										 |  |  |     return [] | 
					
						
							| 
									
										
										
										
											2016-04-02 20:26:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | def configure(env): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-30 19:21:38 +02:00
										 |  |  |     ## Build type | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if env["target"] == "release": | 
					
						
							|  |  |  |         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"]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     elif env["target"] == "release_debug": | 
					
						
							|  |  |  |         if env["optimize"] == "speed":  # optimize for speed (default) | 
					
						
							|  |  |  |             env.Prepend(CCFLAGS=["-O2"]) | 
					
						
							|  |  |  |         else:  # optimize for size | 
					
						
							|  |  |  |             env.Prepend(CCFLAGS=["-Os"]) | 
					
						
							|  |  |  |         env.Prepend(CPPDEFINES=["DEBUG_ENABLED"]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if env["debug_symbols"] == "yes": | 
					
						
							|  |  |  |             env.Prepend(CCFLAGS=["-g1"]) | 
					
						
							|  |  |  |         if env["debug_symbols"] == "full": | 
					
						
							|  |  |  |             env.Prepend(CCFLAGS=["-g2"]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     elif env["target"] == "debug": | 
					
						
							|  |  |  |         env.Prepend(CCFLAGS=["-g3"]) | 
					
						
							|  |  |  |         env.Prepend(CPPDEFINES=["DEBUG_ENABLED", "DEBUG_MEMORY_ENABLED"]) | 
					
						
							|  |  |  |         env.Append(LINKFLAGS=["-rdynamic"]) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-30 19:21:38 +02:00
										 |  |  |     ## Architecture | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     is64 = sys.maxsize > 2 ** 32 | 
					
						
							|  |  |  |     if env["bits"] == "default": | 
					
						
							| 
									
										
										
										
											2017-06-30 19:21:38 +02:00
										 |  |  |         env["bits"] = "64" if is64 else "32" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ## Compiler configuration | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if "CXX" in env and "clang" in os.path.basename(env["CXX"]): | 
					
						
							| 
									
										
										
										
											2019-03-05 21:31:46 +01:00
										 |  |  |         # Convenience check to enforce the use_llvm overrides when CXX is clang(++) | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |         env["use_llvm"] = True | 
					
						
							| 
									
										
										
										
											2019-03-05 21:31:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if env["use_llvm"]: | 
					
						
							|  |  |  |         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++" | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |         env.Append(CPPDEFINES=["TYPED_METHOD_BIND"]) | 
					
						
							| 
									
										
										
										
											2017-06-30 19:21:38 +02:00
										 |  |  |         env.extra_suffix = ".llvm" + env.extra_suffix | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if env["use_coverage"]: | 
					
						
							|  |  |  |         env.Append(CCFLAGS=["-ftest-coverage", "-fprofile-arcs"]) | 
					
						
							|  |  |  |         env.Append(LINKFLAGS=["-ftest-coverage", "-fprofile-arcs"]) | 
					
						
							| 
									
										
										
										
											2019-03-05 21:31:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if env["use_ubsan"] or env["use_asan"] or env["use_lsan"] or env["use_tsan"]: | 
					
						
							| 
									
										
										
										
											2019-03-05 21:31:46 +01:00
										 |  |  |         env.extra_suffix += "s" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |         if env["use_ubsan"]: | 
					
						
							|  |  |  |             env.Append(CCFLAGS=["-fsanitize=undefined"]) | 
					
						
							|  |  |  |             env.Append(LINKFLAGS=["-fsanitize=undefined"]) | 
					
						
							| 
									
										
										
										
											2019-03-05 21:31:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |         if env["use_asan"]: | 
					
						
							|  |  |  |             env.Append(CCFLAGS=["-fsanitize=address"]) | 
					
						
							|  |  |  |             env.Append(LINKFLAGS=["-fsanitize=address"]) | 
					
						
							| 
									
										
										
										
											2019-03-05 21:31:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |         if env["use_lsan"]: | 
					
						
							|  |  |  |             env.Append(CCFLAGS=["-fsanitize=leak"]) | 
					
						
							|  |  |  |             env.Append(LINKFLAGS=["-fsanitize=leak"]) | 
					
						
							| 
									
										
										
										
											2019-03-05 21:31:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |         if env["use_tsan"]: | 
					
						
							|  |  |  |             env.Append(CCFLAGS=["-fsanitize=thread"]) | 
					
						
							|  |  |  |             env.Append(LINKFLAGS=["-fsanitize=thread"]) | 
					
						
							| 
									
										
										
										
											2019-08-07 12:01:14 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     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"))]) | 
					
						
							| 
									
										
										
										
											2019-03-05 21:31:46 +01:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |             env.Append(LINKFLAGS=["-flto"]) | 
					
						
							|  |  |  |         if not env["use_llvm"]: | 
					
						
							|  |  |  |             env["RANLIB"] = "gcc-ranlib" | 
					
						
							|  |  |  |             env["AR"] = "gcc-ar" | 
					
						
							| 
									
										
										
										
											2019-03-05 21:31:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     env.Append(CCFLAGS=["-pipe"]) | 
					
						
							|  |  |  |     env.Append(LINKFLAGS=["-pipe"]) | 
					
						
							| 
									
										
										
										
											2019-03-05 21:31:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if not env["builtin_freetype"]: | 
					
						
							|  |  |  |         env.ParseConfig("pkg-config freetype2 --cflags --libs") | 
					
						
							| 
									
										
										
										
											2016-11-03 22:53:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if not env["builtin_libpng"]: | 
					
						
							|  |  |  |         env.ParseConfig("pkg-config libpng16 --cflags --libs") | 
					
						
							| 
									
										
										
										
											2016-11-03 22:53:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02: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 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |         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 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +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) | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |         env.ParseConfig("pkg-config bullet --cflags --libs") | 
					
						
							| 
									
										
										
										
											2018-01-13 15:16:11 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-06 13:31:52 +01:00
										 |  |  |     if False:  # not env['builtin_assimp']: | 
					
						
							|  |  |  |         # FIXME: Add min version check | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |         env.ParseConfig("pkg-config assimp --cflags --libs") | 
					
						
							| 
									
										
										
										
											2020-03-06 13:31:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if not env["builtin_enet"]: | 
					
						
							|  |  |  |         env.ParseConfig("pkg-config libenet --cflags --libs") | 
					
						
							| 
									
										
										
										
											2016-11-03 22:53:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if not env["builtin_squish"]: | 
					
						
							|  |  |  |         env.ParseConfig("pkg-config libsquish --cflags --libs") | 
					
						
							| 
									
										
										
										
											2016-11-03 22:53:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if not env["builtin_zstd"]: | 
					
						
							|  |  |  |         env.ParseConfig("pkg-config libzstd --cflags --libs") | 
					
						
							| 
									
										
										
										
											2017-09-23 23:46:47 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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.) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +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 | 
					
						
							|  |  |  |         env.ParseConfig("pkg-config theora theoradec --cflags --libs") | 
					
						
							| 
									
										
										
										
											2019-03-05 21:31:46 +01:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |         list_of_x86 = ["x86_64", "x86", "i386", "i586"] | 
					
						
							| 
									
										
										
										
											2019-03-05 21:31:46 +01:00
										 |  |  |         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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if not env["builtin_libvpx"]: | 
					
						
							|  |  |  |         env.ParseConfig("pkg-config vpx --cflags --libs") | 
					
						
							| 
									
										
										
										
											2016-11-03 22:53:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if not env["builtin_libvorbis"]: | 
					
						
							|  |  |  |         env["builtin_libogg"] = False  # Needed to link against system libvorbis | 
					
						
							|  |  |  |         env.ParseConfig("pkg-config vorbis vorbisfile --cflags --libs") | 
					
						
							| 
									
										
										
										
											2016-11-03 22:53:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if not env["builtin_opus"]: | 
					
						
							|  |  |  |         env["builtin_libogg"] = False  # Needed to link against system opus | 
					
						
							|  |  |  |         env.ParseConfig("pkg-config opus opusfile --cflags --libs") | 
					
						
							| 
									
										
										
										
											2016-11-03 22:53:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if not env["builtin_libogg"]: | 
					
						
							|  |  |  |         env.ParseConfig("pkg-config ogg --cflags --libs") | 
					
						
							| 
									
										
										
										
											2016-11-03 22:53:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if not env["builtin_libwebp"]: | 
					
						
							|  |  |  |         env.ParseConfig("pkg-config libwebp --cflags --libs") | 
					
						
							| 
									
										
										
										
											2018-06-07 10:41:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if not env["builtin_mbedtls"]: | 
					
						
							| 
									
										
										
										
											2018-06-07 10:41:11 +02:00
										 |  |  |         # mbedTLS does not provide a pkgconfig config yet. See https://github.com/ARMmbed/mbedtls/issues/228 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |         env.Append(LIBS=["mbedtls", "mbedcrypto", "mbedx509"]) | 
					
						
							| 
									
										
										
										
											2018-06-07 10:41:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if not env["builtin_wslay"]: | 
					
						
							|  |  |  |         env.ParseConfig("pkg-config libwslay --cflags --libs") | 
					
						
							| 
									
										
										
										
											2018-06-07 10:41:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if not env["builtin_miniupnpc"]: | 
					
						
							| 
									
										
										
										
											2018-06-07 10:41:11 +02:00
										 |  |  |         # 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 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if not env["builtin_pcre2"]: | 
					
						
							|  |  |  |         env.ParseConfig("pkg-config libpcre2-32 --cflags --libs") | 
					
						
							| 
									
										
										
										
											2018-03-04 13:46:11 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if not env["builtin_zlib"]: | 
					
						
							|  |  |  |         env.ParseConfig("pkg-config zlib --cflags --libs") | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     env.Prepend(CPPPATH=["#platform/server"]) | 
					
						
							|  |  |  |     env.Append(CPPDEFINES=["SERVER_ENABLED", "UNIX_ENABLED"]) | 
					
						
							| 
									
										
										
										
											2018-10-25 10:59:26 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if platform.system() == "Darwin": | 
					
						
							|  |  |  |         env.Append(LINKFLAGS=["-framework", "Cocoa", "-framework", "Carbon", "-lz", "-framework", "IOKit"]) | 
					
						
							| 
									
										
										
										
											2018-10-25 10:59:26 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     env.Append(LIBS=["pthread"]) | 
					
						
							| 
									
										
										
										
											2018-03-01 01:25:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if platform.system() == "Linux": | 
					
						
							|  |  |  |         env.Append(LIBS=["dl"]) | 
					
						
							| 
									
										
										
										
											2018-03-01 01:25:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if platform.system().find("BSD") >= 0: | 
					
						
							| 
									
										
										
										
											2019-03-05 21:31:46 +01:00
										 |  |  |         env["execinfo"] = True | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if env["execinfo"]: | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |         env.Append(LIBS=["execinfo"]) | 
					
						
							| 
									
										
										
										
											2018-02-22 19:06:11 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Link those statically for portability | 
					
						
							| 
									
										
										
										
											2020-03-30 08:28:32 +02:00
										 |  |  |     if env["use_static_cpp"]: | 
					
						
							|  |  |  |         env.Append(LINKFLAGS=["-static-libgcc", "-static-libstdc++"]) |