2002-09-11 17:36:02 -03:00
|
|
|
import sys, os
|
1997-08-13 22:45:33 -03:00
|
|
|
|
1998-03-20 13:37:24 -04:00
|
|
|
# Template used then the program is a GUI program
|
1998-03-04 14:12:39 -04:00
|
|
|
WINMAINTEMPLATE = """
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
int WINAPI WinMain(
|
|
|
|
HINSTANCE hInstance, // handle to current instance
|
|
|
|
HINSTANCE hPrevInstance, // handle to previous instance
|
|
|
|
LPSTR lpCmdLine, // pointer to command line
|
|
|
|
int nCmdShow // show state of window
|
|
|
|
)
|
|
|
|
{
|
1999-11-02 11:44:40 -04:00
|
|
|
extern int Py_FrozenMain(int, char **);
|
1998-03-20 13:37:24 -04:00
|
|
|
PyImport_FrozenModules = _PyImport_FrozenModules;
|
|
|
|
return Py_FrozenMain(__argc, __argv);
|
1998-03-04 14:12:39 -04:00
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
1998-03-20 13:37:24 -04:00
|
|
|
SERVICETEMPLATE = """
|
|
|
|
extern int PythonService_main(int, char **);
|
|
|
|
|
|
|
|
int main( int argc, char **argv)
|
|
|
|
{
|
|
|
|
PyImport_FrozenModules = _PyImport_FrozenModules;
|
|
|
|
return PythonService_main(argc, argv);
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
subsystem_details = {
|
|
|
|
# -s flag : (C entry point template), (is it __main__?), (is it a DLL?)
|
|
|
|
'console' : (None, 1, 0),
|
|
|
|
'windows' : (WINMAINTEMPLATE, 1, 0),
|
|
|
|
'service' : (SERVICETEMPLATE, 0, 0),
|
|
|
|
'com_dll' : ("", 0, 1),
|
|
|
|
}
|
|
|
|
|
|
|
|
def get_custom_entry_point(subsystem):
|
|
|
|
try:
|
|
|
|
return subsystem_details[subsystem][:2]
|
|
|
|
except KeyError:
|
|
|
|
raise ValueError, "The subsystem %s is not known" % subsystem
|
|
|
|
|
|
|
|
|
1997-08-13 22:45:33 -03:00
|
|
|
def makemakefile(outfp, vars, files, target):
|
|
|
|
save = sys.stdout
|
|
|
|
try:
|
|
|
|
sys.stdout = outfp
|
|
|
|
realwork(vars, files, target)
|
|
|
|
finally:
|
|
|
|
sys.stdout = save
|
|
|
|
|
1998-03-20 13:37:24 -04:00
|
|
|
def realwork(vars, moddefns, target):
|
2004-02-12 13:35:32 -04:00
|
|
|
version_suffix = "%r%r" % sys.version_info[:2]
|
1998-08-25 11:06:55 -03:00
|
|
|
print "# Makefile for Microsoft Visual C++ generated by freeze.py script"
|
1997-08-13 22:45:33 -03:00
|
|
|
print
|
1998-03-07 01:10:00 -04:00
|
|
|
print 'target = %s' % target
|
1999-06-21 19:36:53 -03:00
|
|
|
print 'pythonhome = %s' % vars['prefix']
|
1998-08-25 11:06:55 -03:00
|
|
|
print
|
|
|
|
print 'DEBUG=0 # Set to 1 to use the _d versions of Python.'
|
|
|
|
print '!IF $(DEBUG)'
|
|
|
|
print 'debug_suffix=_d'
|
|
|
|
print 'c_debug=/Zi /Od /DDEBUG /D_DEBUG'
|
|
|
|
print 'l_debug=/DEBUG'
|
|
|
|
print 'temp_dir=Build\\Debug'
|
|
|
|
print '!ELSE'
|
|
|
|
print 'debug_suffix='
|
|
|
|
print 'c_debug=/Ox'
|
|
|
|
print 'l_debug='
|
|
|
|
print 'temp_dir=Build\\Release'
|
|
|
|
print '!ENDIF'
|
|
|
|
print
|
|
|
|
|
|
|
|
print '# The following line assumes you have built Python using the standard instructions'
|
|
|
|
print '# Otherwise fix the following line to point to the library.'
|
2000-07-13 12:45:17 -03:00
|
|
|
print 'pythonlib = "$(pythonhome)/pcbuild/python%s$(debug_suffix).lib"' % version_suffix
|
1998-08-25 11:06:55 -03:00
|
|
|
print
|
1998-03-20 13:37:24 -04:00
|
|
|
|
|
|
|
# We only ever write one "entry point" symbol - either
|
|
|
|
# "main" or "WinMain". Therefore, there is no need to
|
|
|
|
# pass a subsystem switch to the linker as it works it
|
|
|
|
# out all by itself. However, the subsystem _does_ determine
|
|
|
|
# the file extension and additional linker flags.
|
|
|
|
target_link_flags = ""
|
|
|
|
target_ext = ".exe"
|
|
|
|
if subsystem_details[vars['subsystem']][2]:
|
|
|
|
target_link_flags = "-dll"
|
|
|
|
target_ext = ".dll"
|
|
|
|
|
1998-08-25 11:06:55 -03:00
|
|
|
|
2000-07-13 12:45:17 -03:00
|
|
|
print "# As the target uses Python%s.dll, we must use this compiler option!" % version_suffix
|
1998-08-25 11:06:55 -03:00
|
|
|
print "cdl = /MD"
|
|
|
|
print
|
|
|
|
print "all: $(target)$(debug_suffix)%s" % (target_ext)
|
1997-08-13 22:45:33 -03:00
|
|
|
print
|
1998-08-25 11:06:55 -03:00
|
|
|
|
|
|
|
print '$(temp_dir):'
|
|
|
|
print ' if not exist $(temp_dir)\. mkdir $(temp_dir)'
|
1997-08-13 22:45:33 -03:00
|
|
|
print
|
|
|
|
|
|
|
|
objects = []
|
1998-08-25 11:06:55 -03:00
|
|
|
libs = ["shell32.lib", "comdlg32.lib", "wsock32.lib", "user32.lib", "oleaut32.lib"]
|
1998-03-20 13:37:24 -04:00
|
|
|
for moddefn in moddefns:
|
|
|
|
print "# Module", moddefn.name
|
|
|
|
for file in moddefn.sourceFiles:
|
|
|
|
base = os.path.basename(file)
|
|
|
|
base, ext = os.path.splitext(base)
|
|
|
|
objects.append(base + ".obj")
|
1998-08-25 11:06:55 -03:00
|
|
|
print '$(temp_dir)\%s.obj: "%s"' % (base, file)
|
|
|
|
print "\t@$(CC) -c -nologo /Fo$* $(cdl) $(c_debug) /D BUILD_FREEZE",
|
1999-06-21 19:36:53 -03:00
|
|
|
print '"-I$(pythonhome)/Include" "-I$(pythonhome)/PC" \\'
|
1998-03-20 13:37:24 -04:00
|
|
|
print "\t\t$(cflags) $(cdebug) $(cinclude) \\"
|
|
|
|
extra = moddefn.GetCompilerOptions()
|
|
|
|
if extra:
|
2002-09-11 17:36:02 -03:00
|
|
|
print "\t\t%s \\" % (' '.join(extra),)
|
1998-03-20 13:37:24 -04:00
|
|
|
print '\t\t"%s"' % file
|
|
|
|
print
|
|
|
|
|
|
|
|
# Add .lib files this module needs
|
|
|
|
for modlib in moddefn.GetLinkerLibs():
|
|
|
|
if modlib not in libs:
|
|
|
|
libs.append(modlib)
|
|
|
|
|
|
|
|
print "ADDN_LINK_FILES=",
|
|
|
|
for addn in vars['addn_link']: print '"%s"' % (addn),
|
|
|
|
print ; print
|
|
|
|
|
|
|
|
print "OBJS=",
|
1998-08-25 11:06:55 -03:00
|
|
|
for obj in objects: print '"$(temp_dir)\%s"' % (obj),
|
1998-03-20 13:37:24 -04:00
|
|
|
print ; print
|
|
|
|
|
|
|
|
print "LIBS=",
|
|
|
|
for lib in libs: print '"%s"' % (lib),
|
|
|
|
print ; print
|
|
|
|
|
1998-08-25 11:06:55 -03:00
|
|
|
print "$(target)$(debug_suffix)%s: $(temp_dir) $(OBJS)" % (target_ext)
|
Merged revisions 85768-85771,85773,85777,85823,85825 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85768 | georg.brandl | 2010-10-21 14:59:14 +0200 (Do, 21 Okt 2010) | 1 line
#9919: fix off-by-one error in lineno command in Misc/gdbinit; also add newline to its output.
........
r85769 | georg.brandl | 2010-10-21 15:01:23 +0200 (Do, 21 Okt 2010) | 1 line
Fix missing import.
........
r85770 | georg.brandl | 2010-10-21 15:29:10 +0200 (Do, 21 Okt 2010) | 1 line
#3077: fix h2py substitution of character literals.
........
r85771 | georg.brandl | 2010-10-21 15:34:51 +0200 (Do, 21 Okt 2010) | 1 line
#1203650: allow larger list of files in windows makefile for freeze.
........
r85773 | georg.brandl | 2010-10-21 15:45:52 +0200 (Do, 21 Okt 2010) | 1 line
#4829: better error message for invalid file mode
........
r85777 | georg.brandl | 2010-10-21 17:44:51 +0200 (Do, 21 Okt 2010) | 1 line
Add .hgeol file for the Mercurial EOL extension.
........
r85823 | georg.brandl | 2010-10-24 16:32:45 +0200 (So, 24 Okt 2010) | 1 line
Fix style.
........
r85825 | georg.brandl | 2010-10-24 17:16:02 +0200 (So, 24 Okt 2010) | 1 line
Add documentation about the default warnings filters.
........
2010-11-26 04:10:41 -04:00
|
|
|
print "\tlink -out:$(target)$(debug_suffix)%s %s" % (target_ext, target_link_flags), "@<<"
|
|
|
|
print "\t$(OBJS)"
|
|
|
|
print "\t$(LIBS)"
|
|
|
|
print "\t$(ADDN_LINK_FILES)"
|
|
|
|
print "\t$(pythonlib) $(lcustom) $(l_debug)"
|
1998-08-25 11:06:55 -03:00
|
|
|
print "\t$(resources)"
|
Merged revisions 85768-85771,85773,85777,85823,85825 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85768 | georg.brandl | 2010-10-21 14:59:14 +0200 (Do, 21 Okt 2010) | 1 line
#9919: fix off-by-one error in lineno command in Misc/gdbinit; also add newline to its output.
........
r85769 | georg.brandl | 2010-10-21 15:01:23 +0200 (Do, 21 Okt 2010) | 1 line
Fix missing import.
........
r85770 | georg.brandl | 2010-10-21 15:29:10 +0200 (Do, 21 Okt 2010) | 1 line
#3077: fix h2py substitution of character literals.
........
r85771 | georg.brandl | 2010-10-21 15:34:51 +0200 (Do, 21 Okt 2010) | 1 line
#1203650: allow larger list of files in windows makefile for freeze.
........
r85773 | georg.brandl | 2010-10-21 15:45:52 +0200 (Do, 21 Okt 2010) | 1 line
#4829: better error message for invalid file mode
........
r85777 | georg.brandl | 2010-10-21 17:44:51 +0200 (Do, 21 Okt 2010) | 1 line
Add .hgeol file for the Mercurial EOL extension.
........
r85823 | georg.brandl | 2010-10-24 16:32:45 +0200 (So, 24 Okt 2010) | 1 line
Fix style.
........
r85825 | georg.brandl | 2010-10-24 17:16:02 +0200 (So, 24 Okt 2010) | 1 line
Add documentation about the default warnings filters.
........
2010-11-26 04:10:41 -04:00
|
|
|
print "<<"
|
1998-03-07 01:10:00 -04:00
|
|
|
print
|
|
|
|
print "clean:"
|
1998-03-20 13:37:24 -04:00
|
|
|
print "\t-rm -f *.obj"
|
|
|
|
print "\t-rm -f $(target).exe"
|