update freestanding study

This commit is contained in:
2025-12-30 17:28:02 +09:00
parent 8f1a81b699
commit 33c5e8bfb6
4 changed files with 22 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# freestanding
```bash
g++ -c -o free.o free.cpp
ld -o free free.o
objdump -x free
# g++ -c -nostdlib -o free free.cpp
```