高级会员
注册日期: 06-11
帖子: 14579
精华: 1
现金: 224494 标准币
资产: 234494 标准币
|
【转帖】linking problem -invalid-parameter-noinfo
linking problem: _invalid_parameter_noinfo
linking problem: _invalid_parameter_noinfo
helo,
i try to link my aplication in vs 2005 with the vs 2005 libraries but
the linker shows this:
... invalid_parameter_noinfo ....
what can i do?
my ommited libraries in the proyect are:
libc.lib
libcmtd.lib
msvcrt.lib
thanks.
here's a article titled ""
i'm going through some linking problems now too, but i didn't get that one so i'm not sure if this will help or not but it seems to fit
look e.g here:
vladimir
i'm having a similar problem.
i'm using the dd_vc8mt_*.lib libraries because i don't want to have a dependency on msvcr80.dll
i can create a release build without any problem, using the /mt run-time library switch.
however, i can't create a debug build, using the /mtd switch.
initially i had the following linker errors:-
code:
1>libcmt.lib(invarg.obj) : error lnk2005: __initp_misc_invarg already defined in libcmtd.lib(invarg.obj)
1>libcmt.lib(invarg.obj) : error lnk2005: __invoke_watson already defined in libcmtd.lib(invarg.obj)
1>libcmt.lib(invarg.obj) : error lnk2005: __set_invalid_parameter_handler already defined in libcmtd.lib(invarg.obj)
1>libcmt.lib(invarg.obj) : error lnk2005: __get_invalid_parameter_handler already defined in libcmtd.lib(invarg.obj)
1>libcmt.lib(invarg.obj) : error lnk2005: "void __cdecl _invoke_watson(unsigned short const *,unsigned short const *,unsigned short const *,unsigned int,unsigned int)" (?_invoke_watson@@yaxpbg00ii@z) already defined in libcmtd.lib(invarg.obj)
1>libcmt.lib(invarg.obj) : error lnk2005: __invalid_parameter already defined in libcmtd.lib(invarg.obj)
1>libcmt.lib(invarg.obj) : error lnk2005: "void __cdecl _invalid_parameter(unsigned short const *,unsigned short const *,unsigned short const *,unsigned int,unsigned int)" (?_invalid_parameter@@yaxpbg00ii@z) already defined in libcmtd.lib(invarg.obj)
1>libcmt.lib(invarg.obj) : error lnk2005: ___pinvalidarghandler already defined in libcmtd.lib(invarg.obj)and this warning:-
code:
1>link : warning lnk4098: defaultlib 'libcmt' conflicts with use of other libs; use /nodefaultlib:libraryso i added libcmt.lib to the 'ignore specific library list'.
then i got the following linker error:-
code:
1>dd_vc8mt_acisbuilder.lib(abunknown.obj) : error lnk2001: unresolved external symbol __invalid_parameter_noinfothis appears 42 times.
finally, i removed libcmt.lib from the 'ignore' list and added /force:multiple to the linker options.
ok, this changed my original errors into warnings, but is this a safe thing to do?
it strikes me that the dd_vc8mt_* libraries are only for release builds. is this the case?
thanks,
geoff
|