mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
Fixed some more dependency bugs with parallel build
Add some clarity to error handling messages
This commit is contained in:
parent
f2d1a429f2
commit
d32064ced4
@ -109,7 +109,8 @@ signal.signal(signal.SIGINT, keyboardInterruptHandler)
|
|||||||
def usage(problem):
|
def usage(problem):
|
||||||
if (problem):
|
if (problem):
|
||||||
print ""
|
print ""
|
||||||
print problem
|
print "Error parsing commandline input", problem
|
||||||
|
|
||||||
print ""
|
print ""
|
||||||
print "Makepanda generates a 'built' subdirectory containing a"
|
print "Makepanda generates a 'built' subdirectory containing a"
|
||||||
print "compiled copy of Panda3D. Command-line arguments are:"
|
print "compiled copy of Panda3D. Command-line arguments are:"
|
||||||
@ -118,7 +119,9 @@ def usage(problem):
|
|||||||
print " --verbose (print out more information)"
|
print " --verbose (print out more information)"
|
||||||
print " --runtime (build a runtime build instead of an SDK build)"
|
print " --runtime (build a runtime build instead of an SDK build)"
|
||||||
print " --installer (build an installer)"
|
print " --installer (build an installer)"
|
||||||
print " --optimize X (optimization level can be 1,2,3,4)"
|
print " --optimize X (optimization level can be 1,2,3,4"
|
||||||
|
print " C++ application developers on Windows may prefer OPTIMIZE 2"
|
||||||
|
print " as this allows your own application to be compiled with a debug heap)"
|
||||||
print " --version X (set the panda version number)"
|
print " --version X (set the panda version number)"
|
||||||
print " --lzma (use lzma compression when building Windows installer)"
|
print " --lzma (use lzma compression when building Windows installer)"
|
||||||
print " --distributor X (short string identifying the distributor of the build)"
|
print " --distributor X (short string identifying the distributor of the build)"
|
||||||
@ -211,7 +214,9 @@ def parseopts(args):
|
|||||||
if (option=="--everything" or option.startswith("--use-")
|
if (option=="--everything" or option.startswith("--use-")
|
||||||
or option=="--nothing" or option.startswith("--no-")):
|
or option=="--nothing" or option.startswith("--no-")):
|
||||||
anything = 1
|
anything = 1
|
||||||
except: usage(0)
|
except:
|
||||||
|
usage(0)
|
||||||
|
print "Exception while parsing commandline:", sys.exc_info()[0]
|
||||||
if (anything==0): usage(0)
|
if (anything==0): usage(0)
|
||||||
if (RTDIST and RUNTIME):
|
if (RTDIST and RUNTIME):
|
||||||
usage("Options --runtime and --rtdist cannot be specified at the same time!")
|
usage("Options --runtime and --rtdist cannot be specified at the same time!")
|
||||||
@ -4680,6 +4685,7 @@ for VER in MAYAVERSIONS:
|
|||||||
for VER in MAXVERSIONS:
|
for VER in MAXVERSIONS:
|
||||||
VNUM=VER[3:]
|
VNUM=VER[3:]
|
||||||
if (PkgSkip(VER)==0) and (PkgSkip("PANDATOOL")==0):
|
if (PkgSkip(VER)==0) and (PkgSkip("PANDATOOL")==0):
|
||||||
|
print '==>Making Pluging for 3dsmax:', VER
|
||||||
OPTS=['DIR:pandatool/src/maxegg', VER, "WINCOMCTL", "WINCOMDLG", "WINUSER", "MSFORSCOPE"]
|
OPTS=['DIR:pandatool/src/maxegg', VER, "WINCOMCTL", "WINCOMDLG", "WINUSER", "MSFORSCOPE"]
|
||||||
TargetAdd('maxEgg'+VNUM+'.res', opts=OPTS, input='maxEgg.rc')
|
TargetAdd('maxEgg'+VNUM+'.res', opts=OPTS, input='maxEgg.rc')
|
||||||
TargetAdd('maxegg'+VNUM+'_loader.obj', opts=OPTS, input='maxEggLoader.cxx')
|
TargetAdd('maxegg'+VNUM+'_loader.obj', opts=OPTS, input='maxEggLoader.cxx')
|
||||||
@ -5199,20 +5205,23 @@ def ParallelMake(tasklist):
|
|||||||
#task = [CompileAnything, [name, inputs, opts], [name], deps, []]
|
#task = [CompileAnything, [name, inputs, opts], [name], deps, []]
|
||||||
# task[2] = [name]
|
# task[2] = [name]
|
||||||
# task[3] = deps
|
# task[3] = deps
|
||||||
# import pdb
|
# The python tool package, in particular fltegg seems to throw parallelmake off
|
||||||
# for task in tasklist:
|
# A hack for now is to divide the tasklist into two parts, one to be built in parallel
|
||||||
# for targets in task[2]:
|
# and another subpart to be built sequentially. The most time consuming part of the process
|
||||||
# # if 'libpanda.dll' in targets:
|
# is the c++ code generation anyways.
|
||||||
# # print "\n\n\n"
|
print '-->Total number of tasks: ', len(tasklist)
|
||||||
# # print task
|
tasklist_seq = []
|
||||||
# # print "\n\n\n"
|
i = 0
|
||||||
# # pdb.set_trace()
|
while i < len(tasklist):
|
||||||
# if 'libpandaskel.dll' in targets:
|
if tasklist[i][2][0].endswith('.egg') | tasklist[i][2][0].endswith('.egg.pz'):
|
||||||
# print "\n\n\n"
|
break
|
||||||
# print task
|
i += 1
|
||||||
# print "\n\n\n"
|
if i < len(tasklist):
|
||||||
# pdb.set_trace()
|
tasklist_seq = tasklist[i:]
|
||||||
|
tasklist = tasklist[:i]
|
||||||
iNumStartingTasks = len(tasklist)
|
iNumStartingTasks = len(tasklist)
|
||||||
|
print '-->Number of jobs that can be processed in parallel: ', len(tasklist)
|
||||||
|
print '-->Number of jobs that will be processed sequentially: ', len(tasklist_seq)
|
||||||
pending = {}
|
pending = {}
|
||||||
for task in tasklist:
|
for task in tasklist:
|
||||||
for target in task[2]:
|
for target in task[2]:
|
||||||
@ -5224,6 +5233,7 @@ def ParallelMake(tasklist):
|
|||||||
th.start()
|
th.start()
|
||||||
# Feed tasks to the workers.
|
# Feed tasks to the workers.
|
||||||
tasksqueued = 0
|
tasksqueued = 0
|
||||||
|
booStopParallel = False
|
||||||
while (1):
|
while (1):
|
||||||
if (tasksqueued < THREADCOUNT):
|
if (tasksqueued < THREADCOUNT):
|
||||||
extras = []
|
extras = []
|
||||||
@ -5238,7 +5248,7 @@ def ParallelMake(tasklist):
|
|||||||
else:
|
else:
|
||||||
extras.append(task)
|
extras.append(task)
|
||||||
tasklist = extras
|
tasklist = extras
|
||||||
print '**Number of tasks left', len(tasklist), 'out of ', iNumStartingTasks, ' starting tasks'
|
print '**Number of tasks left', len(tasklist), 'out of ', iNumStartingTasks, ' starting parallel tasks'
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
if (tasksqueued == 0): break
|
if (tasksqueued == 0): break
|
||||||
donetask = donequeue.get()
|
donetask = donequeue.get()
|
||||||
@ -5254,12 +5264,15 @@ def ParallelMake(tasklist):
|
|||||||
taskqueue.put(0)
|
taskqueue.put(0)
|
||||||
# Make sure there aren't any unsatisfied tasks
|
# Make sure there aren't any unsatisfied tasks
|
||||||
if (len(tasklist)>0):
|
if (len(tasklist)>0):
|
||||||
exit("Dependency problem - task unsatisfied: "+str(tasklist[0][2]))
|
exit("Dependency problems: " + str(len(tasklist)) + " tasks not finished. First task unsatisfied: "+str(tasklist[0][2]))
|
||||||
|
print '-->Switching to sequential make for remaining tasks'
|
||||||
|
SequentialMake(tasklist_seq)
|
||||||
|
|
||||||
|
|
||||||
def SequentialMake(tasklist):
|
def SequentialMake(tasklist):
|
||||||
i = 0
|
i = 0
|
||||||
print '--->Number of tasks', len(tasklist)
|
print '--->Number of (possible) tasks left', len(tasklist)
|
||||||
|
print ' (These tasks maybe done already)'
|
||||||
for task in tasklist:
|
for task in tasklist:
|
||||||
if (NeedsBuild(task[2], task[3])):
|
if (NeedsBuild(task[2], task[3])):
|
||||||
apply(task[0], task[1] + [(i * 100.0) / len(tasklist)])
|
apply(task[0], task[1] + [(i * 100.0) / len(tasklist)])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user