是否可以使用 Visual Studio 为索尼爱立信手机(symbian)编程?
这个问题只是出于好奇,我拥有一个 P1i,使用它会很不错:)
一些文档的链接就可以了:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
这个问题只是出于好奇,我拥有一个 P1i,使用它会很不错:)
一些文档的链接就可以了:)
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
它不受官方支持,但显然你可以让它工作:
http: //www3.symbian.com/faq.nsf/7b5405edb1250e7c802569ee005d054e/30398b3e9500a24d80256c7f00693a91?OpenDocument
另外,如果你谷歌一下,还有一些第三方解决方案
It isn't officially supported, but apparently you can get it to work:
http://www3.symbian.com/faq.nsf/7b5405edb1250e7c802569ee005d054e/30398b3e9500a24d80256c7f00693a91?OpenDocument
Plus there are some 3rd party solutions out there if you google
是的,你可以 - 使用旧版本 (VC++.NET 2003) 和 Carbide.vs
Yes you can - using older versions (VC++.NET 2003) and Carbide.vs
不要忘记 VS 也支持基于 makefile 的项目,因此只要有一个基于 CLI 的编译器,您几乎可以开发任何东西。 有时,如果幸运的话,Intellisense 可以拾取标头并进行自动补全。
编辑:要在 VS2K5 中执行此操作,请执行以下操作:
选择“文件”->“新建”->“项目...”
在对话框中,选择左侧树视图的 Visual C++ 分支下的常规类型。 右侧列表应该有一个“Makefile Project”。 突出显示它,选择项目名称,然后确定。 现在,您将获得一个向导,允许您设置构建命令行(make 的版本等)。
您必须使用源文件手动创建和更新 makefile,但其他一切都可以像本机 VS 项目一样工作(F7 构建等)。
Don't forget the VS supports makefile based projects as well so you can pretty much develop anything as long as there's a CLI based compiler for it. Sometimes, if you're lucky, Intellisense can pick up the headers and do autocompletion.
EDIT: To do this in VS2K5, do the following:
Select File->New->Project...
In the dialog, select the General type under Visual C++ branch of the left hand tree view. The right hand list should have a 'Makefile Project'. Highlight that, select a project name and then OK. You now get a wizard that allows you to set up the build command lines (what version of make and so on).
You have to manually create and update the makefile with the source files but everything else works as if it were a native VS project (F7 to build, etc).