summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2017-05-19 23:00:42 +0000
committerJason Molenda <jmolenda@apple.com>2017-05-19 23:00:42 +0000
commit631a0bb92470e9d935cbc8b2c4b75d9934646ff3 (patch)
treee7b12de7d5332af778e22c22238cb54028df64e9 /lldb/packages/Python/lldbsuite/test
parent8018780d393e3cc0b8cc715ac2f432112bc28874 (diff)
downloadbcm5719-llvm-631a0bb92470e9d935cbc8b2c4b75d9934646ff3.tar.gz
bcm5719-llvm-631a0bb92470e9d935cbc8b2c4b75d9934646ff3.zip
Don't override the SDKs and force the use of /System/Library/Frameworks to
find the python headers when buiding crashinfo.c <rdar://problem/32288076> llvm-svn: 303465
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r--lldb/packages/Python/lldbsuite/test/configuration.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py
index 120f8247c69..a49948c0205 100644
--- a/lldb/packages/Python/lldbsuite/test/configuration.py
+++ b/lldb/packages/Python/lldbsuite/test/configuration.py
@@ -44,7 +44,7 @@ def setupCrashInfoHook():
if not os.path.isfile(dylib_dst) or os.path.getmtime(
dylib_dst) < os.path.getmtime(dylib_src):
# we need to compile
- cmd = "SDKROOT= xcrun clang %s -o %s -framework Python -Xlinker -dylib -iframework /System/Library/Frameworks/ -Xlinker -F /System/Library/Frameworks/" % (
+ cmd = "SDKROOT= xcrun clang %s -o %s -framework Python -Xlinker -dylib" % (
dylib_src, dylib_dst)
if subprocess.call(
cmd, shell=True) != 0 or not os.path.isfile(dylib_dst):
OpenPOWER on IntegriCloud