blob: 9f4c432d90e77facc2fd74b50aade770ceef9cb0 [file] [log] [blame]
Greg Wardfe9b8182000-06-28 01:20:35 +00001"""distutils.bcppcompiler
2
3Contains BorlandCCompiler, an implementation of the abstract CCompiler class
4for the Borland C++ compiler.
5"""
6
7# This implementation by Lyle Johnson, based on the original msvccompiler.py
8# module and using the directions originally published by Gordon Williams.
9
10# XXX looks like there's a LOT of overlap between these two classes:
11# someone should sit down and factor out the common code as
12# WindowsCCompiler! --GPW
13
Tarek Ziadé88e2c5d2009-12-21 01:49:00 +000014
Tarek Ziadé36797272010-07-22 12:50:05 +000015import os
16from distutils.errors import \
17 DistutilsExecError, DistutilsPlatformError, \
18 CompileError, LibError, LinkError, UnknownFileError
19from distutils.ccompiler import \
20 CCompiler, gen_preprocess_options, gen_lib_options
Greg Wardc58c5172000-08-02 01:03:23 +000021from distutils.file_util import write_file
Andrew M. Kuchlingdb7aed52001-08-16 20:17:41 +000022from distutils.dep_util import newer
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +000023from distutils import log
Greg Wardfe9b8182000-06-28 01:20:35 +000024
25class BCPPCompiler(CCompiler) :
26 """Concrete class that implements an interface to the Borland C/C++
27 compiler, as defined by the CCompiler abstract class.
28 """
29
30 compiler_type = 'bcpp'
31
32 # Just set this so CCompiler's constructor doesn't barf. We currently
33 # don't use the 'set_executables()' bureaucracy provided by CCompiler,
34 # as it really isn't necessary for this sort of single-compiler class.
35 # Would be nice to have a consistent interface with UnixCCompiler,
36 # though, so it's worth thinking about.
37 executables = {}
38
39 # Private class data (need to distinguish C from C++ source for compiler)
40 _c_extensions = ['.c']
41 _cpp_extensions = ['.cc', '.cpp', '.cxx']
42
43 # Needed for the filename generation methods provided by the
44 # base class, CCompiler.
45 src_extensions = _c_extensions + _cpp_extensions
46 obj_extension = '.obj'
47 static_lib_extension = '.lib'
48 shared_lib_extension = '.dll'
49 static_lib_format = shared_lib_format = '%s%s'
50 exe_extension = '.exe'
51
52
53 def __init__ (self,
54 verbose=0,
55 dry_run=0,
56 force=0):
57
58 CCompiler.__init__ (self, verbose, dry_run, force)
59
60 # These executables are assumed to all be in the path.
61 # Borland doesn't seem to use any special registry settings to
62 # indicate their installation locations.
63
64 self.cc = "bcc32.exe"
Greg Ward42406482000-09-27 02:08:14 +000065 self.linker = "ilink32.exe"
Greg Wardfe9b8182000-06-28 01:20:35 +000066 self.lib = "tlib.exe"
67
68 self.preprocess_options = None
Greg Warda4662bc2000-08-13 00:43:16 +000069 self.compile_options = ['/tWM', '/O2', '/q', '/g0']
70 self.compile_options_debug = ['/tWM', '/Od', '/q', '/g0']
Greg Wardfe9b8182000-06-28 01:20:35 +000071
72 self.ldflags_shared = ['/Tpd', '/Gn', '/q', '/x']
73 self.ldflags_shared_debug = ['/Tpd', '/Gn', '/q', '/x']
74 self.ldflags_static = []
Greg Ward42406482000-09-27 02:08:14 +000075 self.ldflags_exe = ['/Gn', '/q', '/x']
76 self.ldflags_exe_debug = ['/Gn', '/q', '/x','/r']
Greg Wardfe9b8182000-06-28 01:20:35 +000077
78
79 # -- Worker methods ------------------------------------------------
80
Jeremy Hylton1bba31d2002-06-13 17:28:18 +000081 def compile(self, sources,
82 output_dir=None, macros=None, include_dirs=None, debug=0,
83 extra_preargs=None, extra_postargs=None, depends=None):
Tim Peters182b5ac2004-07-18 06:16:08 +000084
Jeremy Hylton1bba31d2002-06-13 17:28:18 +000085 macros, objects, extra_postargs, pp_opts, build = \
86 self._setup_compile(output_dir, macros, include_dirs, sources,
87 depends, extra_postargs)
Greg Wardfe9b8182000-06-28 01:20:35 +000088 compile_opts = extra_preargs or []
89 compile_opts.append ('-c')
90 if debug:
91 compile_opts.extend (self.compile_options_debug)
92 else:
93 compile_opts.extend (self.compile_options)
Fred Drakeb94b8492001-12-06 20:51:35 +000094
Thomas Heller9436a752003-12-05 20:12:23 +000095 for obj in objects:
96 try:
97 src, ext = build[obj]
98 except KeyError:
99 continue
Jeremy Hylton1bba31d2002-06-13 17:28:18 +0000100 # XXX why do the normpath here?
101 src = os.path.normpath(src)
102 obj = os.path.normpath(obj)
103 # XXX _setup_compile() did a mkpath() too but before the normpath.
104 # Is it possible to skip the normpath?
105 self.mkpath(os.path.dirname(obj))
Greg Wardfe9b8182000-06-28 01:20:35 +0000106
Jeremy Hylton1bba31d2002-06-13 17:28:18 +0000107 if ext == '.res':
108 # This is already a binary file -- skip it.
109 continue # the 'for' loop
110 if ext == '.rc':
111 # This needs to be compiled to a .res file -- do it now.
Greg Wardfe9b8182000-06-28 01:20:35 +0000112 try:
Jeremy Hylton1bba31d2002-06-13 17:28:18 +0000113 self.spawn (["brcc32", "-fo", obj, src])
Guido van Rossumb940e112007-01-10 16:19:56 +0000114 except DistutilsExecError as msg:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000115 raise CompileError(msg)
Jeremy Hylton1bba31d2002-06-13 17:28:18 +0000116 continue # the 'for' loop
117
118 # The next two are both for the real compiler.
119 if ext in self._c_extensions:
120 input_opt = ""
121 elif ext in self._cpp_extensions:
122 input_opt = "-P"
123 else:
124 # Unknown file type -- no extra options. The compiler
125 # will probably fail, but let it just in case this is a
126 # file the compiler recognizes even if we don't.
127 input_opt = ""
128
129 output_opt = "-o" + obj
130
131 # Compiler command line syntax is: "bcc32 [options] file(s)".
132 # Note that the source file names must appear at the end of
133 # the command line.
134 try:
135 self.spawn ([self.cc] + compile_opts + pp_opts +
136 [input_opt, output_opt] +
137 extra_postargs + [src])
Guido van Rossumb940e112007-01-10 16:19:56 +0000138 except DistutilsExecError as msg:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000139 raise CompileError(msg)
Greg Wardfe9b8182000-06-28 01:20:35 +0000140
141 return objects
142
143 # compile ()
144
145
146 def create_static_lib (self,
147 objects,
148 output_libname,
149 output_dir=None,
150 debug=0,
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000151 target_lang=None):
Greg Wardfe9b8182000-06-28 01:20:35 +0000152
153 (objects, output_dir) = self._fix_object_args (objects, output_dir)
154 output_filename = \
155 self.library_filename (output_libname, output_dir=output_dir)
156
157 if self._need_link (objects, output_filename):
158 lib_args = [output_filename, '/u'] + objects
159 if debug:
160 pass # XXX what goes here?
Greg Wardfe9b8182000-06-28 01:20:35 +0000161 try:
Fred Drakeb94b8492001-12-06 20:51:35 +0000162 self.spawn ([self.lib] + lib_args)
Guido van Rossumb940e112007-01-10 16:19:56 +0000163 except DistutilsExecError as msg:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000164 raise LibError(msg)
Greg Wardfe9b8182000-06-28 01:20:35 +0000165 else:
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +0000166 log.debug("skipping %s (up-to-date)", output_filename)
Greg Wardfe9b8182000-06-28 01:20:35 +0000167
168 # create_static_lib ()
Fred Drakeb94b8492001-12-06 20:51:35 +0000169
170
Greg Ward42406482000-09-27 02:08:14 +0000171 def link (self,
Fred Drakeb94b8492001-12-06 20:51:35 +0000172 target_desc,
Greg Ward42406482000-09-27 02:08:14 +0000173 objects,
174 output_filename,
175 output_dir=None,
176 libraries=None,
177 library_dirs=None,
178 runtime_library_dirs=None,
179 export_symbols=None,
180 debug=0,
181 extra_preargs=None,
182 extra_postargs=None,
Gustavo Niemeyer6b016852002-11-05 16:12:02 +0000183 build_temp=None,
184 target_lang=None):
Greg Wardfe9b8182000-06-28 01:20:35 +0000185
Greg Wardc58c5172000-08-02 01:03:23 +0000186 # XXX this ignores 'build_temp'! should follow the lead of
187 # msvccompiler.py
188
Greg Wardfe9b8182000-06-28 01:20:35 +0000189 (objects, output_dir) = self._fix_object_args (objects, output_dir)
190 (libraries, library_dirs, runtime_library_dirs) = \
191 self._fix_lib_args (libraries, library_dirs, runtime_library_dirs)
192
193 if runtime_library_dirs:
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +0000194 log.warn("I don't know what to do with 'runtime_library_dirs': %s",
195 str(runtime_library_dirs))
Greg Ward42406482000-09-27 02:08:14 +0000196
Greg Wardfe9b8182000-06-28 01:20:35 +0000197 if output_dir is not None:
198 output_filename = os.path.join (output_dir, output_filename)
199
200 if self._need_link (objects, output_filename):
201
Greg Ward42406482000-09-27 02:08:14 +0000202 # Figure out linker args based on type of target.
203 if target_desc == CCompiler.EXECUTABLE:
204 startup_obj = 'c0w32'
205 if debug:
206 ld_args = self.ldflags_exe_debug[:]
207 else:
208 ld_args = self.ldflags_exe[:]
Greg Wardfe9b8182000-06-28 01:20:35 +0000209 else:
Greg Ward42406482000-09-27 02:08:14 +0000210 startup_obj = 'c0d32'
211 if debug:
212 ld_args = self.ldflags_shared_debug[:]
213 else:
214 ld_args = self.ldflags_shared[:]
215
Greg Wardfe9b8182000-06-28 01:20:35 +0000216
Greg Wardfe9b8182000-06-28 01:20:35 +0000217 # Create a temporary exports file for use by the linker
Greg Ward42406482000-09-27 02:08:14 +0000218 if export_symbols is None:
219 def_file = ''
220 else:
221 head, tail = os.path.split (output_filename)
222 modname, ext = os.path.splitext (tail)
223 temp_dir = os.path.dirname(objects[0]) # preserve tree structure
224 def_file = os.path.join (temp_dir, '%s.def' % modname)
225 contents = ['EXPORTS']
226 for sym in (export_symbols or []):
227 contents.append(' %s=_%s' % (sym, sym))
228 self.execute(write_file, (def_file, contents),
229 "writing %s" % def_file)
Greg Wardfe9b8182000-06-28 01:20:35 +0000230
Greg Wardcec15682000-09-01 01:28:33 +0000231 # Borland C++ has problems with '/' in paths
Greg Ward42406482000-09-27 02:08:14 +0000232 objects2 = map(os.path.normpath, objects)
233 # split objects in .obj and .res files
234 # Borland C++ needs them at different positions in the command line
235 objects = [startup_obj]
236 resources = []
237 for file in objects2:
238 (base, ext) = os.path.splitext(os.path.normcase(file))
239 if ext == '.res':
240 resources.append(file)
241 else:
242 objects.append(file)
Fred Drakeb94b8492001-12-06 20:51:35 +0000243
244
Greg Wardc58c5172000-08-02 01:03:23 +0000245 for l in library_dirs:
Fred Drakeb94b8492001-12-06 20:51:35 +0000246 ld_args.append("/L%s" % os.path.normpath(l))
Greg Ward42406482000-09-27 02:08:14 +0000247 ld_args.append("/L.") # we sometimes use relative paths
248
Fred Drakeb94b8492001-12-06 20:51:35 +0000249 # list of object files
250 ld_args.extend(objects)
Greg Wardc58c5172000-08-02 01:03:23 +0000251
Greg Ward13980452000-08-13 00:54:39 +0000252 # XXX the command-line syntax for Borland C++ is a bit wonky;
253 # certain filenames are jammed together in one big string, but
254 # comma-delimited. This doesn't mesh too well with the
255 # Unix-centric attitude (with a DOS/Windows quoting hack) of
256 # 'spawn()', so constructing the argument list is a bit
257 # awkward. Note that doing the obvious thing and jamming all
258 # the filenames and commas into one argument would be wrong,
259 # because 'spawn()' would quote any filenames with spaces in
260 # them. Arghghh!. Apparently it works fine as coded...
261
Greg Ward42406482000-09-27 02:08:14 +0000262 # name of dll/exe file
Greg Wardc58c5172000-08-02 01:03:23 +0000263 ld_args.extend([',',output_filename])
Fred Drakeb94b8492001-12-06 20:51:35 +0000264 # no map file and start libraries
Greg Warda4662bc2000-08-13 00:43:16 +0000265 ld_args.append(',,')
Greg Wardc58c5172000-08-02 01:03:23 +0000266
267 for lib in libraries:
Fred Drakeb94b8492001-12-06 20:51:35 +0000268 # see if we find it and if there is a bcpp specific lib
Greg Ward42406482000-09-27 02:08:14 +0000269 # (xxx_bcpp.lib)
Greg Wardc58c5172000-08-02 01:03:23 +0000270 libfile = self.find_library_file(library_dirs, lib, debug)
271 if libfile is None:
272 ld_args.append(lib)
273 # probably a BCPP internal library -- don't warn
Greg Wardc58c5172000-08-02 01:03:23 +0000274 else:
275 # full name which prefers bcpp_xxx.lib over xxx.lib
276 ld_args.append(libfile)
Greg Ward42406482000-09-27 02:08:14 +0000277
278 # some default libraries
279 ld_args.append ('import32')
280 ld_args.append ('cw32mt')
281
Greg Wardc58c5172000-08-02 01:03:23 +0000282 # def file for export symbols
283 ld_args.extend([',',def_file])
Greg Ward42406482000-09-27 02:08:14 +0000284 # add resource files
285 ld_args.append(',')
286 ld_args.extend(resources)
287
Fred Drakeb94b8492001-12-06 20:51:35 +0000288
Greg Wardfe9b8182000-06-28 01:20:35 +0000289 if extra_preargs:
290 ld_args[:0] = extra_preargs
291 if extra_postargs:
Greg Wardc58c5172000-08-02 01:03:23 +0000292 ld_args.extend(extra_postargs)
Greg Wardfe9b8182000-06-28 01:20:35 +0000293
294 self.mkpath (os.path.dirname (output_filename))
295 try:
Greg Ward42406482000-09-27 02:08:14 +0000296 self.spawn ([self.linker] + ld_args)
Guido van Rossumb940e112007-01-10 16:19:56 +0000297 except DistutilsExecError as msg:
Collin Winter5b7e9d72007-08-30 03:52:21 +0000298 raise LinkError(msg)
Greg Wardfe9b8182000-06-28 01:20:35 +0000299
300 else:
Jeremy Hyltoncd8a1142002-06-04 20:14:43 +0000301 log.debug("skipping %s (up-to-date)", output_filename)
Greg Wardfe9b8182000-06-28 01:20:35 +0000302
Greg Ward42406482000-09-27 02:08:14 +0000303 # link ()
Greg Wardfe9b8182000-06-28 01:20:35 +0000304
305 # -- Miscellaneous methods -----------------------------------------
Greg Wardfe9b8182000-06-28 01:20:35 +0000306
307
Greg Wardc58c5172000-08-02 01:03:23 +0000308 def find_library_file (self, dirs, lib, debug=0):
Greg Ward5db2c3a2000-08-04 01:30:03 +0000309 # List of effective library names to try, in order of preference:
Greg Ward42406482000-09-27 02:08:14 +0000310 # xxx_bcpp.lib is better than xxx.lib
Greg Wardc58c5172000-08-02 01:03:23 +0000311 # and xxx_d.lib is better than xxx.lib if debug is set
Greg Ward5db2c3a2000-08-04 01:30:03 +0000312 #
Greg Ward42406482000-09-27 02:08:14 +0000313 # The "_bcpp" suffix is to handle a Python installation for people
Greg Ward5db2c3a2000-08-04 01:30:03 +0000314 # with multiple compilers (primarily Distutils hackers, I suspect
315 # ;-). The idea is they'd have one static library for each
316 # compiler they care about, since (almost?) every Windows compiler
317 # seems to have a different format for static libraries.
318 if debug:
319 dlib = (lib + "_d")
Greg Wardcec15682000-09-01 01:28:33 +0000320 try_names = (dlib + "_bcpp", lib + "_bcpp", dlib, lib)
Greg Ward5db2c3a2000-08-04 01:30:03 +0000321 else:
Greg Wardcec15682000-09-01 01:28:33 +0000322 try_names = (lib + "_bcpp", lib)
Greg Wardfe9b8182000-06-28 01:20:35 +0000323
Greg Ward5db2c3a2000-08-04 01:30:03 +0000324 for dir in dirs:
325 for name in try_names:
326 libfile = os.path.join(dir, self.library_filename(name))
327 if os.path.exists(libfile):
328 return libfile
Greg Wardfe9b8182000-06-28 01:20:35 +0000329 else:
330 # Oops, didn't find it in *any* of 'dirs'
331 return None
332
Greg Ward42406482000-09-27 02:08:14 +0000333 # overwrite the one from CCompiler to support rc and res-files
334 def object_filenames (self,
335 source_filenames,
336 strip_dir=0,
337 output_dir=''):
338 if output_dir is None: output_dir = ''
339 obj_names = []
340 for src_name in source_filenames:
341 # use normcase to make sure '.rc' is really '.rc' and not '.RC'
342 (base, ext) = os.path.splitext (os.path.normcase(src_name))
343 if ext not in (self.src_extensions + ['.rc','.res']):
Collin Winter5b7e9d72007-08-30 03:52:21 +0000344 raise UnknownFileError("unknown file type '%s' (from '%s')" % \
345 (ext, src_name))
Greg Ward42406482000-09-27 02:08:14 +0000346 if strip_dir:
347 base = os.path.basename (base)
348 if ext == '.res':
349 # these can go unchanged
350 obj_names.append (os.path.join (output_dir, base + ext))
351 elif ext == '.rc':
352 # these need to be compiled to .res-files
353 obj_names.append (os.path.join (output_dir, base + '.res'))
354 else:
355 obj_names.append (os.path.join (output_dir,
356 base + self.obj_extension))
357 return obj_names
358
359 # object_filenames ()
Andrew M. Kuchlingdb7aed52001-08-16 20:17:41 +0000360
361 def preprocess (self,
362 source,
363 output_file=None,
364 macros=None,
365 include_dirs=None,
366 extra_preargs=None,
367 extra_postargs=None):
368
369 (_, macros, include_dirs) = \
370 self._fix_compile_args(None, macros, include_dirs)
371 pp_opts = gen_preprocess_options(macros, include_dirs)
372 pp_args = ['cpp32.exe'] + pp_opts
373 if output_file is not None:
374 pp_args.append('-o' + output_file)
375 if extra_preargs:
376 pp_args[:0] = extra_preargs
377 if extra_postargs:
378 pp_args.extend(extra_postargs)
379 pp_args.append(source)
380
381 # We need to preprocess: either we're being forced to, or the
382 # source file is newer than the target (or the target doesn't
383 # exist).
384 if self.force or output_file is None or newer(source, output_file):
385 if output_file:
386 self.mkpath(os.path.dirname(output_file))
387 try:
388 self.spawn(pp_args)
Guido van Rossumb940e112007-01-10 16:19:56 +0000389 except DistutilsExecError as msg:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000390 print(msg)
Collin Winter5b7e9d72007-08-30 03:52:21 +0000391 raise CompileError(msg)
Andrew M. Kuchlingdb7aed52001-08-16 20:17:41 +0000392
393 # preprocess()