如何使用编译器tcc在窗口中添加gsl库?

时间:2015-10-23 09:53:22

标签: c windows gsl tcc

目前我可以通过命令使用windows命令提示符编译并运行一个基本的“Hello World”程序:

tcc.test.c 

接着是

test.exe.

其中test是包含"Hello World"程序代码的文件的名称。

我在我的c:\驱动器上安装了tcc文件夹。我有另一个程序需要gsl库运行,但我不知道从哪里以及如何正确安装库以及如何在程序编译和运行时调用它。

1 个答案:

答案 0 :(得分:0)

您可能希望阅读以下文档:;。

其中包括:

-Bdir设置可以找到tcc内部库的路径(默认为PREFIX / lib / tcc')。 “

同样感兴趣的是:

-Idir' Specify an additional include path. Include paths are searched in the order they are specified. System include paths are always searched after. The default system include paths are: /usr/local/include', /usr/include' and PREFIX/lib/tcc/include'. (PREFIX' is usually /usr' or的/ usr /本地“)。 “

最后:

-Ldir' Specify an additional static library path for the - l'选项。默认库路径为/usr/local/lib', / usr / lib'和`/ lib'。

-lxxx' Link your program with dynamic library libxxx.so or static library libxxx.a. The library is searched in the paths specified by the - L'选项。