快乐虾
http://blog.csdn.net/lights_joy/
本文适用于
codeblocks-8.02
vs2008
欢迎转载,但请保留作者信息
在vs2008下编译code::blocks时有一个问题。
由于c::b在编译完成一个项目后会生成一个与项目同名的.depend文件,此文件写明了工程中各文件的依赖关系,就像这样的:
# depslib dependency file v1.0
1183729388 source:f:\temp\cb\cbtest\main.c
<stdio.h>
<stdlib.h>
在c::b的代码中,上述文件的输出是这样的:
void cache_write(const char *path)
{
int vmajor, vminor;
FILE *f;
HDR *h;
if (check_cache_file(path, &vmajor, &vminor) == CACHE_BAD)
return;
if (!(f = fopen(path, "w")))
return;
fprintf(f, magic, DEPS_MAJOR, DEPS_MINOR);
fputc('\n', f);
for (h = hdrlist; h; h = h->next)
{
LIST *l;
fprintf(f, "%ld %s\n", h->time, h->file);
for (l = h->includes; l; l = list_next (l))
{
fprintf(f, "\t%s\n", l->string);
}
fprintf(f, "\n");
}
fclose(f);
}
注意第二行代码的输出:
fprintf(f, "%ld %s\n", h->time, h->file);
它使用了ld修饰符来输出h->time的内容,而h->time是一个定义为time_t的变量,在vs2008下time_t是__int64类型的!因此这一行将无法取得正确的输出结果。
当c::b读取.depend文件时,它使用这样的语句:
sscanf(buf, "%ld %n", &timeval, &n);
这样导致timeval和n都无法取得正确的值!后继的代码自然也无法运行!
在这里只能改为I64修饰符。
codeblocks中plugin的实现(2008-9-9)