diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-05-22 19:44:21 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-05-22 19:44:21 +0000 |
commit | fb19dde5bfd42a03786ee50e6b300e47c45ace47 (patch) | |
tree | 55abc09b92b053d2b0e643e9451e3aded53defd3 /packages | |
parent | 5a5de6ea3962782b02221b96b27dd064b25d381f (diff) |
Notes
Diffstat (limited to 'packages')
-rw-r--r-- | packages/Python/lldbsuite/test/configuration.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/Python/lldbsuite/test/configuration.py b/packages/Python/lldbsuite/test/configuration.py index 120f8247c695b..a49948c020507 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): |