diff options
author | Travis Oliphant <oliphant@enthought.com> | 2004-03-04 23:04:48 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2004-03-04 23:04:48 +0000 |
commit | 1c5dfc8ed54322fb18a078879efb6f009757980f (patch) | |
tree | b7f0e766196b683046df79ae8a0995ecb196c09a /scipy_distutils/absoftfcompiler.py | |
parent | fa4054de4e5f73ace598a555a194a3ffe35e923b (diff) | |
download | numpy-1c5dfc8ed54322fb18a078879efb6f009757980f.tar.gz |
Remove dummy cc_args from Fcompiler class so that include files get used for Fortan.
Diffstat (limited to 'scipy_distutils/absoftfcompiler.py')
-rw-r--r-- | scipy_distutils/absoftfcompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy_distutils/absoftfcompiler.py b/scipy_distutils/absoftfcompiler.py index 84dd00a16..5104ea077 100644 --- a/scipy_distutils/absoftfcompiler.py +++ b/scipy_distutils/absoftfcompiler.py @@ -23,7 +23,7 @@ class AbsoftFCompiler(FCompiler): 'compiler_f77' : ["f77"], 'compiler_fix' : ["f90"], 'compiler_f90' : ["f90"], - 'linker_so' : ["f77","-shared"], + 'linker_so' : ["f77","-dll"], 'archiver' : ["ar", "-cr"], 'ranlib' : ["ranlib"] } |