Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
Env
软件包添加源代码的方式
发布于 2019-09-12 11:19:53 浏览:1988
订阅该版
想添加软件包,源代码目前是在svn上,rtt只支持git和压缩包,如果压缩包所在的路径是本地路径则出现下面的错误,请问该如何解决? ``` admin@DESKTOP-ITOA66O E:\source\stm32f103-dofly-M3S > pkgs --update Package was NOT found on mirror server. Using a non-mirrored address to download. Start to download package : qerpc.zip E:\source\erpc\env_released_1.1.2\env\tools\ConEmu\ConEmu\..\..\..\local_pkgs\qerpc.zip download fail! {'path': '/packages/misc/qerpc', 'ver': 'latest', 'name': 'QERPC'} download failed. Package download failed list: {'path': '/packages/misc/qerpc', 'ver': 'latest', 'name': 'QERPC'} You need to reuse the
command to download again. ==============================> cJSON update done ==============================> netutils update done Operation failed. ```
查看更多
8
个回答
默认排序
按发布时间排序
sophia
2019-09-12
这家伙很懒,什么也没写!
>好像没明白你在问什么? >是你有一个软件包,软件包是以压缩包的方式存在于工程中,然后要添加进工程? >还是 ... --- 想添加软件包,源代码目前是在svn上,但是rtt只支持git和压缩包,不支持svn,所以我只能选择压缩包的方式存放在本地路径 按照文档修改json文件后,pkgs-update出现以下错误
sophia
2019-09-12
这家伙很懒,什么也没写!
``` "license": "Apache-2.0", "repository": "\\\\192.168.123.207\\share_to_everyone", "icon": "unknown", "homepage": "unknown", "doc": "unknown", "site": [ { "version": "v1.0.0", "URL": "", "filename": "qerpc-1.0.0.zip", "VER_SHA": "fill in the git version SHA value" }, { "version": "latest", "URL": "\\\\192.168.123.207\\share_to_everyone", "filename": "qerpc.zip", "VER_SHA": "fill in latest version branch name, such as master" } ] ``` 我也试过将压缩包放在共享路径下,这是json文件中源码路径相关的内容 ,也是同样的错误。
sophia
2019-09-12
这家伙很懒,什么也没写!
如果url填入svn地址,则出现如下错误 ``` > pkgs --update Package was NOT found on mirror server. Using a non-mirrored address to download. Start to download package : [https://192.168.123.5/svn/repoSoft/branches/people/xulj/stm32f103-dofly-M3S/rt-thread/components/erpc](https://192.168.123.5/svn/repoSoft/branches/people/xulj/stm32f103-dofly-M3S/rt-thread/components/erpc) e.message:[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590) [https://192.168.123.5/svn/repoSoft/branches/people/xulj/stm32f103-dofly-M3S/rt-thread/components/erpc](https://192.168.123.5/svn/repoSoft/branches/people/xulj/stm32f103-dofly-M3S/rt-thread/components/erpc) e.message:[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590) [https://192.168.123.5/svn/repoSoft/branches/people/xulj/stm32f103-dofly-M3S/rt-thread/components/erpc](https://192.168.123.5/svn/repoSoft/branches/people/xulj/stm32f103-dofly-M3S/rt-thread/components/erpc) e.message:[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590) [https://192.168.123.5/svn/repoSoft/branches/people/xulj/stm32f103-dofly-M3S/rt-thread/components/erpc](https://192.168.123.5/svn/repoSoft/branches/people/xulj/stm32f103-dofly-M3S/rt-thread/components/erpc) e.message:[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590) [https://192.168.123.5/svn/repoSoft/branches/people/xulj/stm32f103-dofly-M3S/rt-thread/components/erpc](https://192.168.123.5/svn/repoSoft/branches/people/xulj/stm32f103-dofly-M3S/rt-thread/components/erpc) e.message:[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590) [https://192.168.123.5/svn/repoSoft/branches/people/xulj/stm32f103-dofly-M3S/rt-thread/components/erpc](https://192.168.123.5/svn/repoSoft/branches/people/xulj/stm32f103-dofly-M3S/rt-thread/components/erpc) e.message:[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590) E:\source\erpc\env_released_1.1.2\env\tools\ConEmu\ConEmu\..\..\..\local_pkgs\ download fail! {'path': '/packages/misc/qerpc', 'ver': 'latest', 'name': 'QERPC'} download failed. Package download failed list: {'path': '/packages/misc/qerpc', 'ver': 'latest', 'name': 'QERPC'} You need to reuse the
command to download again. ==============================> cJSON update done ==============================> netutils update done Operation failed. ```
sophia
2019-09-12
这家伙很懒,什么也没写!
自行修改了E:\source\erpc\env_released_1.1.2\env\tools\scripts\package.py 暂时可以提供svn下载
wuhanstudio
2019-09-13
这家伙很懒,什么也没写!
>自行修改了`E:\source\erpc\env_released_1.1.2\env\tools\scripts\package.py` 暂时可以提供svn下载 ... 如果是本地软件包,其实可以直接添加一个 `SConscript`,然后在 `rtconfig.h` 里面添加自己定义的宏定义,`scons --target=mdk5 -s` 就会被添加到工程了,不需要用到 `pkgs --update`。 在软件包发布前一般都是这样本地测试的。
sunsqchina
2023-03-27
这家伙很懒,什么也没写!
请问如何将SVN路径下的软件包加载到工程中,如何修改package.py,感谢
撰写答案
登录
注册新账号
关注者
0
被浏览
2k
关于作者
sophia
这家伙很懒,什么也没写!
提问
5
回答
15
被采纳
1
关注TA
发私信
相关问题
1
用scons构建代码出现问题
2
求助用scons生成不了mdk工程
3
关于使用scons编译的问题
4
关于scons 编译CPP问题求教
5
scons编译出现警告信息
6
SCons生成MDK5工程出错
7
realtouch的scons问题
8
SCons的PreAction能用吗?
9
scons 编译时出错。
10
求教:关于scons构建rtt时的两个问题
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
2
RT-Thread 发布 EtherKit开源以太网硬件!
3
rt-thread使用cherryusb实现虚拟串口
4
《C++20 图形界面程序:速度与渲染效率的双重优化秘籍》
5
《原子操作:程序世界里的“最小魔法单位”解析》
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
WIZnet_W5500
UART
ota在线升级
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
ulog
C++_cpp
at_device
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
a1012112796
13
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
本月文章贡献
程序员阿伟
8
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
3
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部