我正在尝试使用ubuntu 14.04访问名为dislin的C ++库。开发人员提供的测试很简单:

cpplink -c exa_cpp


并且它可以正确编译。我还构建了另一个使用cpplink命令进行编译的脚本。但是当我键入:

man cpplink


我得到:

No manual entry for cpplink


而且我无法使用我刚刚开始了解的g ++编译器来编译该库。所以我认为关于cpplink的一些信息会有所帮助。我尝试了谷歌和普通的搜索路线,但似乎名称对于搜索引擎来说太普遍了。

最佳答案

cpplink是位于$ DISLIN / bin的bash脚本。该脚本将必要的库链接到g ++预编译器,以使程序运行和编译。有关更多信息,您应该只键入

cpplink


输出到:

/******************************************************************/
/**                    C P P L I N K                             **/
/**                                                              **/
/** CPPLINK links C++ programs using DISLIN routines.            **/
/**                                                              **/
/** Command:    cpplink    [option]     main                     **/
/**                                                              **/
/** option      is an optional  parameter  that can  have one of **/
/**             the following values:                            **/
/**        -c   for compiling programs before linking            **/
/**        -r   for running programs after linking               **/
/**        -a   for compiling, linking and running programs.     **/
/**                                                              **/
/** main        is the name of the main program or may be in the **/
/**             form   'main obj lib'   where obj is  a field of **/
/**             object files and lib a  field of library  files. **/
/**             Several files must be separated by blanks.       **/
/**             A file  'main'  will be created after linking.   **/
/**                                                              **/
/** Example:    cpplink  -a  test mylib.a                        **/
/******************************************************************/

07-24 16:30