我希望能够看到我的Arduino草图的汇编语言列表。我怎样才能做到这一点?
更新:我正在运行计算机上的Arduino软件。
发布于 2009-05-28 15:45:31
以下(哈基)步骤将在Windows上提供Arduino草图和相关库的汇编语言列表:
.pde文件)的目录中-S添加到abuild.bat中的abuild_gcc_opts变量(第158行)abuild -r -c <pde_filename>... warning: #warning "This file has been moved to <util/delay.h>."
.\obj\<pde_filename>.cpp.o: file format not recognized: treating as linker script
.\obj\<pde_filename>.cpp.o:1: syntax error汇编语言清单可以在创建的.o目录中的obj文件中找到。例如,草图本身的清单在obj\<pde_filename>.cpp.o中
https://stackoverflow.com/questions/919781
复制相似问题