Skip to content

simonracz/dynamic-loading

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dynamic Loading

Code created during recording the Dynamic Loading video.

Build

C

gcc -std=gnu17 -Wall -g main.c -o main -ldl
./main
gcc -std=gnu17 -Wall -g exit.c -o doit.so -fPIC -shared  
gcc -std=gnu17 -Wall -g hello.c -o doit.so -fPIC -shared

C++

g++ -std=gnu++17 -Wall -I./ -g main.cpp -o main -ldl
g++ -std=gnu++17 -Wall -fPIC -shared -I./ -g cupcake.cpp -o cupcake.so
g++ -std=gnu++17 -Wall -fPIC -shared -I./ -g donut.cpp -o donut.so
./main
./main 1
./main 2

About

Code for the Dynamic Loading Video

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published