diff options
author | Jason Molenda <jmolenda@apple.com> | 2017-05-19 23:00:42 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2017-05-19 23:00:42 +0000 |
commit | 631a0bb92470e9d935cbc8b2c4b75d9934646ff3 (patch) | |
tree | e7b12de7d5332af778e22c22238cb54028df64e9 /lldb/packages/Python/lldbsuite/test | |
parent | 8018780d393e3cc0b8cc715ac2f432112bc28874 (diff) | |
download | bcm5719-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.py | 2 |
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): |