blob: 15ddbe65001f48b48bf842fb0e212687966a9dcf [file] [log] [blame]
Benjamin Peterson90f5ba52010-03-11 22:53:45 +00001#! /usr/bin/env python3
Guido van Rossumdbaf3321994-10-03 10:25:54 +00002
Guido van Rossum96c4dd91996-08-26 05:14:20 +00003"""Freeze a Python script into a binary.
Guido van Rossumdbaf3321994-10-03 10:25:54 +00004
Guido van Rossum1e074031998-03-05 04:05:38 +00005usage: freeze [options...] script [module]...
Guido van Rossum00ff4331994-10-03 16:33:08 +00006
Guido van Rossum96c4dd91996-08-26 05:14:20 +00007Options:
Guido van Rossum9a6e8551997-08-10 16:47:17 +00008-p prefix: This is the prefix used when you ran ``make install''
Guido van Rossum96c4dd91996-08-26 05:14:20 +00009 in the Python build directory.
Guido van Rossumd8336c21994-10-05 16:13:01 +000010 (If you never ran this, freeze won't work.)
Guido van Rossum96c4dd91996-08-26 05:14:20 +000011 The default is whatever sys.prefix evaluates to.
Guido van Rossum0b4b8a21997-08-10 16:56:48 +000012 It can also be the top directory of the Python source
13 tree; then -P must point to the build tree.
Guido van Rossumd8336c21994-10-05 16:13:01 +000014
Guido van Rossum150316e1995-08-08 14:21:07 +000015-P exec_prefix: Like -p but this is the 'exec_prefix', used to
Guido van Rossum0b4b8a21997-08-10 16:56:48 +000016 install objects etc. The default is whatever sys.exec_prefix
17 evaluates to, or the -p argument if given.
18 If -p points to the Python source tree, -P must point
19 to the build tree, if different.
Guido van Rossum150316e1995-08-08 14:21:07 +000020
Guido van Rossumd8336c21994-10-05 16:13:01 +000021-e extension: A directory containing additional .o files that
22 may be used to resolve modules. This directory
23 should also have a Setup file describing the .o files.
Guido van Rossumbaf06031998-08-25 14:06:55 +000024 On Windows, the name of a .INI file describing one
25 or more extensions is passed.
Guido van Rossumd8336c21994-10-05 16:13:01 +000026 More than one -e option may be given.
27
Guido van Rossum96c4dd91996-08-26 05:14:20 +000028-o dir: Directory where the output files are created; default '.'.
29
Guido van Rossum75dc4961998-03-05 03:42:00 +000030-m: Additional arguments are module names instead of filenames.
31
Guido van Rossume35c6011998-05-18 20:25:54 +000032-a package=dir: Additional directories to be added to the package's
33 __path__. Used to simulate directories added by the
34 package at runtime (eg, by OpenGL and win32com).
35 More than one -a option may be given for each package.
36
Guido van Rossum78fc3631998-03-20 17:37:24 +000037-l file: Pass the file to the linker (windows only)
38
Guido van Rossum75dc4961998-03-05 03:42:00 +000039-d: Debugging mode for the module finder.
40
41-q: Make the module finder totally quiet.
42
Guido van Rossum9a6e8551997-08-10 16:47:17 +000043-h: Print this help message.
44
Guido van Rossum03f7f082001-10-18 19:15:32 +000045-x module Exclude the specified module. It will still be imported
46 by the frozen binary if it exists on the host system.
47
48-X module Like -x, except the module can never be imported by
49 the frozen binary.
50
51-E: Freeze will fail if any modules can't be found (that
52 were not excluded using -x or -X).
Guido van Rossum78fc3631998-03-20 17:37:24 +000053
Guido van Rossumbaf06031998-08-25 14:06:55 +000054-i filename: Include a file with additional command line options. Used
55 to prevent command lines growing beyond the capabilities of
56 the shell/OS. All arguments specified in filename
57 are read and the -i option replaced with the parsed
58 params (note - quoting args in this file is NOT supported)
59
Tim Peters182b5ac2004-07-18 06:16:08 +000060-s subsystem: Specify the subsystem (For Windows only.);
Guido van Rossum78fc3631998-03-20 17:37:24 +000061 'console' (default), 'windows', 'service' or 'com_dll'
Tim Peters182b5ac2004-07-18 06:16:08 +000062
Guido van Rossumbaf06031998-08-25 14:06:55 +000063-w: Toggle Windows (NT or 95) behavior.
Thomas Wouters7e474022000-07-16 12:04:32 +000064 (For debugging only -- on a win32 platform, win32 behavior
Guido van Rossumbaf06031998-08-25 14:06:55 +000065 is automatic.)
Guido van Rossum58a59481997-08-14 01:45:33 +000066
Guido van Rossum6b767ac2001-03-20 20:43:34 +000067-r prefix=f: Replace path prefix.
Tim Peters182b5ac2004-07-18 06:16:08 +000068 Replace prefix with f in the source path references
Guido van Rossum6b767ac2001-03-20 20:43:34 +000069 contained in the resulting binary.
70
Guido van Rossum96c4dd91996-08-26 05:14:20 +000071Arguments:
72
Guido van Rossum1e074031998-03-05 04:05:38 +000073script: The Python script to be executed by the resulting binary.
Guido van Rossumd8336c21994-10-05 16:13:01 +000074
75module ...: Additional Python modules (referenced by pathname)
76 that will be included in the resulting binary. These
Guido van Rossum75dc4961998-03-05 03:42:00 +000077 may be .py or .pyc files. If -m is specified, these are
78 module names that are search in the path instead.
Guido van Rossum150316e1995-08-08 14:21:07 +000079
80NOTES:
81
82In order to use freeze successfully, you must have built Python and
Guido van Rossumd4cc04c1996-06-17 17:49:13 +000083installed it ("make install").
Guido van Rossum150316e1995-08-08 14:21:07 +000084
Guido van Rossum96c4dd91996-08-26 05:14:20 +000085The script should not use modules provided only as shared libraries;
86if it does, the resulting binary is not self-contained.
Guido van Rossumd8336c21994-10-05 16:13:01 +000087"""
Guido van Rossum00ff4331994-10-03 16:33:08 +000088
89
Guido van Rossum00ff4331994-10-03 16:33:08 +000090# Import standard modules
91
Gustavo Niemeyer7b4abbb2003-05-26 23:52:30 +000092import modulefinder
Guido van Rossumdbaf3321994-10-03 10:25:54 +000093import getopt
Guido van Rossum00ff4331994-10-03 16:33:08 +000094import os
Guido van Rossum00ff4331994-10-03 16:33:08 +000095import sys
Guido van Rossumdbaf3321994-10-03 10:25:54 +000096
Guido van Rossumdbaf3321994-10-03 10:25:54 +000097
Guido van Rossum00ff4331994-10-03 16:33:08 +000098# Import the freeze-private modules
99
Guido van Rossumd8336c21994-10-05 16:13:01 +0000100import checkextensions
Guido van Rossum00ff4331994-10-03 16:33:08 +0000101import makeconfig
102import makefreeze
103import makemakefile
104import parsesetup
Guido van Rossumbaf06031998-08-25 14:06:55 +0000105import bkfile
Guido van Rossum00ff4331994-10-03 16:33:08 +0000106
Guido van Rossum00ff4331994-10-03 16:33:08 +0000107
108# Main program
109
Guido van Rossumdbaf3321994-10-03 10:25:54 +0000110def main():
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000111 # overridable context
112 prefix = None # settable with -p option
113 exec_prefix = None # settable with -P option
114 extensions = []
Guido van Rossum78fc3631998-03-20 17:37:24 +0000115 exclude = [] # settable with -x option
Guido van Rossume35c6011998-05-18 20:25:54 +0000116 addn_link = [] # settable with -l, but only honored under Windows.
Guido van Rossum1e074031998-03-05 04:05:38 +0000117 path = sys.path[:]
Guido van Rossum75dc4961998-03-05 03:42:00 +0000118 modargs = 0
119 debug = 1
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000120 odir = ''
Guido van Rossum58a59481997-08-14 01:45:33 +0000121 win = sys.platform[:3] == 'win'
Guido van Rossum6b767ac2001-03-20 20:43:34 +0000122 replace_paths = [] # settable with -r option
Guido van Rossum03f7f082001-10-18 19:15:32 +0000123 error_if_any_missing = 0
Guido van Rossum00ff4331994-10-03 16:33:08 +0000124
Guido van Rossum78fc3631998-03-20 17:37:24 +0000125 # default the exclude list for each platform
Guido van Rossumbaf06031998-08-25 14:06:55 +0000126 if win: exclude = exclude + [
Guido van Rossum03f7f082001-10-18 19:15:32 +0000127 'dos', 'dospath', 'mac', 'macpath', 'macfs', 'MACFS', 'posix',
Jesus Ceab1762032012-10-05 02:27:40 +0200128 'ce',
Guido van Rossum03f7f082001-10-18 19:15:32 +0000129 ]
130
131 fail_import = exclude[:]
Guido van Rossum78fc3631998-03-20 17:37:24 +0000132
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000133 # output files
134 frozen_c = 'frozen.c'
135 config_c = 'config.c'
136 target = 'a.out' # normally derived from script name
137 makefile = 'Makefile'
Guido van Rossum58a59481997-08-14 01:45:33 +0000138 subsystem = 'console'
Guido van Rossum00ff4331994-10-03 16:33:08 +0000139
Guido van Rossum03f7f082001-10-18 19:15:32 +0000140 # parse command line by first replacing any "-i" options with the
141 # file contents.
Guido van Rossumbaf06031998-08-25 14:06:55 +0000142 pos = 1
Guido van Rossum03f7f082001-10-18 19:15:32 +0000143 while pos < len(sys.argv)-1:
144 # last option can not be "-i", so this ensures "pos+1" is in range!
Guido van Rossumbaf06031998-08-25 14:06:55 +0000145 if sys.argv[pos] == '-i':
146 try:
Walter Dörwaldaaab30e2002-09-11 20:36:02 +0000147 options = open(sys.argv[pos+1]).read().split()
Guido van Rossumb940e112007-01-10 16:19:56 +0000148 except IOError as why:
Guido van Rossum03f7f082001-10-18 19:15:32 +0000149 usage("File name '%s' specified with the -i option "
150 "can not be read - %s" % (sys.argv[pos+1], why) )
Guido van Rossumbaf06031998-08-25 14:06:55 +0000151 # Replace the '-i' and the filename with the read params.
152 sys.argv[pos:pos+2] = options
153 pos = pos + len(options) - 1 # Skip the name and the included args.
154 pos = pos + 1
155
156 # Now parse the command line with the extras inserted.
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000157 try:
Guido van Rossum03f7f082001-10-18 19:15:32 +0000158 opts, args = getopt.getopt(sys.argv[1:], 'r:a:dEe:hmo:p:P:qs:wX:x:l:')
Guido van Rossumb940e112007-01-10 16:19:56 +0000159 except getopt.error as msg:
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000160 usage('getopt error: ' + str(msg))
Guido van Rossum00ff4331994-10-03 16:33:08 +0000161
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000162 # proces option arguments
163 for o, a in opts:
164 if o == '-h':
Guido van Rossum96bf7e82007-02-09 23:27:01 +0000165 print(__doc__)
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000166 return
Guido van Rossum75dc4961998-03-05 03:42:00 +0000167 if o == '-d':
168 debug = debug + 1
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000169 if o == '-e':
170 extensions.append(a)
Guido van Rossum75dc4961998-03-05 03:42:00 +0000171 if o == '-m':
172 modargs = 1
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000173 if o == '-o':
174 odir = a
175 if o == '-p':
176 prefix = a
177 if o == '-P':
178 exec_prefix = a
Guido van Rossum75dc4961998-03-05 03:42:00 +0000179 if o == '-q':
180 debug = 0
Guido van Rossum58a59481997-08-14 01:45:33 +0000181 if o == '-w':
182 win = not win
183 if o == '-s':
184 if not win:
185 usage("-s subsystem option only on Windows")
186 subsystem = a
Guido van Rossum78fc3631998-03-20 17:37:24 +0000187 if o == '-x':
188 exclude.append(a)
Guido van Rossum03f7f082001-10-18 19:15:32 +0000189 if o == '-X':
190 exclude.append(a)
191 fail_import.append(a)
192 if o == '-E':
193 error_if_any_missing = 1
Guido van Rossum78fc3631998-03-20 17:37:24 +0000194 if o == '-l':
195 addn_link.append(a)
Guido van Rossume35c6011998-05-18 20:25:54 +0000196 if o == '-a':
Neal Norwitzd9108552006-03-17 08:00:19 +0000197 modulefinder.AddPackagePath(*a.split("=", 2))
Guido van Rossum6b767ac2001-03-20 20:43:34 +0000198 if o == '-r':
Walter Dörwaldaaab30e2002-09-11 20:36:02 +0000199 f,r = a.split("=", 2)
Guido van Rossum6b767ac2001-03-20 20:43:34 +0000200 replace_paths.append( (f,r) )
Guido van Rossumdbaf3321994-10-03 10:25:54 +0000201
Just van Rossume9e20a92003-03-08 19:50:38 +0000202 # modules that are imported by the Python runtime
203 implicits = []
Georg Brandl00639582010-08-02 22:25:16 +0000204 for module in ('site', 'warnings', 'encodings.utf_8', 'encodings.latin_1'):
Just van Rossume9e20a92003-03-08 19:50:38 +0000205 if module not in exclude:
206 implicits.append(module)
207
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000208 # default prefix and exec_prefix
209 if not exec_prefix:
210 if prefix:
211 exec_prefix = prefix
212 else:
213 exec_prefix = sys.exec_prefix
214 if not prefix:
215 prefix = sys.prefix
Guido van Rossum9a6e8551997-08-10 16:47:17 +0000216
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000217 # determine whether -p points to the Python source tree
Guido van Rossume0394251998-03-05 05:39:50 +0000218 ishome = os.path.exists(os.path.join(prefix, 'Python', 'ceval.c'))
Guido van Rossumdbaf3321994-10-03 10:25:54 +0000219
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000220 # locations derived from options
221 version = sys.version[:3]
Martin v. Löwisa7fcd922014-03-30 20:28:52 +0200222 flagged_version = version + sys.abiflags
Guido van Rossum5e32a771998-07-07 22:47:38 +0000223 if win:
224 extensions_c = 'frozen_extensions.c'
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000225 if ishome:
Guido van Rossum96bf7e82007-02-09 23:27:01 +0000226 print("(Using Python source directory)")
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000227 binlib = exec_prefix
228 incldir = os.path.join(prefix, 'Include')
Guido van Rossum590fc2c1998-06-12 14:09:03 +0000229 config_h_dir = exec_prefix
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000230 config_c_in = os.path.join(prefix, 'Modules', 'config.c.in')
Guido van Rossum58a59481997-08-14 01:45:33 +0000231 frozenmain_c = os.path.join(prefix, 'Python', 'frozenmain.c')
Gustavo Niemeyerffa5a502004-05-08 17:59:43 +0000232 makefile_in = os.path.join(exec_prefix, 'Makefile')
Guido van Rossume35c6011998-05-18 20:25:54 +0000233 if win:
234 frozendllmain_c = os.path.join(exec_prefix, 'Pc\\frozen_dllmain.c')
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000235 else:
236 binlib = os.path.join(exec_prefix,
Martin v. Löwisa7fcd922014-03-30 20:28:52 +0200237 'lib', 'python%s' % version,
238 'config-%s' % flagged_version)
239 incldir = os.path.join(prefix, 'include', 'python%s' % flagged_version)
Guido van Rossum590fc2c1998-06-12 14:09:03 +0000240 config_h_dir = os.path.join(exec_prefix, 'include',
Martin v. Löwisa7fcd922014-03-30 20:28:52 +0200241 'python%s' % flagged_version)
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000242 config_c_in = os.path.join(binlib, 'config.c.in')
243 frozenmain_c = os.path.join(binlib, 'frozenmain.c')
244 makefile_in = os.path.join(binlib, 'Makefile')
Guido van Rossum5e32a771998-07-07 22:47:38 +0000245 frozendllmain_c = os.path.join(binlib, 'frozen_dllmain.c')
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000246 supp_sources = []
247 defines = []
Guido van Rossum590fc2c1998-06-12 14:09:03 +0000248 includes = ['-I' + incldir, '-I' + config_h_dir]
Guido van Rossumd8336c21994-10-05 16:13:01 +0000249
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000250 # sanity check of directories and files
Guido van Rossumbaf06031998-08-25 14:06:55 +0000251 check_dirs = [prefix, exec_prefix, binlib, incldir]
Guido van Rossum03f7f082001-10-18 19:15:32 +0000252 if not win:
253 # These are not directories on Windows.
254 check_dirs = check_dirs + extensions
Guido van Rossumbaf06031998-08-25 14:06:55 +0000255 for dir in check_dirs:
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000256 if not os.path.exists(dir):
257 usage('needed directory %s not found' % dir)
258 if not os.path.isdir(dir):
259 usage('%s: not a directory' % dir)
Guido van Rossum58a59481997-08-14 01:45:33 +0000260 if win:
Guido van Rossumbaf06031998-08-25 14:06:55 +0000261 files = supp_sources + extensions # extensions are files on Windows.
Guido van Rossum58a59481997-08-14 01:45:33 +0000262 else:
263 files = [config_c_in, makefile_in] + supp_sources
264 for file in supp_sources:
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000265 if not os.path.exists(file):
266 usage('needed file %s not found' % file)
267 if not os.path.isfile(file):
268 usage('%s: not a plain file' % file)
Guido van Rossum58a59481997-08-14 01:45:33 +0000269 if not win:
270 for dir in extensions:
271 setup = os.path.join(dir, 'Setup')
272 if not os.path.exists(setup):
273 usage('needed file %s not found' % setup)
274 if not os.path.isfile(setup):
275 usage('%s: not a plain file' % setup)
Guido van Rossum00ff4331994-10-03 16:33:08 +0000276
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000277 # check that enough arguments are passed
278 if not args:
279 usage('at least one filename argument required')
Guido van Rossumd4cc04c1996-06-17 17:49:13 +0000280
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000281 # check that file arguments exist
282 for arg in args:
Guido van Rossum1e074031998-03-05 04:05:38 +0000283 if arg == '-m':
284 break
Guido van Rossum78fc3631998-03-20 17:37:24 +0000285 # if user specified -m on the command line before _any_
286 # file names, then nothing should be checked (as the
287 # very first file should be a module name)
288 if modargs:
289 break
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000290 if not os.path.exists(arg):
291 usage('argument %s not found' % arg)
292 if not os.path.isfile(arg):
293 usage('%s: not a plain file' % arg)
Guido van Rossum00ff4331994-10-03 16:33:08 +0000294
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000295 # process non-option arguments
296 scriptfile = args[0]
297 modules = args[1:]
Guido van Rossum00ff4331994-10-03 16:33:08 +0000298
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000299 # derive target name from script name
300 base = os.path.basename(scriptfile)
301 base, ext = os.path.splitext(base)
302 if base:
303 if base != scriptfile:
304 target = base
305 else:
306 target = base + '.bin'
Guido van Rossum00ff4331994-10-03 16:33:08 +0000307
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000308 # handle -o option
309 base_frozen_c = frozen_c
310 base_config_c = config_c
311 base_target = target
312 if odir and not os.path.isdir(odir):
313 try:
314 os.mkdir(odir)
Guido van Rossum96bf7e82007-02-09 23:27:01 +0000315 print("Created output directory", odir)
Andrew Svetlov8b33dd82012-12-24 19:58:48 +0200316 except OSError as msg:
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000317 usage('%s: mkdir failed (%s)' % (odir, str(msg)))
Guido van Rossumbaf06031998-08-25 14:06:55 +0000318 base = ''
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000319 if odir:
Guido van Rossumbaf06031998-08-25 14:06:55 +0000320 base = os.path.join(odir, '')
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000321 frozen_c = os.path.join(odir, frozen_c)
322 config_c = os.path.join(odir, config_c)
323 target = os.path.join(odir, target)
324 makefile = os.path.join(odir, makefile)
Guido van Rossume35c6011998-05-18 20:25:54 +0000325 if win: extensions_c = os.path.join(odir, extensions_c)
Guido van Rossum00ff4331994-10-03 16:33:08 +0000326
Guido van Rossum78fc3631998-03-20 17:37:24 +0000327 # Handle special entry point requirements
328 # (on Windows, some frozen programs do not use __main__, but
329 # import the module directly. Eg, DLLs, Services, etc
330 custom_entry_point = None # Currently only used on Windows
331 python_entry_is_main = 1 # Is the entry point called __main__?
332 # handle -s option on Windows
333 if win:
334 import winmakemakefile
335 try:
Guido van Rossume35c6011998-05-18 20:25:54 +0000336 custom_entry_point, python_entry_is_main = \
337 winmakemakefile.get_custom_entry_point(subsystem)
Guido van Rossumb940e112007-01-10 16:19:56 +0000338 except ValueError as why:
Guido van Rossum78fc3631998-03-20 17:37:24 +0000339 usage(why)
Tim Peters182b5ac2004-07-18 06:16:08 +0000340
Guido van Rossum78fc3631998-03-20 17:37:24 +0000341
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000342 # Actual work starts here...
Guido van Rossumd8336c21994-10-05 16:13:01 +0000343
Guido van Rossum75dc4961998-03-05 03:42:00 +0000344 # collect all modules of the program
Guido van Rossum1e074031998-03-05 04:05:38 +0000345 dir = os.path.dirname(scriptfile)
346 path[0] = dir
Guido van Rossum6b767ac2001-03-20 20:43:34 +0000347 mf = modulefinder.ModuleFinder(path, debug, exclude, replace_paths)
Tim Peters182b5ac2004-07-18 06:16:08 +0000348
Guido van Rossum78fc3631998-03-20 17:37:24 +0000349 if win and subsystem=='service':
350 # If a Windows service, then add the "built-in" module.
351 mod = mf.add_module("servicemanager")
352 mod.__file__="dummy.pyd" # really built-in to the resulting EXE
353
Guido van Rossum75dc4961998-03-05 03:42:00 +0000354 for mod in implicits:
355 mf.import_hook(mod)
356 for mod in modules:
357 if mod == '-m':
358 modargs = 1
359 continue
360 if modargs:
361 if mod[-2:] == '.*':
362 mf.import_hook(mod[:-2], None, ["*"])
363 else:
364 mf.import_hook(mod)
365 else:
366 mf.load_file(mod)
Guido van Rossum78fc3631998-03-20 17:37:24 +0000367
Martin v. Löwisc00d39e2014-03-30 21:07:25 +0200368 # Alias "importlib._bootstrap" to "_frozen_importlib" so that the
369 # import machinery can bootstrap.
370 mf.modules["_frozen_importlib"] = mf.modules["importlib._bootstrap"]
371
Guido van Rossum78fc3631998-03-20 17:37:24 +0000372 # Add the main script as either __main__, or the actual module name.
373 if python_entry_is_main:
374 mf.run_script(scriptfile)
375 else:
Guido van Rossum4b1235c2000-05-06 03:18:08 +0000376 mf.load_file(scriptfile)
Guido van Rossum78fc3631998-03-20 17:37:24 +0000377
Guido van Rossum75dc4961998-03-05 03:42:00 +0000378 if debug > 0:
379 mf.report()
Guido van Rossum96bf7e82007-02-09 23:27:01 +0000380 print()
Guido van Rossum75dc4961998-03-05 03:42:00 +0000381 dict = mf.modules
Guido van Rossumdbaf3321994-10-03 10:25:54 +0000382
Guido van Rossum03f7f082001-10-18 19:15:32 +0000383 if error_if_any_missing:
384 missing = mf.any_missing()
385 if missing:
386 sys.exit("There are some missing modules: %r" % missing)
387
Guido van Rossum75dc4961998-03-05 03:42:00 +0000388 # generate output for frozen modules
Guido van Rossum03f7f082001-10-18 19:15:32 +0000389 files = makefreeze.makefreeze(base, dict, debug, custom_entry_point,
390 fail_import)
Guido van Rossumdbaf3321994-10-03 10:25:54 +0000391
Guido van Rossuma0e18351998-03-07 04:51:03 +0000392 # look for unfrozen modules (builtin and of unknown origin)
393 builtins = []
394 unknown = []
Guido van Rossum53970392007-06-12 00:28:30 +0000395 mods = sorted(dict.keys())
Guido van Rossuma0e18351998-03-07 04:51:03 +0000396 for mod in mods:
397 if dict[mod].__code__:
398 continue
399 if not dict[mod].__file__:
400 builtins.append(mod)
401 else:
402 unknown.append(mod)
403
404 # search for unknown modules in extensions directories (not on Windows)
405 addfiles = []
Guido van Rossume35c6011998-05-18 20:25:54 +0000406 frozen_extensions = [] # Windows list of modules.
Guido van Rossuma937afd1998-04-23 14:39:24 +0000407 if unknown or (not win and builtins):
Guido van Rossum78fc3631998-03-20 17:37:24 +0000408 if not win:
409 addfiles, addmods = \
Guido van Rossuma937afd1998-04-23 14:39:24 +0000410 checkextensions.checkextensions(unknown+builtins,
411 extensions)
Guido van Rossum78fc3631998-03-20 17:37:24 +0000412 for mod in addmods:
Guido van Rossuma937afd1998-04-23 14:39:24 +0000413 if mod in unknown:
414 unknown.remove(mod)
415 builtins.append(mod)
Guido van Rossum78fc3631998-03-20 17:37:24 +0000416 else:
417 # Do the windows thang...
418 import checkextensions_win32
Tim Peters182b5ac2004-07-18 06:16:08 +0000419 # Get a list of CExtension instances, each describing a module
Guido van Rossum78fc3631998-03-20 17:37:24 +0000420 # (including its source files)
Guido van Rossume35c6011998-05-18 20:25:54 +0000421 frozen_extensions = checkextensions_win32.checkextensions(
Guido van Rossumf67c2382000-07-13 15:45:17 +0000422 unknown, extensions, prefix)
Guido van Rossume35c6011998-05-18 20:25:54 +0000423 for mod in frozen_extensions:
Guido van Rossum78fc3631998-03-20 17:37:24 +0000424 unknown.remove(mod.name)
Guido van Rossuma0e18351998-03-07 04:51:03 +0000425
426 # report unknown modules
427 if unknown:
428 sys.stderr.write('Warning: unknown modules remain: %s\n' %
Walter Dörwaldaaab30e2002-09-11 20:36:02 +0000429 ' '.join(unknown))
Guido van Rossuma0e18351998-03-07 04:51:03 +0000430
Guido van Rossum75dc4961998-03-05 03:42:00 +0000431 # windows gets different treatment
Guido van Rossum58a59481997-08-14 01:45:33 +0000432 if win:
433 # Taking a shortcut here...
Guido van Rossume35c6011998-05-18 20:25:54 +0000434 import winmakemakefile, checkextensions_win32
435 checkextensions_win32.write_extension_table(extensions_c,
436 frozen_extensions)
437 # Create a module definition for the bootstrap C code.
438 xtras = [frozenmain_c, os.path.basename(frozen_c),
Guido van Rossum7039f501999-03-12 22:07:05 +0000439 frozendllmain_c, os.path.basename(extensions_c)] + files
Guido van Rossume35c6011998-05-18 20:25:54 +0000440 maindefn = checkextensions_win32.CExtension( '__main__', xtras )
441 frozen_extensions.append( maindefn )
Serhiy Storchaka53c3fb12015-03-20 09:21:59 +0200442 with open(makefile, 'w') as outfp:
Guido van Rossum58a59481997-08-14 01:45:33 +0000443 winmakemakefile.makemakefile(outfp,
444 locals(),
Guido van Rossume35c6011998-05-18 20:25:54 +0000445 frozen_extensions,
Guido van Rossum31d53ed1998-03-07 04:08:04 +0000446 os.path.basename(target))
Guido van Rossum58a59481997-08-14 01:45:33 +0000447 return
448
Guido van Rossum75dc4961998-03-05 03:42:00 +0000449 # generate config.c and Makefile
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000450 builtins.sort()
Serhiy Storchaka53c3fb12015-03-20 09:21:59 +0200451 with open(config_c_in) as infp, bkfile.open(config_c, 'w') as outfp:
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000452 makeconfig.makeconfig(infp, outfp, builtins)
Guido van Rossumdbaf3321994-10-03 10:25:54 +0000453
Neil Schemenauer89e90d62001-06-02 06:16:02 +0000454 cflags = ['$(OPT)']
455 cppflags = defines + includes
Martin v. Löwisa7fcd922014-03-30 20:28:52 +0200456 libs = [os.path.join(binlib, '$(LDLIBRARY)')]
Guido van Rossum00ff4331994-10-03 16:33:08 +0000457
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000458 somevars = {}
Guido van Rossum345df171997-11-22 22:10:01 +0000459 if os.path.exists(makefile_in):
460 makevars = parsesetup.getmakevars(makefile_in)
Georg Brandlbf82e372008-05-16 17:02:34 +0000461 for key in makevars:
Gustavo Niemeyerffa5a502004-05-08 17:59:43 +0000462 somevars[key] = makevars[key]
Guido van Rossum00ff4331994-10-03 16:33:08 +0000463
Walter Dörwaldaaab30e2002-09-11 20:36:02 +0000464 somevars['CFLAGS'] = ' '.join(cflags) # override
465 somevars['CPPFLAGS'] = ' '.join(cppflags) # override
Marc-André Lemburg64b4f272002-04-04 16:15:41 +0000466 files = [base_config_c, base_frozen_c] + \
Guido van Rossumbaf06031998-08-25 14:06:55 +0000467 files + supp_sources + addfiles + libs + \
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000468 ['$(MODLIBS)', '$(LIBS)', '$(SYSLIBS)']
Guido van Rossum00ff4331994-10-03 16:33:08 +0000469
Serhiy Storchaka53c3fb12015-03-20 09:21:59 +0200470 with bkfile.open(makefile, 'w') as outfp:
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000471 makemakefile.makemakefile(outfp, somevars, files, base_target)
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000472
473 # Done!
474
475 if odir:
Guido van Rossum96bf7e82007-02-09 23:27:01 +0000476 print('Now run "make" in', odir, end=' ')
477 print('to build the target:', base_target)
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000478 else:
Guido van Rossum96bf7e82007-02-09 23:27:01 +0000479 print('Now run "make" to build the target:', base_target)
Guido van Rossum00ff4331994-10-03 16:33:08 +0000480
Guido van Rossumd8336c21994-10-05 16:13:01 +0000481
482# Print usage message and exit
483
Guido van Rossum9a6e8551997-08-10 16:47:17 +0000484def usage(msg):
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000485 sys.stdout = sys.stderr
Guido van Rossum96bf7e82007-02-09 23:27:01 +0000486 print("Error:", msg)
487 print("Use ``%s -h'' for help" % sys.argv[0])
Guido van Rossum0b4b8a21997-08-10 16:56:48 +0000488 sys.exit(2)
Guido van Rossumd8336c21994-10-05 16:13:01 +0000489
490
Guido van Rossumdbaf3321994-10-03 10:25:54 +0000491main()