aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/configuration.py
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2017-05-22 19:44:21 +0000
committerDimitry Andric <dim@FreeBSD.org>2017-05-22 19:44:21 +0000
commitfb19dde5bfd42a03786ee50e6b300e47c45ace47 (patch)
tree55abc09b92b053d2b0e643e9451e3aded53defd3 /packages/Python/lldbsuite/test/configuration.py
parent5a5de6ea3962782b02221b96b27dd064b25d381f (diff)
downloadsrc-fb19dde5bfd42a03786ee50e6b300e47c45ace47.tar.gz
src-fb19dde5bfd42a03786ee50e6b300e47c45ace47.zip
Vendor import of lldb trunk r303571:vendor/lldb/lldb-trunk-r303571
Notes
Notes: svn path=/vendor/lldb/dist/; revision=318673 svn path=/vendor/lldb/lldb-trunk-r303571/; revision=318674; tag=vendor/lldb/lldb-trunk-r303571
Diffstat (limited to 'packages/Python/lldbsuite/test/configuration.py')
-rw-r--r--packages/Python/lldbsuite/test/configuration.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/Python/lldbsuite/test/configuration.py b/packages/Python/lldbsuite/test/configuration.py
index 120f8247c695..a49948c02050 100644
--- a/packages/Python/lldbsuite/test/configuration.py
+++ b/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):