1 """distutils.mwerkscompiler
3 Contains MWerksCompiler, an implementation of the abstract CCompiler class
4 for MetroWerks CodeWarrior on the Macintosh. Needs work to support CW on
9 from distutils
.errors
import \
10 DistutilsExecError
, DistutilsPlatformError
, \
11 CompileError
, LibError
, LinkError
12 from distutils
.ccompiler
import \
13 CCompiler
, gen_preprocess_options
, gen_lib_options
15 import distutils
.dir_util
18 class MWerksCompiler (CCompiler
) :
19 """Concrete class that implements an interface to Microsoft Visual C++,
20 as defined by the CCompiler abstract class."""
22 compiler_type
= 'mwerks'
24 # Just set this so CCompiler's constructor doesn't barf. We currently
25 # don't use the 'set_executables()' bureaucracy provided by CCompiler,
26 # as it really isn't necessary for this sort of single-compiler class.
27 # Would be nice to have a consistent interface with UnixCCompiler,
28 # though, so it's worth thinking about.
31 # Private class data (need to distinguish C from C++ source for compiler)
32 _c_extensions
= ['.c']
33 _cpp_extensions
= ['.cc', '.cpp', '.cxx']
34 _rc_extensions
= ['.r']
35 _exp_extension
= '.exp'
37 # Needed for the filename generation methods provided by the
38 # base class, CCompiler.
39 src_extensions
= (_c_extensions
+ _cpp_extensions
+
41 res_extension
= '.rsrc'
42 obj_extension
= '.obj' # Not used, really
43 static_lib_extension
= '.lib'
44 shared_lib_extension
= '.slb'
45 static_lib_format
= shared_lib_format
= '%s%s'
54 CCompiler
.__init
__ (self
, verbose
, dry_run
, force
)
65 (output_dir
, macros
, include_dirs
) = \
66 self
._fix
_compile
_args
(output_dir
, macros
, include_dirs
)
67 self
.__sources
= sources
68 self
.__macros
= macros
69 self
.__include
_dirs
= include_dirs
70 # Don't need extra_preargs and extra_postargs for CW
80 runtime_library_dirs
=None,
87 (objects
, output_dir
) = self
._fix
_object
_args
(objects
, output_dir
)
88 (libraries
, library_dirs
, runtime_library_dirs
) = \
89 self
._fix
_lib
_args
(libraries
, library_dirs
, runtime_library_dirs
)
91 # First examine a couple of options for things that aren't implemented yet
92 if not target_desc
in (self
.SHARED_LIBRARY
, self
.SHARED_OBJECT
):
93 raise DistutilsPlatformError
, 'Can only make SHARED_LIBRARY or SHARED_OBJECT targets on the Mac'
94 if runtime_library_dirs
:
95 raise DistutilsPlatformError
, 'Runtime library dirs not implemented yet'
96 if extra_preargs
or extra_postargs
:
97 raise DistutilsPlatformError
, 'Runtime library dirs not implemented yet'
98 if len(export_symbols
) != 1:
99 raise DistutilsPlatformError
, 'Need exactly one export symbol'
100 # Next there are various things for which we need absolute pathnames.
101 # This is because we (usually) create the project in a subdirectory of
102 # where we are now, and keeping the paths relative is too much work right
104 sources
= map(self
._filename
_to
_abs
, self
.__sources
)
105 include_dirs
= map(self
._filename
_to
_abs
, self
.__include
_dirs
)
107 objects
= map(self
._filename
_to
_abs
, objects
)
111 build_temp
= self
._filename
_to
_abs
(build_temp
)
113 build_temp
= os
.curdir()
115 output_filename
= os
.path
.join(output_dir
, output_filename
)
116 # The output filename needs special handling: splitting it into dir and
117 # filename part. Actually I'm not sure this is really needed, but it
119 output_filename
= self
._filename
_to
_abs
(output_filename
)
120 output_dir
, output_filename
= os
.path
.split(output_filename
)
121 # Now we need the short names of a couple of things for putting them
123 if output_filename
[-8:] == '.ppc.slb':
124 basename
= output_filename
[:-8]
125 elif output_filename
[-11:] == '.carbon.slb':
126 basename
= output_filename
[:-11]
128 basename
= os
.path
.strip(output_filename
)[0]
129 projectname
= basename
+ '.mcp'
130 targetname
= basename
131 xmlname
= basename
+ '.xml'
132 exportname
= basename
+ '.mcp.exp'
133 prefixname
= 'mwerks_%s_config.h'%basename
134 # Create the directories we need
135 distutils
.dir_util
.mkpath(build_temp
, self
.verbose
, self
.dry_run
)
136 distutils
.dir_util
.mkpath(output_dir
, self
.verbose
, self
.dry_run
)
137 # And on to filling in the parameters for the project builder
139 settings
['mac_exportname'] = exportname
140 settings
['mac_outputdir'] = output_dir
141 settings
['mac_dllname'] = output_filename
142 settings
['mac_targetname'] = targetname
143 settings
['sysprefix'] = sys
.prefix
144 settings
['mac_sysprefixtype'] = 'Absolute'
147 for filename
in sources
+ objects
:
148 dirname
, filename
= os
.path
.split(filename
)
149 sourcefilenames
.append(filename
)
150 if not dirname
in sourcefiledirs
:
151 sourcefiledirs
.append(dirname
)
152 settings
['sources'] = sourcefilenames
153 settings
['extrasearchdirs'] = sourcefiledirs
+ include_dirs
+ library_dirs
155 print 'CALLING LINKER IN', os
.getcwd()
156 for key
, value
in settings
.items():
157 print '%20.20s %s'%(key
, value
)
159 # Build the export file
160 exportfilename
= os
.path
.join(build_temp
, exportname
)
162 print '\tCreate export file', exportfilename
163 fp
= open(exportfilename
, 'w')
164 fp
.write('%s\n'%export
_symbols
[0])
166 # Generate the prefix file, if needed, and put it in the settings
168 prefixfilename
= os
.path
.join(os
.getcwd(), os
.path
.join(build_temp
, prefixname
))
169 fp
= open(prefixfilename
, 'w')
170 fp
.write('#include "mwerks_plugin_config.h"\n')
171 for name
, value
in self
.__macros
:
173 fp
.write('#define %s\n'%name
)
175 fp
.write('#define %s %s\n'%(name
, value
))
177 settings
['prefixname'] = prefixname
179 # Build the XML file. We need the full pathname (only lateron, really)
180 # because we pass this pathname to CodeWarrior in an AppleEvent, and CW
181 # doesn't have a clue about our working directory.
182 xmlfilename
= os
.path
.join(os
.getcwd(), os
.path
.join(build_temp
, xmlname
))
184 print '\tCreate XML file', xmlfilename
185 xmlbuilder
= mkcwproject
.cwxmlgen
.ProjectBuilder(settings
)
186 xmlbuilder
.generate()
187 xmldata
= settings
['tmp_projectxmldata']
188 fp
= open(xmlfilename
, 'w')
191 # Generate the project. Again a full pathname.
192 projectfilename
= os
.path
.join(os
.getcwd(), os
.path
.join(build_temp
, projectname
))
194 print '\tCreate project file', projectfilename
195 mkcwproject
.makeproject(xmlfilename
, projectfilename
)
198 print '\tBuild project'
199 mkcwproject
.buildproject(projectfilename
)
201 def _filename_to_abs(self
, filename
):
202 # Some filenames seem to be unix-like. Convert to Mac names.
203 ## if '/' in filename and ':' in filename:
204 ## raise DistutilsPlatformError, 'Filename may be Unix or Mac style: %s'%filename
205 ## if '/' in filename:
206 ## filename = macurl2path(filename)
207 filename
= distutils
.util
.convert_path(filename
)
208 if not os
.path
.isabs(filename
):
210 filename
= os
.path
.join(curdir
, filename
)
211 # Finally remove .. components
212 components
= string
.split(filename
, ':')
213 for i
in range(1, len(components
)):
214 if components
[i
] == '..':
216 return string
.join(components
, ':')