Buildbot: disable command length workaround for now, seems to give link errors.

This commit is contained in:
2013-06-25 00:49:43 +00:00
parent d54b2391c4
commit 54db7f1b43
2 changed files with 17 additions and 9 deletions

View File

@@ -78,11 +78,14 @@ sources = system_sources + image_sources + geometry_sources + scene_graph_source
winged_edge_sources + view_map_sources + stroke_sources + \
application_sources + interface_sources
if False: # gives link errors 'win' in env['OURPLATFORM']:
env.BlenderLib(libname="bf_freestyle_python", sources=python_sources, includes=Split(incs),
defines=defs, libtype=['core'], priority = [369] # bf_python is 361
)
else:
sources += python_sources
env.BlenderLib(libname="bf_freestyle", sources=sources, includes=Split(incs),
defines=defs, libtype=['core'], priority = [370]
)
env.BlenderLib(libname="bf_freestyle_python", sources=python_sources, includes=Split(incs),
defines=defs, libtype=['core'], priority = [369] # bf_python is 361
defines=defs, libtype=['core'], priority = [370] # bf_python is 361
)