完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
扫一扫,分享给好友
大家好,我得到了“ELF ObjutpU.EXE已经停止工作”错误消息与XC16-V1.32 B(注意:没有问题与XC16 V1.31,V1.30,V1.26)我使用MLAB XIDE V4.0,Windows 7版本61.这里是问题细节:问题签名:问题事件名称:AppRead应用程序名称:ELF Objutp.eXE应用程序版本:0.0.0.0应用程序时间戳:59931408故障模块名称:ELF Objut.P.EXE故障模块版本:0.0.0.0故障模块时间戳:59931408异常代码:C000 00 5异常偏移:9001.944E OS版本:61.7601.2.1.0.25648区域ID:1033附加信息1:0A9E ADDIACT信息2:0A9E37 2D3B4AD19195B953A7882E789附加信息3:0A9E附加信息4:0A9E32D3B4AD19135B953A7882E789.请让我知道如何修复ELF Objult.EXE错误.谢谢!
以上来自于百度翻译 以下为原文 Hi Everyone, I got the "elf-objdump.exe has stopped working" error message with XC16 - v1.32B (note: there is no issue with XC16 v1.31, v1.30, v1.26) I'm using MLAB XIDE v4.0, windows 7 version 6.1. Here is problem details: Problem signature: Problem Event Name: APPCRASH Application Name: elf-objdump.exe Application Version: 0.0.0.0 Application Timestamp: 59931408 Fault Module Name: elf-objdump.exe Fault Module Version: 0.0.0.0 Fault Module Timestamp: 59931408 Exception Code: c0000005 Exception Offset: 0000394e OS Version: 6.1.7601.2.1.0.256.48 Locale ID: 1033 Additional Information 1: 0a9e Additional Information 2: 0a9e372d3b4ad19135b953a78882e789 Additional Information 3: 0a9e Additional Information 4: 0a9e372d3b4ad19135b953a78882e789 Please let me know how to fix the elf-objdump.exe error. Thanks in advance! |
|
相关推荐
4个回答
|
|
非常经常地得到这个错误。在MPLAB内部,我得到错误255,它不生成十六进制/MAP,运行MPLAB之外的编译器“停止工作”,但它至少生成十六进制/MAP。
以上来自于百度翻译 以下为原文 Getting this error very regularly. Inside of MPLAB, I get error #255 and it generates no hex/map, running the compiler outside of MPLAB I get "stopped working" but at least it generates a hex/map. |
|
|
|
嗨,你应该通过一张票到Microchip报告,如果你想把这个固定在未来的版本。这是一个用户论坛。
以上来自于百度翻译 以下为原文 Hi, You should report this through a ticket to Microchip if you want to get this fixed in a future version. This is a user forum. Regards |
|
|
|
大家好,我们最近发现这个问题与ObjDIP崩溃后的建设,并意识到它。我在星期三收到了一些报告,确定了原因和决议。这并没有真正帮助用户今天在那里!问题是闪存中有一些数据段(通常是包含数据的空间(PROG)或‘代码’汇编部分’)看起来像代码段,而检查器工具正在尝试评估代码(仅用于EP设备)。不幸的是,这是一个戏剧性的失败。好的新是,此时编译器和链接器已经完成了那里的工作,并且ELF文件就坐在它应该坐的地方(做进一步的构建-不干净和构建)应该允许MPLAB X找到并编程该设备。坏消息是,检查器工具无法检查此代码的安全性。我们发布了计划,并为V1.33计划了一个快速回合发布,这将是另一个支持发布的版本,包括一些bug修复,包括这一个。如果你对这个问题还有任何疑问,请给我一个私人信息,很乐意回答。
以上来自于百度翻译 以下为原文 Hi all, We have recently discovered this issue with objdump crashing after the build and are aware of it. I received some reports on Wednesday and have identified the cause and the resolution. That doesn't really help users out there today! The issue is that there are some data sections in FLASH (typically space(prog) or 'code' assembly sections that contain data) that look like code sections and the checker tool is trying to evaluate the code (only for EP devices). Unfortunately this fails in a dramatic way. The good new is that at this point the compiler and linker have finished there work, and an ELF file is sitting where it ought to sit (doing a further build - not clean and build) should allow MPLAB X to find it and program the device. The bad news is that the checker tool is not able to check the safety of this code. We got off schedule with releases and are planning a quick-turn release for v1.33 which will be another part-support release with a number of bug fixes, including this one. If you have any further questions about this issue, please send me a private message and will be happy to respond. Regards Calum |
|
|
|
嗨,Calum,我也发现了这个错误。我正在编写DSPIC33 EV256GM106代码,在TISISO中保留一些空间(对于引导加载程序),这会导致ELF对象在1.30和1.32 b中崩溃(显然它不只是受影响的1.32字节)。-代码中的Mconst(因为声明const而不初始化它总是将RAM中的const放在内存中)
以上来自于百度翻译 以下为原文 Hi Calum, i just discovered this error, too. I am writing code for dsPIC33EV256GM106 doing this volatile const __attribute__((space(prog),address(0x200))) uint16_t reserved_space[256] to reserve some space (for a bootloader) will cause elf-objdump to crash in both 1.30 and 1.32B (so apparently it's not just 1.32B that is affected) a workaround will be to do as compiler manual suggests, add -mconst-in-code and volatile const __attribute__((address(0x200))) uint16_t reserved_space[256] = {0,}; (because declaring the const without initializing it will always put the const in RAM) |
|
|
|
只有小组成员才能发言,加入小组>>
5238 浏览 9 评论
2028 浏览 8 评论
1950 浏览 10 评论
请问是否能把一个ADC值转换成两个字节用来设置PWM占空比?
3204 浏览 3 评论
请问电源和晶体值之间有什么关系吗?PIC在正常条件下运行4MHz需要多少电压?
2253 浏览 5 评论
775浏览 1评论
665浏览 1评论
有偿咨询,关于MPLAB X IPE烧录PIC32MX所遇到的问题
593浏览 1评论
PIC Kit3出现目标设备ID(00000000)与预期的设备ID(02c20000)不匹配。是什么原因
675浏览 0评论
575浏览 0评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-22 21:07 , Processed in 1.325723 second(s), Total 83, Slave 66 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号