上一页 1 2 3 4 5 6 7 8 ··· 61 下一页
摘要: build:执行代码编译的主机,正常的话就是你的主机系统。这个参数一般由config.guess来猜就可以。当然自己指定也可以。host:编译出来的二进制程序所执行的主机,因为绝大多数是如果本机编译,本机执行。所以这个值就等于build。只有交叉编译的时候(也就是本机编译,其他系统机器执行)才会bu 阅读全文
posted @ 2019-04-27 13:56 jiu~ 阅读(1983) 评论(0) 推荐(0) 编辑
摘要: 1. 下载gdb源码,7.12版本,下载地址:ftp://ftp.gnu.org/gnu/gdb。2. 编译gdb:0> cd gdb-7.121> mkdir __install2> ./configure --target=arm-linux --enable-shared --prefix=\ 阅读全文
posted @ 2019-04-27 13:54 jiu~ 阅读(1480) 评论(0) 推荐(0) 编辑
摘要: (一)安装NFS服务器1.1-安装Ubuntu nfs服务器端: sudo apt-get install nfs-kernel-server 1.2-安装nfs的客户端: sudo apt-get install nfs-common​ (在安装nsf-kernel-server的时候,也会安装n 阅读全文
posted @ 2019-04-24 08:23 jiu~ 阅读(642) 评论(0) 推荐(0) 编辑
摘要: 整理了Ubuntu Linux操作系统下apt-get命令的详细说明,分享给大家。常用的APT命令参数:apt-cache search package 搜索包apt-cache show package 获取包的相关信息,如说明、大小、版本等sudo apt-get install package 阅读全文
posted @ 2019-04-24 07:54 jiu~ 阅读(20449) 评论(0) 推荐(0) 编辑
摘要: 修改cpplint.py:1. main()中注释掉 # sys.stderr = codecs.StreamReaderWriter(sys.stderr, # codecs.getreader('utf8'), # codecs.getwriter('utf8'), # 'replace')2. 阅读全文
posted @ 2019-04-24 07:48 jiu~ 阅读(834) 评论(0) 推荐(0) 编辑
摘要: The following command in a job script: Seems to be causing the following ci lint error: The colon (:) makes the line be interpeted as yaml map. The so 阅读全文
posted @ 2019-04-24 07:45 jiu~ 阅读(1925) 评论(0) 推荐(0) 编辑
摘要: This article introduces git pre-push hook. Problem In Lean project, we use a modified version of Google’s C++ style checker. I want to automatically r 阅读全文
posted @ 2019-04-24 07:41 jiu~ 阅读(1461) 评论(0) 推荐(0) 编辑
摘要: 【转自:http://dockone.io/article/8174】 在构建Docker容器时,我们应尽可能减小镜像的大小。使用共享层的镜像尺寸越小,其传输和部署速度越快。不过在每个RUN语句都会创建一个新层的情况下,如果我们需要获取镜像完成前的中间产物,又如何控制其大小呢?你可能已经注意到市面上 阅读全文
posted @ 2019-04-24 07:32 jiu~ 阅读(1594) 评论(0) 推荐(0) 编辑
摘要: import platform print platform.python_version() 阅读全文
posted @ 2019-04-24 07:22 jiu~ 阅读(4482) 评论(0) 推荐(0) 编辑
摘要: 1. echo的参数中, -e表示开启转义, /c表示不换行: 2. -n不换行: 阅读全文
posted @ 2019-04-24 07:20 jiu~ 阅读(4732) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 61 下一页