Skip to content

Instantly share code, notes, and snippets.

@Zekfad
Created June 28, 2021 18:50
Show Gist options
  • Save Zekfad/e8595eaec0d14275d4aaa87156bc8753 to your computer and use it in GitHub Desktop.
Save Zekfad/e8595eaec0d14275d4aaa87156bc8753 to your computer and use it in GitHub Desktop.
clang cheatsheet

Build

clang -o main.exe main.c

Build with AddressSanitizer

clang -fsanitize=address -o debug/main.exe main.c

Build DLL

clang -shared -fuse-ld=lld -o main.dll main.c

Build DLL with exports/imports from .def file

clang -shared -fuse-ld=lld -Xlinker /def:main.def -o main.dll main.cpp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment