summaryrefslogtreecommitdiff
path: root/pkgs/development/interpreters/python/pypy/darwin_version_min.patch
blob: 18b5726ce13d67c74cf2fc55dfba8a4e651cfdaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/rpython/translator/platform/darwin.py b/rpython/translator/platform/darwin.py
index 8c824a8459..f407fb6c07 100644
--- a/rpython/translator/platform/darwin.py
+++ b/rpython/translator/platform/darwin.py
@@ -26,12 +26,12 @@ class Darwin(posix.BasePosix):
     standalone_only = ('-mdynamic-no-pic',)
     shared_only = ()
 
-    link_flags = (DARWIN_VERSION_MIN,)
+    link_flags = ()
     cflags = ('-O3',
               '-fomit-frame-pointer',
               # The parser turns 'const char *const *includes' into 'const const char **includes'
               '-Wno-duplicate-decl-specifier',
-              DARWIN_VERSION_MIN,)
+              )
 
     so_ext = 'dylib'
     DEFAULT_CC = 'clang'