败犬日报 2025-03-18
1. 炸编译器
LLVM GitHub 加了个 generated by fuzzer 的 issue tag,可以去看一下 fuzzer 整出了什么炸编译器的活。
2. Google 重新设计的 SQL 语法
https://github.com/google/zetasql/blob/2024.08.2/docs/pipe-syntax.md
Pipe 版本的 SQL 改良。
3. 标准库数学函数的精度怎么样
要看不同的实现。
glibc: https://www.gnu.org/software/libc/manual/html_node/Errors-in-Math-Functions.html
ucrt: https://learn.microsoft.com/en-us/cpp/c-runtime-library/floating-point-support?view=msvc-170
4. 怎么看编译器会链接哪些东西
-Wl,--verbose
,LD_DEBUG=libs
,-###
详细的可以看文档:https://manpages.ubuntu.com/manpages/jammy/en/man8/ld.so.8.html https://learn.microsoft.com/zh-cn/windows/win32/dlls/dynamic-link-library-search-order
5. fork 会阻塞其他线程吗
不会。