summaryrefslogtreecommitdiff
path: root/mwerkscompiler.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-06-19 21:23:11 +0000
committerJack Jansen <jack.jansen@cwi.nl>2001-06-19 21:23:11 +0000
commit37936adf51754abcc600a93964e105b20a052e20 (patch)
tree17c701c091fcf24012cbd843c4eb93114ff20bc8 /mwerkscompiler.py
parente7ab99d0e57404a593cd9e44f9381d3f08b0925c (diff)
downloadpython-setuptools-git-37936adf51754abcc600a93964e105b20a052e20.tar.gz
- _filename_to_abs() didn't cater for .. components in the pathname. Fixed.
- compile() didn't return a (empty) list of objects. Fixed. - the various _fix_xxx_args() methods weren't called (are they new or did I overlook them?). Fixed.
Diffstat (limited to 'mwerkscompiler.py')
-rw-r--r--mwerkscompiler.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/mwerkscompiler.py b/mwerkscompiler.py
index 1b416715..46e16e2e 100644
--- a/mwerkscompiler.py
+++ b/mwerkscompiler.py
@@ -62,10 +62,13 @@ class MWerksCompiler (CCompiler) :
debug=0,
extra_preargs=None,
extra_postargs=None):
+ (output_dir, macros, include_dirs) = \
+ self._fix_compile_args (output_dir, macros, include_dirs)
self.__sources = sources
self.__macros = macros
self.__include_dirs = include_dirs
# Don't need extra_preargs and extra_postargs for CW
+ return []
def link (self,
target_desc,
@@ -80,6 +83,11 @@ class MWerksCompiler (CCompiler) :
extra_preargs=None,
extra_postargs=None,
build_temp=None):
+ # First fixup.
+ (objects, output_dir) = self._fix_object_args (objects, output_dir)
+ (libraries, library_dirs, runtime_library_dirs) = \
+ self._fix_lib_args (libraries, library_dirs, runtime_library_dirs)
+
# First examine a couple of options for things that aren't implemented yet
if not target_desc in (self.SHARED_LIBRARY, self.SHARED_OBJECT):
raise DistutilsPlatformError, 'Can only make SHARED_LIBRARY or SHARED_OBJECT targets on the Mac'
@@ -200,6 +208,11 @@ class MWerksCompiler (CCompiler) :
if not os.path.isabs(filename):
curdir = os.getcwd()
filename = os.path.join(curdir, filename)
- return filename
+ # Finally remove .. components
+ components = string.split(filename, ':')
+ for i in range(1, len(components)):
+ if components[i] == '..':
+ components[i] = ''
+ return string.join(components, ':')