@@ -161,7 +161,7 @@ def link (self,
161161 return
162162 # Build the export file
163163 exportfilename = os .path .join (build_temp , exportname )
164- log .debug ("\t Create export file" , exportfilename )
164+ log .debug ("\t Create export file %s " , exportfilename )
165165 fp = open (exportfilename , 'w' )
166166 fp .write ('%s\n ' % export_symbols [0 ])
167167 fp .close ()
@@ -182,7 +182,7 @@ def link (self,
182182 # because we pass this pathname to CodeWarrior in an AppleEvent, and CW
183183 # doesn't have a clue about our working directory.
184184 xmlfilename = os .path .join (os .getcwd (), os .path .join (build_temp , xmlname ))
185- log .debug ("\t Create XML file" , xmlfilename )
185+ log .debug ("\t Create XML file %s " , xmlfilename )
186186 xmlbuilder = mkcwproject .cwxmlgen .ProjectBuilder (settings )
187187 xmlbuilder .generate ()
188188 xmldata = settings ['tmp_projectxmldata' ]
@@ -191,7 +191,7 @@ def link (self,
191191 fp .close ()
192192 # Generate the project. Again a full pathname.
193193 projectfilename = os .path .join (os .getcwd (), os .path .join (build_temp , projectname ))
194- log .debug ('\t Create project file' , projectfilename )
194+ log .debug ('\t Create project file %s ' , projectfilename )
195195 mkcwproject .makeproject (xmlfilename , projectfilename )
196196 # And build it
197197 log .debug ('\t Build project' )
@@ -213,3 +213,31 @@ def _filename_to_abs(self, filename):
213213 if components [i ] == '..' :
214214 components [i ] = ''
215215 return string .join (components , ':' )
216+
217+ def library_dir_option (self , dir ):
218+ """Return the compiler option to add 'dir' to the list of
219+ directories searched for libraries.
220+ """
221+ return # XXXX Not correct...
222+
223+ def runtime_library_dir_option (self , dir ):
224+ """Return the compiler option to add 'dir' to the list of
225+ directories searched for runtime libraries.
226+ """
227+ # Nothing needed or Mwerks/Mac.
228+ return
229+
230+ def library_option (self , lib ):
231+ """Return the compiler option to add 'dir' to the list of libraries
232+ linked into the shared library or executable.
233+ """
234+ return
235+
236+ def find_library_file (self , dirs , lib , debug = 0 ):
237+ """Search the specified list of directories for a static or shared
238+ library file 'lib' and return the full path to that file. If
239+ 'debug' true, look for a debugging version (if that makes sense on
240+ the current platform). Return None if 'lib' wasn't found in any of
241+ the specified directories.
242+ """
243+ return 0
0 commit comments