mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 13:41:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			123 lines
		
	
	
	
		
			4.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			123 lines
		
	
	
	
		
			4.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| import os
 | |
| import sys
 | |
| 
 | |
| 
 | |
| def is_active():
 | |
|     return True
 | |
| 
 | |
| 
 | |
| def get_name():
 | |
|     return "OSX"
 | |
| 
 | |
| 
 | |
| def can_build():
 | |
| 
 | |
|     if (sys.platform == "darwin" or ("OSXCROSS_ROOT" in os.environ)):
 | |
|         return True
 | |
| 
 | |
|     return False
 | |
| 
 | |
| 
 | |
| def get_opts():
 | |
|     from SCons.Variables import BoolVariable, EnumVariable
 | |
| 
 | |
|     return [
 | |
|         ('osxcross_sdk', 'OSXCross SDK version', 'darwin14'),
 | |
|         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),
 | |
|     ]
 | |
| 
 | |
| 
 | |
| def get_flags():
 | |
| 
 | |
|     return [
 | |
|     ]
 | |
| 
 | |
| 
 | |
| def configure(env):
 | |
| 
 | |
| 	## Build type
 | |
| 
 | |
|     if (env["target"] == "release"):
 | |
|         if (env["optimize"] == "speed"): #optimize for speed (default)
 | |
|             env.Prepend(CCFLAGS=['-O3', '-ffast-math', '-fomit-frame-pointer', '-ftree-vectorize', '-msse2'])
 | |
|         else: #optimize for size
 | |
|             env.Prepend(CCFLAGS=['-Os','-ftree-vectorize', '-msse2'])
 | |
| 
 | |
|         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', '-DDEBUG_ENABLED'])
 | |
|         else: #optimize for size
 | |
|             env.Prepend(CCFLAGS=['-Os', '-DDEBUG_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', '-DDEBUG_ENABLED', '-DDEBUG_MEMORY_ENABLED'])
 | |
| 
 | |
|     ## Architecture
 | |
| 
 | |
|     # Mac OS X no longer runs on 32-bit since 10.7 which is unsupported since 2014
 | |
|     # As such, we only support 64-bit
 | |
|     env["bits"] = "64"
 | |
| 
 | |
|     ## Compiler configuration
 | |
| 
 | |
|     if "OSXCROSS_ROOT" not in os.environ: # regular native build
 | |
|         env.Append(CCFLAGS=['-arch', 'x86_64'])
 | |
|         env.Append(LINKFLAGS=['-arch', 'x86_64'])
 | |
|         if (env["macports_clang"] != 'no'):
 | |
|             mpprefix = os.environ.get("MACPORTS_PREFIX", "/opt/local")
 | |
|             mpclangver = env["macports_clang"]
 | |
|             env["CC"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/clang"
 | |
|             env["LINK"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/clang++"
 | |
|             env["CXX"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/clang++"
 | |
|             env['AR'] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-ar"
 | |
|             env['RANLIB'] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-ranlib"
 | |
|             env['AS'] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-as"
 | |
|             env.Append(CCFLAGS=['-D__MACPORTS__']) #hack to fix libvpx MM256_BROADCASTSI128_SI256 define
 | |
| 
 | |
|     else: # osxcross build
 | |
|         root = os.environ.get("OSXCROSS_ROOT", 0)
 | |
|         basecmd = root + "/target/bin/x86_64-apple-" + env["osxcross_sdk"] + "-"
 | |
| 
 | |
|         ccache_path = os.environ.get("CCACHE")
 | |
|         if ccache_path == None:
 | |
|             env['CC'] = basecmd + "cc"
 | |
|             env['CXX'] = basecmd + "c++"
 | |
|         else:
 | |
|             # there aren't any ccache wrappers available for OS X cross-compile,
 | |
|             # to enable caching we need to prepend the path to the ccache binary
 | |
|             env['CC'] = ccache_path + ' ' + basecmd + "cc"
 | |
|             env['CXX'] = ccache_path + ' ' + basecmd + "c++"
 | |
|         env['AR'] = basecmd + "ar"
 | |
|         env['RANLIB'] = basecmd + "ranlib"
 | |
|         env['AS'] = basecmd + "as"
 | |
|         env.Append(CCFLAGS=['-D__MACPORTS__']) #hack to fix libvpx MM256_BROADCASTSI128_SI256 define
 | |
| 
 | |
|     if (env["CXX"] == "clang++"):
 | |
|         env.Append(CPPFLAGS=['-DTYPED_METHOD_BIND'])
 | |
|         env["CC"] = "clang"
 | |
|         env["LINK"] = "clang++"
 | |
| 
 | |
|     ## Dependencies
 | |
| 
 | |
|     if env['builtin_libtheora']:
 | |
|         env["x86_libtheora_opt_gcc"] = True
 | |
| 
 | |
|     ## Flags
 | |
| 
 | |
|     env.Append(CPPPATH=['#platform/osx'])
 | |
|     env.Append(CPPFLAGS=['-DOSX_ENABLED', '-DUNIX_ENABLED', '-DGLES_ENABLED', '-DAPPLE_STYLE_KEYS', '-DCOREAUDIO_ENABLED', '-DCOREMIDI_ENABLED'])
 | |
|     env.Append(LINKFLAGS=['-framework', 'Cocoa', '-framework', 'Carbon', '-framework', 'OpenGL', '-framework', 'AGL', '-framework', 'AudioUnit', '-framework', 'CoreAudio', '-framework', 'CoreMIDI', '-lz', '-framework', 'IOKit', '-framework', 'ForceFeedback'])
 | |
|     env.Append(LIBS=['pthread'])
 | |
| 
 | |
|     env.Append(CPPFLAGS=['-mmacosx-version-min=10.9'])
 | |
|     env.Append(LINKFLAGS=['-mmacosx-version-min=10.9'])
 | 
