]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Makefile: add suggestion about how to use the distutils config file to select mingw32...
authorZooko O'Whielacronx <zooko@zooko.com>
Fri, 14 Sep 2007 01:20:00 +0000 (18:20 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Fri, 14 Sep 2007 01:20:00 +0000 (18:20 -0700)
Makefile

index ea7e2a25514de92cc71ac9f07e02e917e4a27506..0c47ea95ff9f80b63075c77817f5dc77c03b8504 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,19 @@
 
 # this Makefile requires GNU make
 
+# If you get an error message like the following:
+
+# error: Setup script exited with error: Python was built with version 7.1 of Visual Studio, and extensions need to be built with the same version of the compiler, but it isn't installed.
+
+# Then that probably means that you aren't using the the right
+# compiler.  In that case, try creating distutils configuration file
+# (as described in http://docs.python.org/inst/config-syntax.html ),
+# specifying which compiler to use.  For example, if you use either
+# the cygwin gcc compiler with mingw support, or the MINGW compiler,
+# then you can add the following lines to your .cfg file:
+# [build]
+# compiler=mingw32
+
 default: build
 
 BASE=$(shell pwd)