summaryrefslogtreecommitdiff
path: root/external/python3/macos-11.patch.0
blob: 42b74f4b2f50584e7834663f2cfcd01415af9b32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
-*- Mode: diff -*-
--- Mac/Tools/pythonw.c
+++ Mac/Tools/pythonw.c
@@ -121,6 +121,8 @@
     cpu_types[0] = CPU_TYPE_POWERPC;
 #elif defined(__i386__)
     cpu_types[0] = CPU_TYPE_X86;
+#elif defined(__arm64__)
+    cpu_types[0] = CPU_TYPE_ARM64;
 #else
 #       error "Unknown CPU"
 #endif
--- setup.py
+++ setup.py
@@ -670,7 +670,10 @@
             add_dir_to_list(self.compiler.include_dirs,
                             sysconfig.get_config_var("INCLUDEDIR"))

-        system_lib_dirs = ['/lib64', '/usr/lib64', '/lib', '/usr/lib']
+        if host_platform == 'darwin':
+            system_lib_dirs = ['/usr/lib', macosx_sdk_root()+'/usr/lib']
+        else:
+            system_lib_dirs = ['/lib64', '/usr/lib64', '/lib', '/usr/lib']
         system_include_dirs = ['/usr/include']
         # lib_dirs and inc_dirs are used to search for files;
         # if a file is found in one of those directories, it can
--- Modules/_decimal/libmpdec/mpdecimal.h
+++ Modules/_decimal/libmpdec/mpdecimal.h
@@ -135,6 +135,9 @@
   #elif defined(__x86_64__)
     #define CONFIG_64
     #define ASM
+  #elif defined(__arm64__)
+    #define CONFIG_64
+    #define ANSI
   #else
     #error "unknown architecture for universal build."
   #endif
--- Modules/_posixsubprocess.c
+++ Modules/_posixsubprocess.c
@@ -31,6 +31,8 @@
 # define SYS_getdents64  __NR_getdents64
 #endif

+#include <limits.h>
+
 #if defined(__sun) && defined(__SVR4)
 /* readdir64 is used to work around Solaris 9 bug 6395699. */
 # define readdir readdir64
@@ -202,7 +202,7 @@
 #endif
 #ifdef _SC_OPEN_MAX
     local_max_fd = sysconf(_SC_OPEN_MAX);
-    if (local_max_fd == -1)
+    if (local_max_fd == -1 || local_max_fd == LONG_MAX)
 #endif
         local_max_fd = 256;  /* Matches legacy Lib/subprocess.py behavior. */
     return local_max_fd;