mirror of
https://github.com/Dasharo/subhook.git
synced 2026-03-06 15:04:20 -08:00
8 lines
116 B
Bash
8 lines
116 B
Bash
#!/bin/sh
|
|
|
|
yasm -f elf64 foo_64_unix.asm
|
|
gcc -c foo_main.c -o foo_main.o
|
|
gcc foo_64_unix.o foo_main.o -o foo
|
|
|
|
./foo
|