如何更改 fortran_compilers.props

问题描述 投票:0回答:1

我想将intel Visual Fortran编译器v11(IVF11)添加到pscad v4.2的已安装版本fortran中,因为我知道必须更改fortran_compilers.props,但我不知道记事本编程我得到了这个记事本代码,但我不知道如何更改使用: (fortran_compilers.props:http://www.4shared.com/zip/EmJbcpYNba/fortran_compilers.html

 <INTEL = "11.1" 
 version_key = "Compilers \ FORTRAN \ #, Major Version, Minor Version" 
 title_key = "Compilers \ FORTRAN \ # \ IA32, DisplayString" 
 batch_args = "ia32" BATCH_NAME = " ifortvars.bat "batch_path =" bin \ "exe_path_key ="                     Compilers \ FORTRAN \ #, ProductDir "exe_subpath =" bin \ ia32 " 
exe_name = "ifort.exe" 
EMTDC = "IF9"> </ INTEL>

据我所知,您可以更改代码并添加到 fortran_compilers.props 感谢您的关注

intel-fortran notepad
1个回答
0
投票

从 PSCAD 4.6 安装中,

fortran_compiles.xml
包含:

<fortran_compilers ...>
    <!-- many lines omitted for brevity -->
    <compiler name="INTEL"  version="11.1"
              version_key="Compilers\FORTRAN\#,Major Version,Minor Version"
              title_key="Compilers\FORTRAN\#\IA32,DisplayString"
              exe_path_key="Compilers\FORTRAN\#,ProductDir"
              exe_subpath="bin\ia32"   exe_name="ifort.exe"   emtdc="if9"
              batch_path="bin\"   batch_name="ifortvars.bat"  batch_args="ia32"
              runtime_env="false"   title_suffix=""   compiler_type="x86"   registry="x86" />
    <!-- many more lines omitted for brevity -->
</fortran_compilers>

您也许可以使用它来满足 v4.2

fortran_compiles.props
文件的需求。

© www.soinside.com 2019 - 2024. All rights reserved.