当你在linux下写C/C++代码的时候,是不是会遇到许多编译链接的问题? 时不时报个glibc,gcc,g++等相关的错误? 很多时候都无从下手,而且比较混乱。 这也是编译链接过程中经常出现的问题。 这篇文章不是去介绍如何编译链接,而是理清编译链接过程中碰到的一些概念和出现的问题。尤其是,libc ...
分类:
编程语言 时间:
2021-02-15 12:25:15
阅读次数:
0
公司的C++工程迁移到了Centos8上面。现进行警告消除。发现如下警告。觉得挺有意思的记录一下。 Centos版本: cat /etc/redhat-releaseCentOS Linux release 8.2.2004 (Core) Gcc版本: gcc --versiongcc (GCC) ...
分类:
数据库 时间:
2021-02-15 11:58:50
阅读次数:
0
IfcBinary是一种定义的简单数据类型BINARY,可用于对二进制数据(如嵌入的纹理)进行编码。 注意:引入此类型是为了保持与所有本机类型的一致性。未来的IFC版本可能会在IfcSimpleValue中支持此数据类型,以便在特性集上使用。 类型:二进制 IFC4 ADD1中的历史记录新类型(修改 ...
分类:
其他好文 时间:
2021-02-15 11:54:43
阅读次数:
0
一、下载Maven 1、前往官网下载 maven 官网:https://maven.apache.org/download.cgi 注: Binary tar.gz archive :适用于linux,macOs系统。 Binary:编译之后的二进制文件 Source:表示可以查看源代码的,比Bin ...
分类:
系统相关 时间:
2021-02-10 13:12:12
阅读次数:
0
字符函数 函数返回值型 函数(参数) 描述 string base64(binary bin) 将二进制 bin 转换成 64 位的字符串 string concat(string|binary A, string|binary B...) 对二进制字节码或字符 串按次序进行拼接 array<str ...
分类:
其他好文 时间:
2021-02-10 13:05:47
阅读次数:
0
Given the root of a binary tree, return the leftmost value in the last row of the tree. Example 1: Input: root = [2,1,3] Output: 1 Example 2: Input: r ...
分类:
其他好文 时间:
2021-02-10 12:54:11
阅读次数:
0
DFS层次遍历,设置层数n,在node中按层数创建该层的数组,dfs时每层加入该层对应数组。 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNo ...
分类:
其他好文 时间:
2021-02-09 12:27:15
阅读次数:
0
imx6ull开发环境之系统安装请参考:https://www.cnblogs.com/gxlblogs/p/14382547.html 一、下载安装交叉编译工具链 1、这里我使用的是:gcc-linaro-6.2.1-2016.11-x86_64_arm-linux-gnueabihf.tar.x ...
分类:
其他好文 时间:
2021-02-08 11:55:18
阅读次数:
0
安全编译: NX(堆栈不可执行): -z noexecstack SP(栈保护):-fstack-protector-all 或 -fstack-protector-strong BIND_NOW(立即绑定):-Wl,z,now 或 LD_BIND_NOW=1 RELRO(只读重定位):-Wl,-z ...
分类:
其他好文 时间:
2021-02-08 11:52:19
阅读次数:
0
PG可以一主多备,目前pg93s是主,pg93和pg93s2是备节点,在主上查询: postgres=# select usename,application_name,client_addr,state,sync_state,sync_priority from pg_stat_replicati ...
分类:
其他好文 时间:
2021-02-06 12:14:28
阅读次数:
0