mirror of
https://github.com/python/cpython.git
synced 2025-08-01 15:43:13 +00:00
Mac version of freeze. Uses standard freeze modules where it can,
augmenting them here and there. For now, it works more-or-less similar to unix/windows freeze, generating a config.c file, but storing modules in PYC resources. A template project is also copied. The hooks are in place to freeze by merging shared libraries so you can freeze without a C compiler/linker, but this does not work yet.
This commit is contained in:
parent
fa68b07526
commit
144fa678d2
10 changed files with 557 additions and 0 deletions
6
Mac/Tools/macfreeze/macgen_bin.py
Normal file
6
Mac/Tools/macfreeze/macgen_bin.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
"""macgen_bin - Generate application from shared libraries"""
|
||||
import EasyDialogs
|
||||
|
||||
def generate(output, module_dict):
|
||||
EasyDialogs.Message('Not yet implemented')
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue