Skip to content

Instantly share code, notes, and snippets.

View demon90s's full-sized avatar
😃
你好~世界

Diwen.Liu demon90s

😃
你好~世界
  • Guangzhou
View GitHub Profile
@x0nu11byt3
x0nu11byt3 / elf_format_cheatsheet.md
Created February 27, 2021 05:26
ELF Format Cheatsheet

ELF Format Cheatsheet

Introduction

Executable and Linkable Format (ELF), is the default binary format on Linux-based systems.

ELF

Compilation

@kristopherjohnson
kristopherjohnson / Makefile
Last active January 2, 2024 04:55
Simple example of using the readline library from C++
CXXFLAGS=-I/usr/local/include --std=c++11
LDFLAGS=-L/usr/local/lib -lreadline
rltest: rltest.cpp
clean:
- /bin/rm rltest