Unable to locate the feature for the SYSGEN_JSCRIPT variable in the catalog

GARY 2009-12-17 11:40:14
我用的PB4.2,每次选完我们的BSP,然后新建一个工程。都有如下的Warning(加粗部分),之后什么组件也不加,直接Build PlatForm就总会出现3个错误,用以前编译好的工程也是如此。不知道为什么。3个错误在最后列出。另外想问一下,PB4.2需要打补丁吗?需要的话打那个版本的补丁?希望得到大家的指点。
Updating the feature and driver list for your platform.
Warning PB2007: Unable to locate the feature for the SYSGEN_JSCRIPT variable in the catalog.
Added the Times New Roman (Subset 1_30) feature (SYSGEN_FONTS_TIMES_1_30) to the platform.
Added the Toolhelp API feature (SYSGEN_TOOLHELP) to the platform.
Added the Pocket Internet Explorer HTML View (WEBVIEW) feature (SYSGEN_WEBVIEW) to the platform.
Added the Printer Devices feature (SYSGEN_PRINTING) to the platform.
Added the Standard I/O (STDIO) feature (SYSGEN_STDIO) to the platform.
Added the SimSun & NSimSun feature (SYSGEN_FONTS_SIMSUN) to the platform.
Added the Standard I/O ASCII (STDIOA) feature (SYSGEN_STDIOA) to the platform.
Added the Internet Explorer Multiple-Language Base API feature (SYSGEN_MLANG) to the platform.
Added the Symbol feature (SYSGEN_FONTS_SYMBOL) to the platform.
Added the Storage Manager feature (SYSGEN_STOREMGR) to the platform.
Added the CAB File Installer/Uninstaller feature (SYSGEN_WCELOAD) to the platform.
Added the Windows Internet Services feature (SYSGEN_WININET) to the platform.
Added the URL Moniker Services feature (SYSGEN_URLMON) to the platform.
Added the RAM and ROM File System feature (SYSGEN_FSRAMROM) to the platform.
Added the C++ Exception Handling feature (SYSGEN_CPP_SEH) to the platform.
Added the Sample Internet Explorer 6.0 Internet Options Control Panel feature (SYSGEN_INETCPL) to the platform.
Added the Software-based Input Panel Driver feature (SYSGEN_SOFTKB) to the platform.
Added the Tahoma (Subset 1_07) feature (SYSGEN_FONTS_TAHOMA_1_07) to the platform.
Added the Internet Explorer Browser Control Host feature (SYSGEN_SHDOCVW) to the platform.
Added the RAM-based Registry feature (SYSGEN_FSREGRAM) to the platform.
Added the National Language Support (NLS) feature (SYSGEN_CORELOC) to the platform.
Added the Run-Time Type Information feature (SYSGEN_RTTI) to the platform.
Added the Telephony API (TAPI 2.0) feature (SYSGEN_TAPI) to the platform.
Added the Printer Devices driver to the platform.
Added the PCMCIA (i82365-compatible) driver to the platform.
Added the CS8900 driver to the platform.
Added the S32410 Touch Panel driver to the platform.
Added the S32410 USB Device driver to the platform.
Added the Storage Devices driver to the platform.
Added the PCI Bus driver to the platform.
Added the S32410 Audio driver to the platform.
Added the SMDK2410 Power Button driver to the platform.
Added the NOP (Stub) Keyboard/Mouse English driver to the platform.
Added the S32410 LCD Display driver to the platform.
Added the S32410 Serial UART driver to the platform.
1 warnings found. Not all features or drivers could be added. The build system will automatically include these when you build the platform.
——————————————————————————————————————————————————————
makeimg: FATAL ERROR: Cannot open D:\WINCE420\PUBLIC\THREE\RelDir\MY2410~1\postproc\platform.bib
makeimg: FATAL ERROR: Cannot open D:\WINCE420\PUBLIC\THREE\RelDir\MY2410~1\postproc\platform.bib
Error PB2505: Error executing #(D:\WINCE420\PUBLIC\THREE\RelDir\MY2410~1\)makeimg.exe.

THREE - 3 error(s), 0 warning(s)
...全文
267 4 打赏 收藏 转发到动态 举报
写回复
用AI写文章
4 条回复
切换为时间正序
请发表友善的回复…
发表回复
mxz123456 2010-10-19
  • 打赏
  • 举报
回复
1、BSP包的的名称 要看CEC文件,路径要正确
2、Setting要设置
cec 文件不是在 C:\WINCE420\PLATFORM\SMDK2410 目录下吗
还有 setting 也设置了 啊 请高手 说的清楚些 谢了
mxz123456 2010-10-19
  • 打赏
  • 举报
回复
到底是 什么原因啊?有知道的 快说答案呗 我也遇到此类问题了 谢谢
宇帆 2009-12-19
  • 打赏
  • 举报
回复
1、BSP包的的名称 要看CEC文件,路径要正确
2、Setting要设置
guopeixin 2009-12-19
  • 打赏
  • 举报
回复
jf,哈哈
代码下载地址: https://pan.quark.cn/s/a4b39357ea24 图书馆系统非常适合运用C++面向对象的特性进行建模。图书馆管理系统主要由四个关键模块构成:图书借阅、图书归还、图书维护以及读者服务。在系统设计中,可以定义一个读者类(Reader),用于存储每位读者的详细资料;读者数据库类(Rdatabase),用于管理所有读者的信息;图书类(Book),用于记录每本图书的基本属性;图书数据库类(Bdatabase),用于维护所有图书的记录。 【图书馆管理系统构建】 基于C++面向对象编程的图书馆管理系统,其核心功能划分为四个主要部分:图书借阅、图书归还、图书维护和读者服务。该系统通过设计多种类来模拟图书馆的实际运作,包括读者类(Reader)、读者数据库类(Rdatabase)、图书类(Book)以及图书数据库类(Bdatabase)。 1. **读者类(Reader)**: - 该类包含读者的基础资料,例如删除标记(tag)、读者编号(no)、姓名(name)以及所借图书列表(borbook)。 - 通过构造函数对读者信息进行初始化。 - 拷贝构造函数用于复制读者的姓名信息。 - 提供一系列成员函数,以支持信息的获取和设置操作。 2. **读者数据库类(Rdatabase)**: - 包含一个读者记录数组(read),并使用记录指针(top)来标识最新添加的读者信息。 - 构造函数从read.txt文件中加载所有读者数据,并在析构函数中将未删除的记录保存回文件。 - 提供管理读者信息的接口,例如添加、删除和查找功能。 3. **图书类(Book)**: - 该类存储图书的基本属性,包括删除标记、图书编号、书名(name)以及图书的在架状态...

19,523

社区成员

发帖
与我相关
我的任务
社区描述
硬件/嵌入开发 嵌入开发(WinCE)
社区管理员
  • 嵌入开发(WinCE)社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧