mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-13 19:06:05 +00:00

in order to be run. And added a default build phase at the beginning of the method. llvm-svn: 113037
22 lines
529 B
Python
22 lines
529 B
Python
import lldbtest
|
|
|
|
#print "Hello, darwin plugin!"
|
|
|
|
def buildDefault():
|
|
lldbtest.system(["/bin/sh", "-c", "make clean; make"])
|
|
|
|
# True signifies that we can handle building default.
|
|
return True
|
|
|
|
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
|