MS VC++ precompiled headers
http://www.codecomments.com/archive 292-2005-3-433707.html
First, try if you like to disable precompiled headers (it's in the compiler options in the project settings). See if that helps at first. If it does, then try setting your settings for stdafx.cpp to "Create precompiled Header" (/Yc) with stdafx.h, and then set the rest of the files to "Use Precompiled Header" (/Yu) with stdafx.h. See if that helps.
我一直在工程选项里面调这个设置,没想到单独的 cpp 文件也有自己的设置。早该想到,应该有第一个 cpp 文件用来生成这个 pch 文件,可是既然每个 cpp 文件都必须用到 pch 文件,这简直就是个先有鸡还是先有蛋的问题。现在还是查 Google 解决了。
整个项目接近尾声了,编译速度才终于可以忍受:这就是一个 Build Manager 的失败之处了。至于 AWS 组前几天才号召在 Post Build 中复制文件到目标位置:胡乱作出的决定,甚至连 attrib -r 都不用,当初设计源代码仓库目录的时候就有些问题,把二进制文件与需要原样发布的文件 混合在同一个目录下,现在多次尝试分离都做不到方便开发和构建。他真是失败。
First, try if you like to disable precompiled headers (it's in the compiler options in the project settings). See if that helps at first. If it does, then try setting your settings for stdafx.cpp to "Create precompiled Header" (/Yc) with stdafx.h, and then set the rest of the files to "Use Precompiled Header" (/Yu) with stdafx.h. See if that helps.
我一直在工程选项里面调这个设置,没想到单独的 cpp 文件也有自己的设置。早该想到,应该有第一个 cpp 文件用来生成这个 pch 文件,可是既然每个 cpp 文件都必须用到 pch 文件,这简直就是个先有鸡还是先有蛋的问题。现在还是查 Google 解决了。
整个项目接近尾声了,编译速度才终于可以忍受:这就是一个 Build Manager 的失败之处了。至于 AWS 组前几天才号召在 Post Build 中复制文件到目标位置:胡乱作出的决定,甚至连 attrib -r 都不用,当初设计源代码仓库目录的时候就有些问题,把二进制文件与需要原样发布的文件

不满意
grumpy 坏脾气
contemplative 沉思冥想
awake
(one comment said:)
The exciting part is the new features which apparently won't ever be accepted by the kernel crew (meta data pseudo files, etc). So, yeah, the neutered version of reiser4 that might actually get merged won't be very interesting at all.
As far as coding style and design go, the Linux kernel is basically an advertising platform as far as Hans is concerned. It is the place where his filesystems can go that guarantees high visibility and usage. If you're a very ambitious filesystem designer (you might even say "fame seeking"), what more could you ask for? It's obvious that he cares very little for the design of the kernel as a whole, provided it provides the necessary facilities for his filesystems to work.
(another comment:)
It is quite simple. Hans already dump a filesystem into the kernel and then threw his hands in the air when it came to maintenance. This time the developers want to know that they can easily maintain the code before he does the same.