以armv5为例: 1.下载编译链: apt install arm-linux-gnueabi-gcc 2. 配置 配置文件路径:~/.crago/config [target.armv5te-unknown-linux-gnueabi]linker="arm-linux-gnueabi-gcc" ...
分类:
其他好文 时间:
2020-06-06 12:44:57
阅读次数:
121
Linux 7 安装开发工具包 Development Tools 1、查看开发工具包 [root@xiejiaohui ~]# yum groups list Loaded plugins: langpacks, search-disabled-repos Available Environmen ...
分类:
系统相关 时间:
2020-06-06 12:33:30
阅读次数:
95
Given two non-negative integers num1 and num2 represented as string, return the sum of num1 and num2. Note: The length of both num1 and num2 is < 5100 ...
分类:
其他好文 时间:
2020-06-06 11:10:45
阅读次数:
57
https://blog.csdn.net/weixin_40894921/article/details/88528159 1.全局 从上面给的例子中可以看出,它可以被用来全局的 2.类内部函数的内部 class A: def f(self): a=2 def ff(): a=5#这里是无法改变a ...
分类:
编程语言 时间:
2020-06-06 10:36:36
阅读次数:
67
模板一:单点修改,区间求和 模板题:hdu1166 敌兵布阵 const int maxn=100010; int a[maxn],tree[4*maxn]; void pushup(int o){ tree[o]=tree[o<<1]+tree[o<<1|1]; } void build(int ...
分类:
其他好文 时间:
2020-06-05 23:02:21
阅读次数:
96
docker-compose version: "3" services: user-dashboard: build: . volumes: - .:/data/code/ - /proc:/writable-proc ports: - "8891:8891" networks: - walkof ...
分类:
其他好文 时间:
2020-06-05 21:22:38
阅读次数:
79
NET CORE 3.1多语言 控制器多语言ConfigureServices 1 services.AddLocalization(o => { o.ResourcesPath = "Resources"; }); services.AddMvc(); Configure 2 IList<Cult ...
分类:
Web程序 时间:
2020-06-05 20:59:06
阅读次数:
99
<!-- profile docker config --> <profiles> <profile> <id>docker</id> <build> <plugins> <plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven ...
分类:
编程语言 时间:
2020-06-05 14:53:25
阅读次数:
135
错误提示: warning: LF will be replaced by CRLF in xxx The file will have its original line endings in your working directory 注解: ? LF:Line Feed 换行 ? CRLF: ...
分类:
其他好文 时间:
2020-06-05 14:44:47
阅读次数:
82
一、前提该工程名字是“Qt_Test_1”,在该目录下还有文件夹“build-Qt_Test_1-Debug”和“build-Qt_Test_1-Release”。 后两个文件夹用于存放Debug程序和Release程序。 二、问题 #pragma comment(lib , "/Qt_Test_1 ...
分类:
其他好文 时间:
2020-06-05 14:40:43
阅读次数:
122