摘要:
/* * @lc app=leetcode.cn id=416 lang=cpp * * [416] 分割等和子集 * * https://leetcode-cn.com/problems/partition-equal-subset-sum/description/ * * algorithms 阅读全文
posted @ 2021-04-29 17:31
鸭子船长
阅读(131)
评论(0)
推荐(0)
摘要:
/* * @lc app=leetcode.cn id=516 lang=cpp * * [516] 最长回文子序列 * * https://leetcode-cn.com/problems/longest-palindromic-subsequence/description/ * * algor 阅读全文
posted @ 2021-04-29 16:23
鸭子船长
阅读(121)
评论(0)
推荐(0)
摘要:
/* * @lc app=leetcode.cn id=5 lang=cpp * * [5] 最长回文子串 * * https://leetcode-cn.com/problems/longest-palindromic-substring/description/ * * algorithms * 阅读全文
posted @ 2021-04-29 15:31
鸭子船长
阅读(159)
评论(0)
推荐(0)
摘要:
查看动态库的加载路径 patchelf --print-rpath so $ORIGIN:$ORIGIN/lib 在 低版本 libc 库运行高版本 libc 库编译的程序 这篇博客中我描述了使用 patchelf 来修改动态库链接器的方法,在本篇文章中,我完整的列举下 patchelf 的功能,并 阅读全文
posted @ 2021-04-29 11:37
鸭子船长
阅读(3424)
评论(0)
推荐(0)
摘要:
动态库加载器可以通过运行一些动态链接的程序来间接调用(在这种情况中,不需要向动态库加载器指定任何命令行参数,对于 ELF 文件,动态库链接器的路径存储在将被执行的程序的 .interp section 中)或直接通过 /lib/ld-linux-so.* xx 来调用。 ld.so 与 ld-lin 阅读全文
posted @ 2021-04-29 11:35
鸭子船长
阅读(386)
评论(0)
推荐(0)