当前位置: 技术问答>linux和unix
linux 下如何使用 intel 提供的 c++编译器
来源: 互联网 发布时间:2016-04-15
本文导语: 各位老大: 我今天下载了intel 提供的l_cc_p_10.1.015.tar.gz 编译器 按照说明 1. Unpack the compiler package in a directory to which you have write access. |> tar -xvf l_cc_x_10.1.xxx.tar| or |> tar -z...
各位老大:
我今天下载了intel 提供的l_cc_p_10.1.015.tar.gz 编译器
按照说明
1. Unpack the compiler package in a directory to which you have write
access.
|> tar -xvf l_cc_x_10.1.xxx.tar|
or
|> tar -zxvf l_cc_x_10.1.xxx.tar.gz|
2. Run the installation script
Execute the install script in the directory where the tar file was
extracted.
|> cd l_cc_x_10.1.xxx
> ./install.sh |
安装成功。然后按照以下
* |> source /bin/iccvars.sh(.csh) |
to use icc
* |> source /bin/idbvars.sh(.csh) |
to use idb
进行了环境配置完成后,现在不知道如何使用他,在网上找了很久找到了
icl thesourcefile.c 这个和 icl -help 可是却都提示command not found
还有 ifort -V这个命令也是一样的,希望有谁知道给指点一二啊
小弟这厢有礼了
谢谢
我今天下载了intel 提供的l_cc_p_10.1.015.tar.gz 编译器
按照说明
1. Unpack the compiler package in a directory to which you have write
access.
|> tar -xvf l_cc_x_10.1.xxx.tar|
or
|> tar -zxvf l_cc_x_10.1.xxx.tar.gz|
2. Run the installation script
Execute the install script in the directory where the tar file was
extracted.
|> cd l_cc_x_10.1.xxx
> ./install.sh |
安装成功。然后按照以下
* |> source /bin/iccvars.sh(.csh) |
to use icc
* |> source /bin/idbvars.sh(.csh) |
to use idb
进行了环境配置完成后,现在不知道如何使用他,在网上找了很久找到了
icl thesourcefile.c 这个和 icl -help 可是却都提示command not found
还有 ifort -V这个命令也是一样的,希望有谁知道给指点一二啊
小弟这厢有礼了
谢谢
|
在Linux下,使用Intel C++编译器,应该用icc,对应于gcc。 icl是在Windows下对应于cl的
如果想使用ifort,那就要安装Intel Fortran编译器,10.1版本安装包的文件名为 l_fc_x_10.1.xxx.tar,使用前也需要source。
有空去看看“英特尔多核软件开发”坛子里的置顶贴吧
如果想使用ifort,那就要安装Intel Fortran编译器,10.1版本安装包的文件名为 l_fc_x_10.1.xxx.tar,使用前也需要source。
有空去看看“英特尔多核软件开发”坛子里的置顶贴吧
|
icl不在PATH里,找找/usr/local或者/opt