将项目从 C++ Builder 2009 移植到 C++ Builder 11

Port project from C++ Builder 2009 to C++ Builder 11

我有一个相当大的项目,终于可以移植到最新最好的编译器版本 (11)。

根据您的经验,'simply' 在新编译器中打开项目并让编译器执行它的操作是个好主意吗?

或者您推荐其他方法?

From your experience, is it a good idea to 'simply' open the project in the new compiler and let the compiler do its thing ?

绝对不是。 rarely 按预期工作。当然,它会将项目文件 升级 到最新版本,但这不包括更新 component/library 引用等。您必须手动完成所有这些操作。

Or do you recommend a different approach ?

是的。许多年来的标准建议是全新创建一个新项目,然后根据需要将现有源 code/files 添加到其中。