2010-08-31 17:42:54 +00:00
|
|
|
import lldbtest
|
|
|
|
|
|
|
|
#print "Hello, darwin plugin!"
|
|
|
|
|
2010-09-03 23:49:16 +00:00
|
|
|
def buildDefault():
|
|
|
|
lldbtest.system(["/bin/sh", "-c", "make clean; make"])
|
|
|
|
|
|
|
|
# True signifies that we can handle building default.
|
|
|
|
return True
|
|
|
|
|
2010-08-31 17:42:54 +00:00
|
|
|
def buildDsym():
|
|
|
|
lldbtest.system(["/bin/sh", "-c", "make clean; make MAKE_DSYM=YES"])
|
|
|
|
|
|
|
|
# True signifies that we can handle building dsym.
|
|
|
|
return True
|
|
|
|
|
|
|
|
def buildDwarf():
|
|
|
|
lldbtest.system(["/bin/sh", "-c", "make clean; make MAKE_DSYM=NO"])
|
|
|
|
|
|
|
|
# True signifies that we can handle building dsym.
|
|
|
|
return True
|