- 28 Jun, 2000 5 commits
-
-
Greg Ward authored
methods (but not 'link_executable()', hmmm). Currently only used by BCPPCompiler; it's a dummy parameter for UnixCCompiler and MSVCCompiler. Also added 'bcpp' to compiler table used by 'new_compiler()'.
-
Greg Ward authored
-
Greg Ward authored
Two major points: * lots of overlap with MSVCCompiler; the common code really should be factored out into a base class, say WindowsCCompiler * it doesn't work: weird problem spawning the linker (see comment for details)
-
Greg Ward authored
command objects. Various formatting tweaks, typo fixes in comments.
-
Greg Ward authored
-
- 27 Jun, 2000 16 commits
-
-
Andrew M. Kuchling authored
Define a STRICT_SYSV_CURSES macro on SGI, Sun, and Tru64, to mark systems that don't support some features.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
getmouse(), ungetmouse(), and window.enclose(). wmouse_trafo() seems of marginal importance at the moment.
-
Greg Ward authored
-
Greg Ward authored
Ditched my old code that fixed relative paths in the Makefile -- didn't work, doomed to failure, etc.
-
Greg Ward authored
the 'implib_dir' attribute is back (only on NT, of course).
-
Greg Ward authored
Also supposedly made some change to where .lib files wind up under MSVC++, but I don't understand how to code is doing what Thomas says it's doing.
-
Greg Ward authored
-
Greg Ward authored
-
Greg Ward authored
Added 'check_lib()', which provides a subset of the functionality of 'check_func()' with a simpler interface and implementation.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
and I lack the time to track down the cause.
-
Andrew M. Kuchling authored
parsing the sample data once with 8-bit strings and once with Unicode.
-
Andrew M. Kuchling authored
This version still includes #ifdef hackery to compile with 1.5.2.
-
- 26 Jun, 2000 6 commits
-
-
Andrew M. Kuchling authored
curses.ascii.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Greg Stein authored
-
Guido van Rossum authored
-
Greg Stein authored
connections.
-
- 25 Jun, 2000 12 commits
-
-
Andrew M. Kuchling authored
-
Jeremy Hylton authored
-
Greg Ward authored
Kludged the extra-wide table that summarizes the manifest template language (works with LaTeX, but is an *evil* kludge and could well break LaTeX2HTML or similar...).
-
Greg Ward authored
doesn't blow up. We don't currently use the 'set_executables()' bureaucracy, although it would be nice to do so for consistency with UnixCCompiler.
-
Greg Ward authored
Ensure that 'extra_args' (whether compile or link args) is never None.
-
Greg Ward authored
to 'msvc_prelink_hack()', adding the parameters that it actually needs, and only calling it for MSVC compiler objects. Generally gave up on the idea of a general "hook" mechanism: deleted the empty 'precompile_hook()'.
-
Greg Ward authored
-
Greg Ward authored
-
Greg Ward authored
experimental and untested.) Call 'customize_compiler()' after getting CCompiler object.
-
Greg Ward authored
information about building Python extensions that we discovered in Python's makefile. Currently only needed on Unix, so does nothing on other systems.
-
Greg Ward authored
that a particular compiler system depends on. This consists of the 'set_executables()' and 'set_executable()' methods, and a few lines in the constructor that expect implementation classes to provide an 'executables' attribute, which we use to initialize several instance attributes. The default implementation is somewhat biased in favour of a Unix/DOS "command-line" view of the world, but it shouldn't be too hard to override this for operating systems with a more sophisticated way of representing programs-to-execute.
-
Greg Ward authored
meant playing along with the new "dictionary of executables" scheme added to CCompiler by adding the 'executables' class attribute, and changing all the compile/link/etc. methods to use the new attributes (which encapsulate both the program to run and its standard arguments, so it was a *little* bit more than just changing some names).
-
- 24 Jun, 2000 1 commit
-
-
Greg Ward authored
Unix shell-like syntax (eg. in Python's Makefile, for one thing -- now that I have this function, I'll probably allow quoted strings in config files too.
-