We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d84fe55 commit 514bcb3Copy full SHA for 514bcb3
lldb/packages/Python/lldbsuite/test/plugins/builder_base.py
@@ -37,20 +37,6 @@ def getCompiler():
37
return os.path.abspath(compiler)
38
39
40
-def getArchFlag():
41
- """Returns the flag required to specify the arch"""
42
- compiler = getCompiler()
43
- if compiler is None:
44
- return ""
45
- elif "gcc" in compiler:
46
- archflag = "-m"
47
- elif "clang" in compiler:
48
- archflag = "-arch"
49
- else:
50
- archflag = None
51
-
52
- return ("ARCHFLAG=" + archflag) if archflag else ""
53
54
def getMake(test_subdir, test_name):
55
"""Returns the invocation for GNU make.
56
The first argument is a tuple of the relative path to the testcase
0 commit comments