c**s 发帖数: 268 | 1 I got this error while trying to compile a program using Intel Fortran
Compiler 10.1.
LINK : fatal error LNK1104: cannot open file 'LIBC.lib'
Why? How to resolve this?
Thanks. |
|
c**s 发帖数: 268 | 2 I got this error while trying to compile a program using Intel Fortran
Compiler 10.1.
LINK : fatal error LNK1104: cannot open file 'LIBC.lib'
Why? How to resolve this?
Thanks. |
|
|
y****e 发帖数: 23939 | 4 我的Project是从Linux下移植到windoesXP上的,原来在VS2003下能编译,但是我需要
specify ignore libc.lib 和libcmt.lib.
现在我用vs2005编译,总是complain:
LINK: fatal error LNK1104: cannot open file 'LIBC.lib'
我想这些C++函数都应该连接到MSVRT.lib的呀,为什么要连接到libc.lib呢?而且我的
Project是多线程的,/MD。我的Project有8个dependent library,有些是以前用
vs2003 build 的会不会是这个原因呢? |
|
y****e 发帖数: 23939 | 5 VC 2005 on WinXP, I got linking errors:
LINK: fatal error LNK1104: cannot open file 'LIBC.lib'
Which confused me. Because the c/c++ funactions should be looked for in the
MSVRT.lib instead libc.lib or libcmt.lib. In VS2003, I need ignore libc.lib
and libcmt.lib to make it compile. I don't know why in VC2005 it need link
to LIBC.lib.
Please help. Thanks in advanced. |
|
J*****n 发帖数: 4859 | 6 To get Boost date, I put following include:
#include
then, I got this error
LINK : fatal error LNK1104: cannot open file 'libboost_date_time-vc100-mt-gd
-1_44.lib'
I already add boost path in my additional include dict. Also, I downloaded
above file: 'libboost_date_time-vc100-mt-gd-1_44.lib' to my boost path. But
it didn't work out.
Any suggestion?
Thank you. |
|
p****r 发帖数: 165 | 7 when in Visual Studio 2008: setup linker option for an already created .def
file. the compiler always complain at the linking stage:
fatal error LNK1104: cannot open file '/DEF: XXXX.DEF'
I googled, and I specified '/DEF: XXXX.DEF' in
project-> property-> linker-> input-> Model definition: use /DEF: XXXX.DEF
to specifiy the file name.
but at linking stage, the compile failed.
any suggestions? thanks. |
|