| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | import os | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def is_active(): | 
					
						
							|  |  |  | 	return True | 
					
						
							| 
									
										
										
										
											2016-04-02 20:26:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | def get_name(): | 
					
						
							|  |  |  | 	return "OSX" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def can_build(): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-03 23:24:55 -03:00
										 |  |  | 	if (sys.platform == "darwin" or os.environ.has_key("OSXCROSS_ROOT")): | 
					
						
							|  |  |  | 		return True | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-03 23:24:55 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return False | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | def get_opts(): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return [ | 
					
						
							|  |  |  | 	    ('force_64_bits','Force 64 bits binary','no'), | 
					
						
							| 
									
										
										
										
											2015-09-03 23:24:55 -03:00
										 |  |  | 	    ('osxcross_sdk','OSXCross SDK version','darwin14'), | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	 ] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def get_flags(): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return [ | 
					
						
							|  |  |  | 	('legacygl', 'yes'), | 
					
						
							|  |  |  | 	('builtin_zlib', 'no'), | 
					
						
							| 
									
										
										
										
											2016-06-07 19:59:33 +02:00
										 |  |  | 	('glew', 'yes'), | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def configure(env): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	env.Append(CPPPATH=['#platform/osx']) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-07 01:31:49 -03:00
										 |  |  | 	if (env["bits"]=="default"): | 
					
						
							|  |  |  | 	    env["bits"]="32" | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (env["target"]=="release"): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		env.Append(CCFLAGS=['-O2','-ffast-math','-fomit-frame-pointer','-ftree-vectorize','-msse2']) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	elif (env["target"]=="release_debug"): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		env.Append(CCFLAGS=['-O2','-DDEBUG_ENABLED']) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	elif (env["target"]=="debug"): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		env.Append(CCFLAGS=['-g3', '-Wall','-DDEBUG_ENABLED','-DDEBUG_MEMORY_ENABLED']) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-03 23:24:55 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (not os.environ.has_key("OSXCROSS_ROOT")): | 
					
						
							|  |  |  | 		#regular native build | 
					
						
							|  |  |  | 		if (env["bits"]=="64"): | 
					
						
							|  |  |  | 		    env.Append(CCFLAGS=['-arch', 'x86_64']) | 
					
						
							|  |  |  | 		    env.Append(LINKFLAGS=['-arch', 'x86_64']) | 
					
						
							| 
									
										
										
										
											2016-05-20 17:31:30 -03:00
										 |  |  | 		elif (env["bits"]=="32"): | 
					
						
							| 
									
										
										
										
											2015-09-03 23:24:55 -03:00
										 |  |  | 		    env.Append(CCFLAGS=['-arch', 'i386']) | 
					
						
							|  |  |  | 		    env.Append(LINKFLAGS=['-arch', 'i386']) | 
					
						
							| 
									
										
										
										
											2016-05-20 17:31:30 -03:00
										 |  |  | 		else: | 
					
						
							|  |  |  | 		    env.Append(CCFLAGS=['-arch', 'i386', '-arch', 'x86_64']) | 
					
						
							|  |  |  | 		    env.Append(LINKFLAGS=['-arch', 'i386', '-arch', 'x86_64']) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	else: | 
					
						
							| 
									
										
										
										
											2015-09-03 23:24:55 -03:00
										 |  |  | 		#osxcross build | 
					
						
							|  |  |  | 		root=os.environ.get("OSXCROSS_ROOT",0) | 
					
						
							|  |  |  | 		if env["bits"]=="64": | 
					
						
							|  |  |  | 			basecmd=root+"/target/bin/x86_64-apple-"+env["osxcross_sdk"]+"-" | 
					
						
							|  |  |  | 		else: | 
					
						
							|  |  |  | 			basecmd=root+"/target/bin/i386-apple-"+env["osxcross_sdk"]+"-" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		env['CC'] = basecmd+"cc" | 
					
						
							|  |  |  | 		env['CXX'] = basecmd+"c++" | 
					
						
							|  |  |  | 		env['AR'] = basecmd+"ar" | 
					
						
							|  |  |  | 		env['RANLIB'] = basecmd+"ranlib" | 
					
						
							|  |  |  | 		env['AS'] = basecmd+"as" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #	env.Append(CPPPATH=['#platform/osx/include/freetype2', '#platform/osx/include']) | 
					
						
							|  |  |  | #	env.Append(LIBPATH=['#platform/osx/lib']) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	env.Append(CPPFLAGS=["-DAPPLE_STYLE_KEYS"]) | 
					
						
							| 
									
										
										
										
											2016-06-07 19:59:33 +02:00
										 |  |  | 	env.Append(CPPFLAGS=['-DUNIX_ENABLED','-DGLES2_ENABLED','-DOSX_ENABLED']) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	env.Append(LIBS=['pthread']) | 
					
						
							|  |  |  | 	#env.Append(CPPFLAGS=['-F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks', '-isysroot', '/Developer/SDKs/MacOSX10.4u.sdk', '-mmacosx-version-min=10.4']) | 
					
						
							|  |  |  | 	#env.Append(LINKFLAGS=['-mmacosx-version-min=10.4', '-isysroot', '/Developer/SDKs/MacOSX10.4u.sdk', '-Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk']) | 
					
						
							| 
									
										
										
										
											2016-09-06 00:47:54 +02:00
										 |  |  | 	env.Append(LINKFLAGS=['-framework', 'Cocoa', '-framework', 'Carbon', '-framework', 'OpenGL', '-framework', 'AGL', '-framework', 'AudioUnit','-lz', '-framework', 'IOKit', '-framework', 'ForceFeedback']) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (env["CXX"]=="clang++"): | 
					
						
							|  |  |  | 		env.Append(CPPFLAGS=['-DTYPED_METHOD_BIND']) | 
					
						
							|  |  |  | 		env["CC"]="clang" | 
					
						
							|  |  |  | 		env["LD"]="clang++" | 
					
						
							| 
									
										
										
										
											2015-01-12 14:04:25 +08:00
										 |  |  | 		if (env["colored"]=="yes"): | 
					
						
							|  |  |  | 			if sys.stdout.isatty(): | 
					
						
							| 
									
										
										
										
											2015-01-13 12:54:23 +08:00
										 |  |  | 				env.Append(CPPFLAGS=["-fcolor-diagnostics"]) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	import methods | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	env.Append( BUILDERS = { 'GLSL120' : env.Builder(action = methods.build_legacygl_headers, suffix = 'glsl.h',src_suffix = '.glsl') } ) | 
					
						
							|  |  |  | 	env.Append( BUILDERS = { 'GLSL' : env.Builder(action = methods.build_glsl_headers, suffix = 'glsl.h',src_suffix = '.glsl') } ) | 
					
						
							|  |  |  | 	env.Append( BUILDERS = { 'GLSL120GLES' : env.Builder(action = methods.build_gles2_headers, suffix = 'glsl.h',src_suffix = '.glsl') } ) | 
					
						
							|  |  |  | 	#env.Append( BUILDERS = { 'HLSL9' : env.Builder(action = methods.build_hlsl_dx9_headers, suffix = 'hlsl.h',src_suffix = '.hlsl') } ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-25 00:28:03 -03:00
										 |  |  | 	env["x86_opt_gcc"]=True |