linux
文章平均质量分 53
mitshan
这个作者很懒,什么都没留下…
展开
-
Linux gcc compile/link issuses.
Create a shared library without any unresolved symbol You can pass options to the linker like this: -Wl,options. So what we can do here is -Wl,-z,defs.原创 2021-03-11 10:33:02 · 109 阅读 · 0 评论 -
在Ubuntu 18.04上安装PostgreSQL数据库
安装 apt install postgresql 就可以了, 如果没有权限, 在前面加上sudo. Ubuntu 18.04 默认安装的是10版本. 配置 安装完成后, 有提示 Success. You can now start the database server using: /usr/lib/postgresql/10/bin/pg_ctl -D /var/lib/postgresql/10/main -l logfile start Ver Cluster Port Status原创 2020-11-21 20:53:52 · 475 阅读 · 0 评论 -
CSAPP学习笔记
Definition of Registers %rip : program counter(PC) 生成汇编代码 gcc -Og -S x.c 通过object文件反汇编 objdump -d xxx.o 汇编 nop : 无特殊含义, 只是为了让机器代码16位对齐. ...原创 2019-10-16 17:17:12 · 1303 阅读 · 0 评论 -
Ubuntu系统杂记
默认安装的头文件以及库文件位置 默认头文件安装在目录/usr/include里, 默认库文件在/usr/lib/x86_64-gnu-linux内.原创 2017-04-30 09:05:01 · 222 阅读 · 0 评论