笔记
Mrlians
这个作者很懒,什么都没留下…
展开
-
QEMU+UBOOT安装
QEMU+UBOOT 1. 首先安装交叉编译器,执行: sudo apt-get install gcc-arm-linux-gnueabi 2.下载U-Boot源文件: wget http://ftp.denx.de/pub/u-boot/u-boot-2017.01.tar.bz2 3.解压源文件 tar jvxf u-boot-2017.01.tar.bz2 ``` **4.进...原创 2018-10-29 17:13:55 · 1074 阅读 · 0 评论 -
搭建QEMU+A9环境
搭建QEMU+A9环境 参考: https://blog.csdn.net/zouyu1746430162/article/details/78150745 https://blog.csdn.net/linyt/article/details/42504975 https://www.jianshu.com/p/0ca97e5b6c08 文件解压 1、*.tar 用 tar –xvf 解压 2、...转载 2018-10-24 17:23:00 · 438 阅读 · 0 评论 -
git指令
创建git仓库 – git init 添加xx文件到仓库缓存区 – git add 将文件提交到仓库 – git commit -m 查看仓库状态 – git status 查看更改 (工作区与暂存区对比) – git diff 查看历史记录 – git log --pretty=oneline – git log --graph --pretty=oneline --abbrev-c...原创 2019-01-17 20:22:09 · 114 阅读 · 0 评论 -
解决VS2005无法创建 VC++ Smart Device Project 工程问题
安装vs2005 sp1就可以解决原创 2019-01-16 09:16:11 · 216 阅读 · 0 评论 -
一个64位操作系统的设计与实现-环境手顺
<一个64位操作系统的设计与实现> 拉取bochs svn checkout -r r13534 http://svn.code.sf.net/p/bochs/code/trunk/bochs bochs 安装 sudo ./configure --with-x11 --with-wx --enable-debugger --enable-disasm --enable-all-op...原创 2019-04-04 12:18:06 · 1044 阅读 · 0 评论 -
QT打包发布流程
<补图> 1.以 Release 方式编译生成 exe 程序 2.拷贝到一个文件夹下,例如:D:\test (路径中不要有中文) 然后使用 windeployqt 工具命令:windeployqt test.exe 3.打开Enigma Virtual Box 4.打包 ...原创 2019-04-11 12:23:59 · 136 阅读 · 0 评论 -
Ubuntu-pyqt5+qtDesigner安装手顺
(1)安装Python3.6 并设为系统默认Python版本 cd /usr/bin //python是个连接文件 默认指向python2.7 删除创建指向python3的链接文件 sudo rm -rf python sudo ln -s /usr/bin/python3 /usr/bin/python (2)安装PyQt5: sudo apt-get update sudo apt-get ...原创 2019-05-16 11:01:23 · 1633 阅读 · 0 评论