问题描述:这类问题的解决办法,提示少什么我们直接用sudo apt-get install 安装缺少的东西即可 如果使用make menuconfig的方式配置内核,又碰巧系统没有安装ncurses库(ubuntu系统 默认就没有安装此库),就会出现错误,错误信息大体上如下: kent@hu:~/w ...
分类:
系统相关 时间:
2021-06-25 16:56:33
阅读次数:
0
前言 安装有两种方式,一种是从包管理器中安装,另一种是使用源码安装。 推荐使用包管理安装,然后在程序中加入cmake文件,通过cmake文件来查找库。 不推荐使用源码安装,因为在找库的时候和包管理安装冲突,产生很多问题 包管理器安装 # google-glog + gflags sudo apt-g ...
分类:
其他好文 时间:
2021-06-25 16:36:00
阅读次数:
0
The NuGet package sources are configured through Visual Studio, but they're stored in a per-user configuration file, found at c:\Users\$USER\AppData\R ...
分类:
其他好文 时间:
2021-06-24 18:32:12
阅读次数:
0
开篇 这里是OpenGL学习中的随笔,会大致讲述定下的目标需求,思路和贴出认为的关键代码以及git仓库地址。会选择性的讲述途中遇到的陷阱,和注意点。 一些资源 笔者是windows 操作系统 VS 2019 CMake 工程文件生成工具 https://cmake.org/download/ GLF ...
分类:
其他好文 时间:
2021-06-23 16:41:09
阅读次数:
0
根据正点原子的移植教程移植完成并成功运行,这是前提。 但是自己用buildroot做的rootfs,把qt的库放到里边,运行测试程序缺报错 ` qt.qpa.plugin: Could not load the Qt platform plugin "linuxfb" in "/usr/lib/ar ...
分类:
系统相关 时间:
2021-06-21 21:06:47
阅读次数:
0
编译不出Makefile的原因 window 系统上我不安装了VS2017和TDM-GCC 而默认情况就给我生成vs2017 中的对应工程东西。 这个并不是我需要的。 我需要的是自动生成Makefile 错误提示 更加网络使用命令 cmake . -G "Unix Makefiles" //这个命令 ...
Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if i ...
分类:
其他好文 时间:
2021-06-17 17:13:05
阅读次数:
0
函数的定义 # 方式一 start () { echo "nginx start .... [OK]" #return 0 } stop () { echo "nginx stop .... [FAIL]" } # 方式二 function start { echo "nginx start ... ...
分类:
其他好文 时间:
2021-06-17 16:37:05
阅读次数:
0
error: manifest missing or unreadable -- please run init due to i made a mistake by deleting .git of kernel , i need recover it . so i found solution ...
分类:
其他好文 时间:
2021-06-16 18:11:46
阅读次数:
0
设置对应环境变量即可: set(ENV{http_proxy} "http://proxy.cd.intel.com:911") set(ENV{https_proxy} "https://proxy.cd.intel.com:911") 或者在Bash中Export相应环境变量。 socks5:/ ...
分类:
其他好文 时间:
2021-06-16 17:37:36
阅读次数:
0