摘要:
Static library path export LIBRARY_PATH="/usr/local/lib" Shared library or dynamic library path export DYLD_LIBRARY_PATH="/usr/local/lib" Header file 阅读全文
摘要:
这个链接里面介绍得非常全面 https://en.wikipedia.org/wiki/X86_calling_conventions#Caller-saved_(volatile)_registers 阅读全文
摘要:
Since then I implemented my own M:N userspace:kernel threading library (which is what lthread boils down to) based on Russ Cox's BSD-licensed libtask. 阅读全文
摘要:
x86_64常用寄存器简介 https://blog.csdn.net/zhbt1234/article/details/54019620 阅读全文
摘要:
记录一些 X86 下常用寄存器 https://blog.csdn.net/u012060033/article/details/79218909 阅读全文
摘要:
如题 阅读全文
摘要:
Linux OR windows 的启动过程详解 Process 启动BIOS,BIOS实际上就是主板上的一块flash芯片,它会在开机后首先启动 BIOS中可以选择引导方式 Legacy & uEFI,两者为两种不同的引导方式,一般来说Legacy mode为传统的BIOS启动方式,而uEFI为新 阅读全文
摘要:
Makefile 易忘规则记录 主要用于记录一些Makefile中容易忘记的规则等 粗略规则 target... : prerequisites ... [tab] command ... 易忘规则 伪目标声明 .PHONY: clean clean: [tab] rm ./*.o 自动推导 a.o 阅读全文
摘要:
Makefile中的自动化变量 参考链接:https://seisman.github.io/how-to-write-makefile/implicit_rules.html#id8 简介 所谓自动化变量,就是这种变量会把模式中所定义的一系列的文件自动地挨个取出,直至所有的符合模式的文件都取完。这 阅读全文
摘要:
Makefile中的文件名操作函数 参考:https://seisman.github.io/how-to-write-makefile/functions.html#patsubst dir 功能:获取文件 <names> 的目录。目录是指最后一个反斜杠( / )之前的部分。如果没有反斜杠,那么返 阅读全文