用于嵌入式开发/交叉编译的最佳构建系统
我现在正在使用 dsPIC 进行一些开发,但我并不完全喜欢 MPLAB。 我实际上正在将 Visual Studio 与 makefile 项目一起使用。 目前我正在使用 SCons,在找到 设置使用备用编译器的有用指南。 尽管如此,我还是忍不住想知道,是否有更好的构建系统? 另外,有没有更好的方法让 Scons 做到这一点?
I'm doing some development right now using dsPICs and I'm not exactly in love with MPLAB. I'm actually using Visual Studio with a makefile project. Currently I'm using SCons, which seems to work fairly well, after finding a helpful guide to setting up to use an alternate compiler. Still, I can't help but wonder, is there a better build system for this? And also, is there a better way to make Scons do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需使用 vim、makefile 并自行调用 MPLAB 命令行编译器即可。
Just use vim, makefiles and call the MPLAB command line compiler yourself.
您可以使用很多构建系统:
There are quite a few build systems that you can use:
进行嵌入式开发最简单的方法是使用您最喜欢的代码编辑器编写代码,然后切换到编译器的 IDE 来构建代码并将其下载到处理器。
显然,代码编辑器和编译器IDE可能是同一个东西,甚至更简单!
The very simplest way to do embedded development is to use your favourite code editor for writing the code, then switch to the compiler's IDE to build and download the code to the processor.
Obviously, the code editor and the compiler IDE may be the same thing, which is even simpler!