随笔分类 -  windows

摘要:编译的时候出现warning:Linker Tools Warning LNK4098defaultlib "library" conflicts with use of other libs; use /NODEFAULTLIB:library说明存在库冲突,在link选项中加参数:/VERBOSE:LIB 再编译则显示进度消息,仅指示所搜索的库。所显示的信息包括库搜索进程,同时还列出每个库和对象名(包括完整路径),正从库中解析的符号,以及引用该符号的对象的列表。可以看到确实依赖了debug版本的库。在link选项中加参数/NODEFAULTLIB:msvcrtd.lib 阅读全文
posted @ 2013-03-01 09:41 good90 阅读(2390) 评论(1) 推荐(1)
摘要:定时执行:@echo off@set interval=0.5:againecho execute test.batCALL test.batecho sleep %interval%sping -n %interval% 127.1>nul echo restartgoto againpause同时启动多个exestart "" "a.exe" -argsstart "" "a.exe" -args... 阅读全文
posted @ 2012-10-29 22:10 good90 阅读(236) 评论(0) 推荐(0)