准备工作 配置和编译Linux内核 下载和解压Linux内核,此次实验使用的是5.4.34版本 使用make menuconfig来配置内核,主要配置以下几个选项来开启内核调试功能 Kernel hacking > Compile-time checks and compiler options > ...
分类:
其他好文 时间:
2020-05-26 15:34:28
阅读次数:
76
1、创建使用ts的新项目 yarn create react-app my-test-app --template typescript 2、配置tsconfig.json (1)在根目录下新建文件tsconfig.extend.json { "compilerOptions": { "baseUr ...
分类:
移动开发 时间:
2020-05-25 15:39:10
阅读次数:
455
TensoeFlow+SSD的环境搭建 1. 先下载TensorFlow的models,然后进入models_master文件夹 https://github.com/tensorflow/models 2. 安装依赖库(见3~) Protobuf 3.0.0 Python tk Pillow 1. ...
分类:
其他好文 时间:
2020-05-24 12:10:44
阅读次数:
113
报错信息 解决的3种方案 在eclipse中右键项目,点击properties >java compiler中将JDK版本修改到1.5以上,具体版本根据自身电脑所安装的JDK版本为主;修改完java compiler之后选择maven >project facets中修改以下3项即可 在你本地安装的 ...
分类:
其他好文 时间:
2020-05-22 21:06:21
阅读次数:
48
maven-surefire-plugin : 单元测试相关 maven-assembly-plugin :构建一个源码或二进制文件的程序集(发行版). build-helper-maven-plugin:额外要打包的一些。 maven-compiler-plugin:编译。 spring-boot ...
分类:
其他好文 时间:
2020-05-22 12:59:17
阅读次数:
40
搬运:https://www.cnblogs.com/NyanKoSenSei/p/11427179.html 1. 问题描述 初学Maven,新建了一个基于Web骨架的Web项目,jar 包也导好了,作用域也设置正确了,Tomcat也正常运行了,可是就是说编译错误。 2. 问题原因 虽然我配置了T ...
分类:
Web程序 时间:
2020-05-21 23:44:03
阅读次数:
89
<plugin> <!-- 指定maven编译的jdk版本,如果不指定,maven3默认用jdk 1.5 maven2默认用jdk1.3 --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin ...
分类:
其他好文 时间:
2020-05-18 18:43:12
阅读次数:
54
问题1. error: error This file requires compiler and library support for the ISO C++ 2011 standard. This support is currently experimental, and must be e ...
分类:
编程语言 时间:
2020-05-18 12:06:05
阅读次数:
88
8.5 Compile-Time if8.5 编译期if Partial specialization, SFINAE, and std::enable_if allow us to enable or disable templates as a whole. C++17 additionally ...
分类:
其他好文 时间:
2020-05-16 18:51:10
阅读次数:
57
Preprocessor programs provide preprocessors directives which tell the compiler to preprocess the source code before compiling. Examples of some prepro ...
分类:
其他好文 时间:
2020-05-16 00:28:44
阅读次数:
64