Skip to content

Instantly share code, notes, and snippets.

View Vadimatorik's full-sized avatar
🏠
Working from home

Дерябкин Вадим Vadimatorik

🏠
Working from home
View GitHub Profile
@logrusorgru
logrusorgru / Makefile
Last active January 25, 2023 18:13
GNU Assembler: пишем разделяемые библиотеки
all: clean build run
build:
gcc -nostdlib -Wall -shared -fPIC hello_exit.S -Wl,-soname,libhelloexit.so.1 -o libhelloexit.so.1.0
ln -sv libhelloexit.so.1.0 libhelloexit.so.1
ln -sv libhelloexit.so.1.0 libhelloexit.so
gcc -nostdlib -Wall -L. -I. hello.c -lhelloexit -Wl,-rpath,. -o hello
@echo Done
run: