File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ _testimportmultiple _testimportmultiple.c
34
34
_testinternalcapi _testinternalcapi.c -DPy_BUILD_CORE_MODULE
35
35
_testmultiphase _testmultiphase.c
36
36
# CoreFoundation isn't a directory dependency but is a dependency of libtcl and libtk.
37
- _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT -framework AppKit -framework ApplicationServices -framework Carbon -framework CoreFoundation -framework CoreServices -framework CoreGraphics -framework IOKit -framework QuartzCore -Xlinker -hidden-ltcl8.6 -Xlinker -hidden-ltk8.6
37
+ _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT -framework AppKit -framework ApplicationServices -framework Carbon -framework Cocoa -framework CoreFoundation -framework CoreServices -framework CoreGraphics -framework IOKit -framework QuartzCore -Xlinker -hidden-ltcl8.6 -Xlinker -hidden-ltk8.6
38
38
_uuid _uuidmodule.c -Xlinker -hidden-luuid
39
39
_xxsubinterpreters _xxsubinterpretersmodule.c
40
40
_xxtestfuzz _xxtestfuzz/_xxtestfuzz.c _xxtestfuzz/fuzzer.c
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ _scproxy _scproxy.c -framework SystemConfiguration -framework CoreFoundation
29
29
_sqlite3 _sqlite/cache.c _sqlite/connection.c _sqlite/cursor.c _sqlite/microprotocols.c _sqlite/module.c _sqlite/prepare_protocol.c _sqlite/row.c _sqlite/statement.c _sqlite/util.c -IModules/_sqlite -DMODULE_NAME=\"sqlite3\" -Xlinker -hidden-lsqlite3
30
30
_ssl _ssl.c -Xlinker -hidden-lssl -Xlinker -hidden-lcrypto
31
31
# CoreFoundation isn't a directory dependency but is a dependency of libtcl and libtk.
32
- _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT -framework AppKit -framework ApplicationServices -framework Carbon -framework CoreFoundation -framework CoreServices -framework CoreGraphics -framework IOKit -framework QuartzCore -Xlinker -hidden-ltcl8.6 -Xlinker -hidden-ltk8.6
32
+ _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT -framework AppKit -framework ApplicationServices -framework Carbon -framework Cocoa -framework CoreFoundation -framework CoreServices -framework CoreGraphics -framework IOKit -framework QuartzCore -Xlinker -hidden-ltcl8.6 -Xlinker -hidden-ltk8.6
33
33
_uuid _uuidmodule.c -Xlinker -hidden-luuid
34
34
pyexpat pyexpat.c expat/xmlparse.c expat/xmlrole.c expat/xmltok.c -DHAVE_EXPAT_CONFIG_H=1 -DXML_POOR_ENTROPY=1 -DUSE_PYEXPAT_CAPI -IModules/expat
35
35
readline readline.c -Xlinker -hidden-ledit -Xlinker -hidden-lncurses
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ _testimportmultiple _testimportmultiple.c
34
34
_testinternalcapi _testinternalcapi.c -DPy_BUILD_CORE_MODULE
35
35
_testmultiphase _testmultiphase.c
36
36
# CoreFoundation isn't a directory dependency but is a dependency of libtcl and libtk.
37
- _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT -framework AppKit -framework ApplicationServices -framework Carbon -framework CoreFoundation -framework CoreServices -framework CoreGraphics -framework IOKit -framework QuartzCore -Xlinker -hidden-ltcl8.6 -Xlinker -hidden-ltk8.6
37
+ _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT -framework AppKit -framework ApplicationServices -framework Carbon -framework Cocoa -framework CoreFoundation -framework CoreServices -framework CoreGraphics -framework IOKit -framework QuartzCore -Xlinker -hidden-ltcl8.6 -Xlinker -hidden-ltk8.6
38
38
_uuid _uuidmodule.c -Xlinker -hidden-luuid
39
39
_xxsubinterpreters _xxsubinterpretersmodule.c
40
40
_xxtestfuzz _xxtestfuzz/_xxtestfuzz.c _xxtestfuzz/fuzzer.c
Original file line number Diff line number Diff line change @@ -269,6 +269,11 @@ static DARWIN_ALLOWED_DYLIBS: Lazy<Vec<MachOAllowedDylib>> = Lazy::new(|| {
269
269
max_compatibility_version : "2.0.0" . try_into ( ) . unwrap ( ) ,
270
270
required : true ,
271
271
} ,
272
+ MachOAllowedDylib {
273
+ name : "/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa" . to_string ( ) ,
274
+ max_compatibility_version : "1.0.0" . try_into ( ) . unwrap ( ) ,
275
+ required : true ,
276
+ } ,
272
277
MachOAllowedDylib {
273
278
name :
274
279
"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"
You can’t perform that action at this time.
0 commit comments