网站首页 站内搜索

搜索结果

查询Tags标签: make,共有 547条记录
  • 安装VMware——Unable to install all modules.See log /tmp/vmware-han/vmware-6098.log for detalls.(Exit co

    这是编译失败的原因在VM社区有这样一种解决方案,亲测有效,帮助我自己解决的麻烦,所有在这分享,希望能够帮助到小伙伴:不要被接下来的代码吓倒因为这是github上项目,所以要先在ubuntu上安装gitsudo apt-get install git之后就一顿猛敲git clone https://github.com/m…

    2022/8/23 5:22:56 人评论 次浏览
  • 编译linux小记

    (可选)编译环境搭建 docker pull swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker:1.0.0 docker run -it -p 8070:8070 -v ~/inner:/tmp --privileged=true swr.cn-south-1.myhuaweicloud.com/openharmony-docker/openharmony-docker:1.0.0 /b…

    2022/8/21 5:28:47 人评论 次浏览
  • centos7安装nginx

    1、解压 tar -zxvf nginx.tar.gz2、进入解压后的文件 cd nginx3、执行configure文件./configure 可能会有报错: ./configure: error: the HTTP gzip module requires the zlib library. You can either disable the module by using --without-http_gzip_module option, …

    2022/8/21 5:25:27 人评论 次浏览
  • 深蓝学院—机器人学基础学习笔记——第一章(环境配置)

    chapter1-homework 前言 ​ 因为课程建议使用ros-melodic版本,但我此前已经在ubuntu20.04安装了ros-noetic版本,安装过程出了点小插曲,故此简单记录下ros-noetic版本下安装Turtlebot2的过程,给大家排排雷,如有不足之处欢迎广大同仁批评指正,以免误人子弟。 1.跟着Le…

    2022/8/13 6:22:55 人评论 次浏览
  • Linux 安装Git

    一、下载 镜像站:https://mirrors.edge.kernel.org/pub/software/scm/git/,自行选择版本下载,我这里下载的是 git-2.35.2.tar.gz 二、安装 1、将下载的包传至服务器(自己创建的任意文件夹) 2、解压(进入包所在目录)tar -zxvf git-2.35.2.tar.gz 3、安装所需依赖y…

    2022/8/13 5:25:03 人评论 次浏览
  • Unable to make protected final java.lang.Class java.lang.ClassLoader.defineClass

    之前遇到jdk版本升级,新版本的JDK对一些反射相关的功能进行了限制从而引发的问题,我自己遇到的是在上传excel文件失败,开始以为是文件上传方式的问题,检测无误后还是没解决。 1.下面是controller@PostMapping(value = "/importExcel", consumes = "mul…

    2022/8/12 1:27:56 人评论 次浏览
  • (Python) ConnectionError: Max retries exceeded with url

    To solve the requests "ConnectionError: Max retries exceeded with url", use a Retry object and specify how many connection-related errors to retry on and set a backoff factor to apply between attempts.main.pyimport requests from requests.ada…

    2022/8/12 1:25:52 人评论 次浏览
  • leetcode 769. Max Chunks To Make Sorted 最多能完成排序的块(中等)

    一、题目大意 标签: 数组 https://leetcode.cn/problems/max-chunks-to-make-sorted 给定一个长度为 n 的整数数组 arr ,它表示在 [0, n - 1] 范围内的整数的排列。 我们将 arr 分割成若干 块 (即分区),并对每个块单独排序。将它们连接起来后,使得连接的结果和按升序排…

    2022/8/6 23:27:10 人评论 次浏览
  • linux安装Texinfo

    安装步骤 tar zxvf texinfo-5.2.tar.gz cd texinfo-5.2 ./configure --prefix=/usr make make check make install查看版本 [root@master texinfo-5.2]# makeinfo --version makeinfo (GNU texinfo) 5.2

    2022/8/6 5:22:46 人评论 次浏览
  • C++ 中 shared_ptr weak_ptr

    shared_ptrstd::shared_ptr<int> sp1 = new int(); // shared count = 1, weak count = 0 std::shared_ptr<int> sp2(sp1); // shared count = 2, weak count = 0 std::shared_ptr<int> sp3 = sp2; // shared count = 3, weak count = …

    2022/7/24 1:25:08 人评论 次浏览
  • linux kernel 编译的过程中 make defconfig、 make menuconfig、 make savedefconfig、 make olddefconfig 的含义

    1、 make defconfig首先通过make xxx_defconfig,生成最开始的.config,相当于把 XXX_defconfig 文件复制为 .config 文件,其中 defconfig 是最小的 config 项,kernel编译会根据 .config 文件去编译驱动情况; 2、make menuconfigmake menuconfig 的作用类似于 make …

    2022/7/15 5:21:23 人评论 次浏览
  • Linux环境下配置vscode的C/C++ 的make编译环境(编写makefile方式)代码Demo版

    以前写过同样话题下的图文版的,这里给出一个代码Demo版本,上一个图文版本参见: Linux环境下配置vscode的C/C++ 的make编译环境(编写makefile方式)================================================

    2022/7/12 5:22:21 人评论 次浏览
  • macos m1下编译linux内核

    说明 结合网上一些资源并折腾了一段时间后才成功的。因为完全参考无法正常编译,记录一下供有需要的,希望能对其有所帮助uboot也可以参考编译通过macos版本 uname -a Darwin finnmac-mini.local 21.5.0 Darwin Kernel Version 21.5.0: Tue Apr 26 21:08:29 PDT 2022; roo…

    2022/7/11 5:20:07 人评论 次浏览
  • centos安装nginx

    下载源码包 wget http://nginx.org/download/nginx-1.20.1.tar.gz 解压 tar -zvxf nginx-1.20.1.tar.gz安装依赖 yum -y install gcc gcc-c++ zlib-devel预编译 ./configure --prefix=/usr/local/nginx编译安装 make && make install开启服务,进入安装目录 ./ngi…

    2022/7/10 5:20:20 人评论 次浏览
  • vscode中配置C/C++调试环境(launch.json和tasks.json)

    launch.json和tasks.json launch.json launch.json中存放运行或者调试可执行文件时的配置: {// Use IntelliSense to learn about possible attributes.// Hover to view descriptions of existing attributes.// For more information, visit: https://go.microsoft.com…

    2022/7/9 14:24:21 人评论 次浏览
扫一扫关注最新编程教程