summaryrefslogtreecommitdiff
path: root/platform/osx/detect.py
blob: 43ddfa0d1a67d45347b2ecbf013ffb07496e16d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110

import os
import sys


def is_active():
	return True

def get_name():
	return "OSX"

def can_build():

	if (sys.platform == "darwin" or os.environ.has_key("OSXCROSS_ROOT")):
		return True


	return False

def get_opts():

	return [
	    ('force_64_bits','Force 64 bits binary','no'),
	    ('osxcross_sdk','OSXCross SDK version','darwin14'),

	 ]

def get_flags():

	return [
		('builtin_zlib', 'no'),
	]



def configure(env):

	env.Append(CPPPATH=['#platform/osx'])

	if (env["bits"]=="default"):
	    env["bits"]="32"

	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'])



	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'])
		elif (env["bits"]=="32"):
		    env.Append(CCFLAGS=['-arch', 'i386'])
		    env.Append(LINKFLAGS=['-arch', 'i386'])
		else:
		    env.Append(CCFLAGS=['-arch', 'i386', '-arch', 'x86_64'])
		    env.Append(LINKFLAGS=['-arch', 'i386', '-arch', 'x86_64'])
	else:
		#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"


#	env.Append(CPPPATH=['#platform/osx/include/freetype2', '#platform/osx/include'])
#	env.Append(LIBPATH=['#platform/osx/lib'])


	env.Append(CPPFLAGS=["-DAPPLE_STYLE_KEYS"])
	env.Append(CPPFLAGS=['-DUNIX_ENABLED','-DGLES2_ENABLED','-DOSX_ENABLED'])
	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'])
	env.Append(LINKFLAGS=['-framework', 'Cocoa', '-framework', 'Carbon', '-framework', 'OpenGL', '-framework', 'AGL', '-framework', 'AudioUnit','-lz', '-framework', 'IOKit', '-framework', 'ForceFeedback'])

	if (env["CXX"]=="clang++"):
		env.Append(CPPFLAGS=['-DTYPED_METHOD_BIND'])
		env["CC"]="clang"
		env["LD"]="clang++"
		if (env["colored"]=="yes"):
			if sys.stdout.isatty():
				env.Append(CPPFLAGS=["-fcolor-diagnostics"])

	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') } )

	env["x86_opt_gcc"]=True