summaryrefslogtreecommitdiff
path: root/scipy_distutils/vastfcompiler.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2005-09-14 18:55:03 +0000
committerTravis Oliphant <oliphant@enthought.com>2005-09-14 18:55:03 +0000
commit951cdad1a9b0a15b673bf56aecc1fef5066061f3 (patch)
treef307f0f2ebf404526fcc671958e8ea836b53baf9 /scipy_distutils/vastfcompiler.py
parentc261078e9c2d8fd958bf8b3758cdd07add5fc2e3 (diff)
downloadnumpy-951cdad1a9b0a15b673bf56aecc1fef5066061f3.tar.gz
renamed directories
Diffstat (limited to 'scipy_distutils/vastfcompiler.py')
-rw-r--r--scipy_distutils/vastfcompiler.py51
1 files changed, 0 insertions, 51 deletions
diff --git a/scipy_distutils/vastfcompiler.py b/scipy_distutils/vastfcompiler.py
deleted file mode 100644
index 710711ac6..000000000
--- a/scipy_distutils/vastfcompiler.py
+++ /dev/null
@@ -1,51 +0,0 @@
-import os
-import sys
-
-from cpuinfo import cpu
-from gnufcompiler import GnuFCompiler
-#from fcompiler import FCompiler
-
-class VastFCompiler(GnuFCompiler):
-
- compiler_type = 'vast'
- version_pattern = r'\s*Pacific-Sierra Research vf90 '\
- '(Personal|Professional)\s+(?P<version>[^\s]*)'
-
- # VAST f90 does not support -o with -c. So, object files are created
- # to the current directory and then moved to build directory
- object_switch = ' && function _mvfile { mv -v `basename $1` $1 ; } && _mvfile '
-
- executables = {
- 'version_cmd' : ["vf90", "-v"],
- 'compiler_f77' : ["g77"],
- 'compiler_fix' : ["f90", "-Wv,-ya"],
- 'compiler_f90' : ["f90"],
- 'linker_so' : ["f90"],
- 'archiver' : ["ar", "-cr"],
- 'ranlib' : ["ranlib"]
- }
- module_dir_switch = None #XXX Fix me
- module_include_switch = None #XXX Fix me
-
- def get_version_cmd(self):
- f90 = self.compiler_f90[0]
- d,b = os.path.split(f90)
- vf90 = os.path.join(d,'v'+b)
- return vf90
-
- def get_flags_arch(self):
- vast_version = self.get_version()
- gnu = GnuFCompiler()
- gnu.customize()
- self.version = gnu.get_version()
- opt = GnuFCompiler.get_flags_arch(self)
- self.version = vast_version
- return opt
-
-if __name__ == '__main__':
- from distutils import log
- log.set_verbosity(2)
- from fcompiler import new_fcompiler
- compiler = new_fcompiler(compiler='vast')
- compiler.customize()
- print compiler.get_version()