[NumPy-Tickets] [NumPy] #1377: HP Fortran compiler flags incomplete
NumPy Trac
numpy-tickets@scipy....
Thu Jan 28 09:58:10 CST 2010
#1377: HP Fortran compiler flags incomplete
---------------------------------------------+------------------------------
Reporter: neinhues | Owner: cdavid
Type: defect | Status: new
Priority: normal | Milestone: 1.5.0
Component: numpy.distutils | Version: 1.4.0
Keywords: HP-UX distutiles compiler flags |
---------------------------------------------+------------------------------
The flags for the HP Fortran compiler should be changed as
described below:
numpy-1.4.0/numpy/distutils/fcompiler/hpux.py
@@ -9,17 +9,17 @@
version_pattern = r'HP F90 (?P<version>[^\s*,]*)'
executables = {
- 'version_cmd' : ["<F90>", "+version"],
+ 'version_cmd' : ["f90", "+version"],
'compiler_f77' : ["f90"],
'compiler_fix' : ["f90"],
'compiler_f90' : ["f90"],
- 'linker_so' : None,
+ 'linker_so' : ["ld", "-b"],
'archiver' : ["ar", "-cr"],
'ranlib' : ["ranlib"]
}
module_dir_switch = None #XXX: fix me
module_include_switch = None #XXX: fix me
- pic_flags = ['+pic=long']
+ pic_flags = ['+Z']
def get_flags(self):
return self.pic_flags + ['+ppu', '+DD64']
def get_flags_opt(self):
--
Ticket URL: <http://projects.scipy.org/numpy/ticket/1377>
NumPy <http://projects.scipy.org/numpy>
My example project
More information about the NumPy-Tickets
mailing list