与dll相关的问题
任何人都可以指导我下面提到的问题可能是什么:-
替代文本 http://lh5.ggpht.com/_D1MfgvBDtsU/S5iLmYivj1I/AAAAAAAAABU/8Mquam_XxZ4/s912/dll%20issue.PNG
此 PP 文件夹位于我办公桌的以下路径中 " E:\WINCE600\PLATFORM\COMMON\SRC\SOC\COMMON_FSL_V2_PDK1_7\IPUV3"
在此 IPUV3 文件夹中,存在 PP 文件夹,该文件夹执行 调整大小、旋转和图像的转换任务。这个PP文件夹由PDK和PDK组成。 SDK。在 PDK 文件夹内有一个名为 Ppclass.cpp 的文件,我已对其进行了修改。
修改 Ppclass.cpp 后我有 重建PP文件夹,检查是否 在我的项目中修改是 反映与否。但后来我发现 问题出在 pp.dll 上 即使在重建 PP 文件夹后 新的 pp.dll 未突出显示。
另外,iMX51-EVK-PDK1_7 的路径如下:
"E:\WINCE600\PLATFORM\iMX51-EVK-PDK1_7\target"
所以现在我想要建议如何解决这个问题。我确信这个问题与 pp.dll 有关,
请指导我遵循正确的步骤。我将非常感谢你们大家。
提前致谢
Can anyone guide me what could be the problem in the mentioned below:-
alt text http://lh5.ggpht.com/_D1MfgvBDtsU/S5iLmYivj1I/AAAAAAAAABU/8Mquam_XxZ4/s912/dll%20issue.PNG
This PP folder is present in the following path at my desk "E:\WINCE600\PLATFORM\COMMON\SRC\SOC\COMMON_FSL_V2_PDK1_7\IPUV3"
In this IPUV3 folder, PP folder is present which does the resize,rotation & conversion task of an image. This PP folder consists of PDK & SDK . Inside PDK folder there is a file called Ppclass.cpp which i have modified.
After modifying the Ppclass.cpp i have
rebuild the PP folder to check whether
in my project the modification is
reflected or not. But later i found
that the problem is of pp.dll which
even after the rebuild of PP folder
the new pp.dll is not highlighted.
Also the path for iMX51-EVK-PDK1_7 is as follows:
"E:\WINCE600\PLATFORM\iMX51-EVK-PDK1_7\target"
So now i want advice that how to sort this problem. I am sure that this problem is related to pp.dll
Please guide me to follow the correct step. I will be very thankful to u all.
Thanks in Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
代码更改之前一切是否按预期工作?
您遇到任何构建错误吗?
IPUV3 目录中是否有指定两个子目录的 DIRS 文件?
问题是什么?说明你做了什么、你期望什么以及结果是什么。目前还不清楚。
更新:
根据下面的评论,构建过程似乎在解析您的 SOURCES 文件之一时遇到问题。从错误中我猜测你有类似的东西:
SOURCELIBS=E:\...
尝试:
\
符号告诉工具下一行还有更多值。顺便说一句,我不知道谁在 SOURCES 文件上写了这个,但我认为使用绝对路径是不好的做法。您应该将该宏用于您的平台路径
_TARGETPLATROOT
。像这样使用它:$(_TARGETPLATROOT)\...
Was everything working as expected before the code change?
Are you getting any build errors?
Do you have a DIRS file in the IPUV3 directory that specifies the two subdirectories?
What is the problem? State what you did, what you expect and what was the outcome. It is not clear right now.
Update:
According to the comment below it seems that the build process is having trouble parsing one of your SOURCES files. From the error my guess is you have someting similar to:
SOURCELIBS=E:\...
Try:
The
\
symbol tells the tool that there is are more values on the next line.By the way, I don't know who wrote this on the SOURCES file, but I think it is bad practice to use absolute paths. You should use the macro for your platform path
_TARGETPLATROOT
. Use it like this:$(_TARGETPLATROOT)\...